/*
Theme Name: EG Service
Description: ペット関連不動産サービス用WordPressテーマ
Version: 1.0
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  line-height: 1.6;
  color: #333;
}

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

/* Header */
.site-header {
  background-color: #0d8770;
  padding: 12px 0;
  box-shadow: none;
  position: relative;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50px;
  padding: 8px 20px;
  margin: 0 20px;
}

.logo-section {
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
}

.logo-section:hover {
  text-decoration: none;
  color: inherit;
}

.logo-background {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 8px 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.logo-content {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tree-icon {
  font-size: 20px;
  line-height: 1;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-size: 14px;
  font-weight: 600;
  color: #0d8770;
  margin: 0;
}

.logo-sub {
  font-size: 12px;
  font-weight: 500;
  color: #333;
  margin: 0;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.main-nav a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 5px 8px;
  border-radius: 8px;
  min-width: 70px;
}

.nav-en {
  font-size: 13px;
  font-weight: 600;
  color: #0d8770;
  line-height: 1.2;
  margin-bottom: 2px;
}

.nav-jp {
  font-size: 11px;
  font-weight: 400;
  color: #666;
  line-height: 1.2;
  white-space: nowrap;
}

.main-nav a:hover {
  background: rgba(82, 180, 152, 0.1);
}

.main-nav a:hover .nav-en {
  color: #0d8770;
}

.main-nav a:hover .nav-jp {
  color: #333;
}

.main-nav a.active {
  background: rgba(82, 180, 152, 0.15);
}

.main-nav a.active .nav-en {
  color: #0d8770;
  font-weight: 700;
}

.contact-btn {
  background-color: #0d8770;
  color: white !important;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 14px;
}

.hero-background {
  position: relative;
  width: 100%;
  height: 50vw;
  background: linear-gradient(135deg, #0d8770 0%, #0d8770 100%);
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Flying Birds - Now contains main hero image */
.flying-birds {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.flying-birds img {
  width: 80%;
  object-fit: contain;
  object-position: center;
}

.flying-bird-1 {
  position: absolute;
  top: 15%;
  right: 20%;
  width: 80px;
  height: 40px;
  animation: fly 8s ease-in-out infinite;
}

.flying-bird-2 {
  position: absolute;
  top: 25%;
  right: 35%;
  width: 60px;
  height: 30px;
  animation: fly 10s ease-in-out infinite;
  animation-delay: 2s;
}

.flying-bird-3 {
  position: absolute;
  top: 35%;
  right: 15%;
  width: 50px;
  height: 25px;
  animation: fly 12s ease-in-out infinite;
  animation-delay: 4s;
}

/* Central Tree */
.central-tree {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  opacity: 0.6;
  z-index: 1;
}

.tree-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

@keyframes fly {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.8;
  }
  25% {
    transform: translateY(-15px) rotate(2deg);
    opacity: 1;
  }
  50% {
    transform: translateY(-25px) rotate(-2deg);
    opacity: 0.9;
  }
  75% {
    transform: translateY(-10px) rotate(1deg);
    opacity: 1;
  }
}

.birds {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.bird-1 {
  top: 150px;
  right: 120px;
  transform: rotate(-15deg);
}

.bird-2 {
  top: 200px;
  right: 200px;
  width: 35px;
  height: 25px;
  transform: rotate(10deg);
}

.bird-3 {
  top: 120px;
  right: 50px;
  width: 45px;
  height: 35px;
  transform: rotate(-25deg);
}

.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
}

.hero-left {
  width: 45%;
  padding-left: 50px;
}

.hero-message-box {
  background: rgba(255, 255, 255, 0.95);
  padding: 35px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  max-width: 420px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.message-line-1,
.message-line-2 {
  color: #333;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
  display: block;
}

.message-line-1 {
  margin-bottom: 8px;
}

.message-line-2 {
  margin-top: 0;
}

.hero-right {
  width: 45%;
  padding-right: 50px;
  text-align: left;
}

.hero-about {
  position: relative;
}

.hero-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 15px;
  font-weight: 400;
}

.hero-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 30px;
  color: white;
}

.hero-detail-btn {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero-detail-btn:before {
  content: "●";
  margin-right: 10px;
  font-size: 12px;
}

.hero-detail-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #0d8770;
  border-color: rgba(255, 255, 255, 0.9);
}

.hero-animals {
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  z-index: 2;
}

.animal-silhouettes {
  position: relative;
  width: 100%;
  height: 120px;
}

.grass-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
  border-top: 2px solid rgba(255, 255, 255, 0.6);
}

.cat-silhouette {
  position: absolute;
  bottom: 25px;
  left: 45%;
  width: 80px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  clip-path: polygon(
    15% 100%,
    15% 70%,
    25% 60%,
    25% 40%,
    35% 35%,
    40% 25%,
    45% 35%,
    50% 40%,
    55% 35%,
    60% 25%,
    65% 35%,
    70% 40%,
    70% 60%,
    80% 70%,
    80% 100%
  );
}

.dog-silhouette {
  position: absolute;
  bottom: 25px;
  right: 15%;
  width: 120px;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  clip-path: polygon(
    10% 100%,
    10% 60%,
    20% 50%,
    30% 45%,
    40% 40%,
    50% 35%,
    60% 40%,
    70% 45%,
    80% 50%,
    85% 60%,
    85% 70%,
    90% 80%,
    90% 100%
  );
}

.hero-news-notification {
  /* position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%); 
    margin: 0 auto;
    width: calc(100% - 60px);
    max-width: 800px;
    z-index: 4;*/
  background: #0d8770;
}

.news-notification-card {
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 25px;
  display: flex;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.news-notification-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(13, 135, 112, 0.3);
}

.news-content {
  display: block;
  align-items: center;
  padding: 15px 20px;
  flex: 1;
}

.news-bar {
  margin: 0 auto;
  width: calc(100% - 60px);
  max-width: 800px;
}

.news-label {
  background: #0d8770;
  color: white;
  padding: 18px 24px;
  font-size: 14px;
  font-weight: 600;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.news-item {
  display: flex;
  align-items: center;
  color: white;
}

.news-date {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
  margin-right: 15px;
}

.news-text {
  font-size: 14px;
  font-weight: 400;
  color: #0d8770;
  line-height: 1.4;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Service Section */
.service-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 28px;
  color: #0d8770;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: #0d8770;
}

.section-title .subtitle {
  color: #0d8770;
  font-size: 16px;
  margin-top: 15px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  background: #0d8770;
  color: white;
  padding: 60px 30px;
  border-radius: 20px;
  text-align: center;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  position: relative;
  min-height: 350px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(82, 180, 152, 0.3);
}

.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 40px;
  text-align: center;
}

.service-icon {
  width: 120px;
  height: 120px;
}

.service-icon.cat {
  background: url("./images/cat.png") no-repeat center;
  background-size: contain;
}

.service-icon.bird {
  background: url("./images/bird.png") no-repeat center;
  background-size: contain;
}

.service-icon.owl {
  background: url("./images/owl.png") no-repeat center;
  background-size: contain;
}

.service-icon.dog {
  background: url("./images/dog.png") no-repeat center;
  background-size: contain;
}

/* Property Section */
.property-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0d8770 0%, #0d8770 100%);
  color: white;
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.property-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.property-card.clickable-card {
  cursor: pointer;
}

.property-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.property-info {
  padding: 20px;
  color: #333;
}

.property-info h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #0d8770;
}

.property-details {
  font-size: 14px;
  line-height: 1.4;
}

.property-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(82, 180, 152, 0.9);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.property-card.clickable-card:hover .property-card-overlay {
  opacity: 1;
}

.view-detail-text {
  font-size: 18px;
  font-weight: 600;
  padding: 12px 24px;
  border: 2px solid white;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.property-card.clickable-card:hover .view-detail-text {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.more-properties {
  text-align: center;
}

.more-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid white;
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}

.more-btn:hover {
  background: white;
  color: #0d8770;
}

/* Topics Section */
.topics-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.topics-content {
  display: flex;
  gap: 40px;
}

.topics-left {
  width: 300px;
}

.topics-card {
  background: #0d8770;
  color: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 20px;
}

.topics-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.topics-more {
  text-align: center;
}

.more-topics-btn {
  background: #0d8770;
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
}

.more-topics-btn:hover {
  background: #0d8770;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(82, 180, 152, 0.3);
}

.topics-right {
  flex: 1;
}

.topics-list {
  list-style: none;
}

.topics-item {
  border-bottom: 1px solid #eee;
}

.topics-link {
  display: flex;
  align-items: center;
  padding: 20px 0;
  text-decoration: none;
  transition: all 0.3s;
  color: inherit;
}

.topics-link:hover {
  background-color: rgba(82, 180, 152, 0.05);
  transform: translateX(5px);
}

.topics-link:hover .topics-date {
  background: #0d8770;
}

.topics-link:hover .topics-title {
  color: #0d8770;
}

.topics-date {
  background: #0d8770;
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 12px;
  margin-right: 20px;
  white-space: nowrap;
  transition: background-color 0.3s;
}

.topics-title {
  flex: 1;
  font-size: 14px;
  color: #333;
  transition: color 0.3s;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: #0d8770;
  color: white;
}

.contact-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-left {
  flex-shrink: 0;
}

.contact-card {
  background: white;
  color: #0d8770;
  padding: 50px 60px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  min-width: 320px;
}

.contact-card h3 {
  font-size: 32px;
  font-weight: 600;
  margin: 0 0 15px 0;
  letter-spacing: 1px;
}

.contact-underline {
  width: 120px;
  height: 3px;
  background-color: #0d8770;
  margin: 0 auto 25px;
}

.contact-card p {
  font-size: 20px;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.contact-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 20px;
}

.contact-label {
  font-weight: 600;
  min-width: 120px;
  font-size: 20px;
  color: white;
}

.contact-divider {
  color: white;
  font-weight: 300;
  font-size: 24px;
}

.contact-phone,
.contact-hours {
  color: white;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 1px;
}

.contact-email {
  margin-top: 20px;
}

.email-contact-btn {
  display: block;
  background: transparent;
  border: 3px solid white;
  color: white;
  padding: 20px 60px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
  letter-spacing: 1px;
  width: 100%;
  max-width: 500px;
}

.email-contact-btn:hover {
  background: white;
  color: #0d8770;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* New Sidebar */
.new-sidebar {
  background: #0d8770;
  width: 300px;
  min-height: 100vh;
  padding: 40px 0;
  color: white;
  position: sticky;
  top: 0;
  flex-shrink: 0;
}

/* Content wrapper adjustments for new sidebar */
.content-wrapper {
  display: flex;
  gap: 0;
  align-items: flex-start;
}

.about-content,
.news-content {
  flex: 1;
  background: white;
}

.sidebar-menu {
  padding: 0 30px;
}

.menu-section {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 25px 0;
  text-decoration: none;
  color: inherit;
  display: block;
}

.menu-section:hover {
  text-decoration: none;
  color: inherit;
}

.menu-section:last-of-type {
  border-bottom: none;
  padding-bottom: 40px;
}

.menu-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: white;
  letter-spacing: 0.5px;
}

.menu-subtitle {
  font-size: 16px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

.menu-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-links li {
  margin-bottom: 15px;
}

.menu-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 15px;
  line-height: 1.5;
  transition: color 0.3s ease;
  display: block;
  padding: 8px 0;
}

.menu-links a:hover {
  color: white;
}

.sidebar-buttons {
  padding: 0 30px;
  margin-top: 40px;
}

.sidebar-btn {
  display: block;
  background: white;
  color: #0d8770;
  text-decoration: none;
  margin-bottom: 20px;
  padding: 20px 25px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.sidebar-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-title {
  display: block;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}

.btn-subtitle {
  display: block;
  font-size: 15px;
  font-weight: 400;
  color: #0d8770;
}

/* Accordion functionality */
.accordion-section {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0;
}

.accordion-header {
  padding: 25px 0;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.accordion-header:hover {
  background: rgba(255, 255, 255, 0.1);
}

.accordion-icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: bold;
  color: white;
  transition: transform 0.3s ease;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0;
  margin: 0;
}

.accordion-content.active {
  max-height: 300px;
  padding-bottom: 20px;
  transition: max-height 0.3s ease-in;
}

.accordion-content li {
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.accordion-content.active li {
  opacity: 1;
  transform: translateY(0);
}

.accordion-content.active li:nth-child(1) {
  transition-delay: 0.1s;
}
.accordion-content.active li:nth-child(2) {
  transition-delay: 0.15s;
}
.accordion-content.active li:nth-child(3) {
  transition-delay: 0.2s;
}
.accordion-content.active li:nth-child(4) {
  transition-delay: 0.25s;
}
.accordion-content.active li:nth-child(5) {
  transition-delay: 0.3s;
}
.accordion-content.active li:nth-child(6) {
  transition-delay: 0.35s;
}

/* About Page Specific Styles */
.about-us-section {
  background: #f8f9fa;
  padding: 60px 40px;
  width: 100%;
}

.about-header {
  text-align: center;
  margin-bottom: 50px;
}

.about-main-title {
  font-size: 36px;
  color: #0d8770;
  margin: 0;
  font-weight: 600;
}

.about-subtitle {
  font-size: 20px;
  color: #0d8770;
  margin: 10px 0 0 0;
  font-weight: 400;
}

.about-services-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
}

.service-tree-icon {
  flex-shrink: 0;
}

.tree-circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: white;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tree-circle img {
  width: 100%;
}

.tree-trunk {
  width: 20px;
  height: 60px;
  background: #8b4513;
  position: absolute;
  bottom: 20px;
  border-radius: 10px;
}

.business-icons {
  position: absolute;
  width: 100%;
  height: 100%;
}

.icon {
  position: absolute;
  width: 30px;
  height: 30px;
  background: #0d8770;
  border-radius: 4px;
}

.building-icon {
  top: 30px;
  left: 50px;
}
.house-icon {
  top: 50px;
  right: 40px;
}
.hotel-icon {
  top: 120px;
  left: 30px;
}
.pet-icon {
  top: 140px;
  right: 30px;
}
.handshake-icon {
  bottom: 80px;
  left: 60px;
}
.key-icon {
  bottom: 100px;
  right: 50px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-list .service-item {
  font-size: 18px;
  color: #0d8770;
  font-weight: 500;
}

/* Company Info Section */
.company-info-section {
  background: #0d8770;
  padding: 60px 40px;
  color: white;
}

.company-info-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.info-title-card {
  background: rgba(255, 255, 255, 0.9);
  color: #0d8770;
  padding: 30px 40px;
  border-radius: 15px;
  text-align: center;
  min-width: 200px;
  flex-shrink: 0;
}

.info-title-card h3 {
  font-size: 24px;
  margin: 0 0 10px 0;
  font-weight: 600;
}

.info-title-card p {
  font-size: 16px;
  margin: 0;
  font-weight: 500;
}

.company-table {
  flex: 1;
}

.company-table table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.95);
  overflow: hidden;
}

.company-table th,
.company-table td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(82, 180, 152, 0.2);
  color: #333;
}

.company-table th {
  background: #0d8770;
  color: white;
  font-weight: 600;
  width: 30%;
}

.company-table td {
  font-size: 14px;
  line-height: 1.6;
}

/* Map and Contact Section */
.map-contact-section {
  background: #0d8770;
  padding: 40px;
  color: white;
}

.map-container {
  margin-bottom: 40px;
}

.map-container iframe {
  width: 100%;
  border-radius: 10px;
}

.about-contact-info {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.contact-title-card {
  background: rgba(255, 255, 255, 0.9);
  color: #0d8770;
  padding: 30px 40px;
  border-radius: 15px;
  text-align: center;
  min-width: 200px;
  flex-shrink: 0;
}

.contact-title-card h3 {
  font-size: 24px;
  margin: 0 0 10px 0;
  font-weight: 600;
}

.contact-title-card p {
  font-size: 16px;
  margin: 0;
  font-weight: 500;
}

.contact-details {
  flex: 1;
}
.contact-details .contact-label {
  font-weight: 600;
  min-width: 120px;
}

.contact-details .contact-divider {
  font-size: 24px;
  font-weight: 300;
}

.contact-details .contact-phone,
.contact-details .contact-hours {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1px;
}

.contact-email-section {
  margin-top: 40px;
}

.about-email-btn {
  display: block;
  background: transparent;
  border: 3px solid white;
  color: white;
  padding: 20px 60px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 1px;
  max-width: 500px;
  transition: all 0.3s ease;
}

.about-email-btn:hover {
  background: white;
  color: #0d8770;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* News Page Specific Styles */
.news-page-container {
  min-height: 100vh;
}

.news-hero-section {
  background: #0d8770;
  color: white;
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.news-hero-section .hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
}

.news-hero-section .hero-left {
  flex: 1;
}

.news-hero-section .hero-form h3 {
  font-size: 32px;
  margin: 0 0 15px 0;
  font-weight: 600;
  line-height: 1.3;
}

.news-hero-section .hero-subtitle {
  font-size: 18px;
  color: #0d8770;
  margin: 0;
}

.news-hero-section .hero-right {
  flex: 1;
}

.news-hero-section .hero-message p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 10px 0;
}

.news-hero-section .hero-message h2 {
  font-size: 28px;
  margin: 0 0 20px 0;
  font-weight: 600;
}

.news-hero-section .hero-description p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.news-listing-section {
  padding: 60px 40px;
}

.news-listing-section .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.news-listing-section .section-title h2 {
  font-size: 36px;
  color: #0d8770;
  margin: 0;
  font-weight: 600;
}

.news-listing-section .subtitle {
  font-size: 18px;
  color: #666;
  margin: 10px 0 0 0;
}

.news-grid {
  display: grid;
  gap: 30px;
  margin-bottom: 60px;
}

.news-card {
  display: flex;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.news-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.news-date {
  background: #0d8770;
  color: white;
  padding: 20px 15px;
  text-align: center;
  min-width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.date-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.news-content-area {
  padding: 30px;
  flex: 1;
  display: block;
  flex-direction: column;
}

.news-card .news-title {
  margin: 0 0 15px 0;
  font-size: 20px;
  font-weight: 600;
}

.news-card .news-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.news-card .news-title a:hover {
  color: #0d8770;
}

.news-excerpt {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.news-meta {
  display: flex;
  gap: 20px;
  font-size: 12px;
  color: #999;
  margin-bottom: 20px;
}

.news-meta span {
  padding: 4px 8px;
  background: #f5f5f5;
  border-radius: 4px;
}

.news-actions {
  margin-top: auto;
}

.read-more-btn {
  display: inline-block;
  background: #0d8770;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  background: #0d8770;
  transform: translateY(-1px);
}

.news-thumbnail {
  width: 200px;
  flex-shrink: 0;
}

.news-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.no-news {
  text-align: center;
  padding: 80px 20px;
  color: #666;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.pagination ul {
  display: flex;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pagination li {
  margin: 0;
}

.pagination a,
.pagination span {
  display: block;
  padding: 12px 16px;
  background: white;
  border: 1px solid #ddd;
  color: #333;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.pagination a:hover,
.pagination .current {
  background: #0d8770;
  color: white;
  border-color: #0d8770;
}

/* Post Detail Page Styles */
.post-main-wrapper {
  background-color: #0d8770;
}
.post-detail-page {
  min-height: 100vh;
  background: #f8f9fa;
}

.post-hero-banner {
  background: linear-gradient(135deg, #0d8770 0%, #0d8770 100%);
  color: white;
  padding: 40px 0 60px;
  position: relative;
}

.hero-overlay {
  position: relative;
  z-index: 2;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
  margin-bottom: 30px;
}

.breadcrumb-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.breadcrumb-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-separator {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.breadcrumb-current {
  color: white;
  font-weight: 500;
}

/* Post Meta Header */
.post-meta-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.category-badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.post-date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.date-icon {
  font-size: 16px;
}

.post-content-layout {
  display: flex;
  gap: 0;
  min-height: 80vh;
}

.post-article {
  flex: 1;
  padding: 50px 60px;
  background: white;
}

/* Featured Image */
.post-featured-image {
  margin-bottom: 40px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

/* Post Content */
.post-content-wrapper {
  max-width: 800px;
}

.post-content {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 40px;
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
  color: #0d8770;
  margin: 40px 0 20px 0;
  line-height: 1.4;
}

.post-content h2 {
  font-size: 28px;
  border-left: 4px solid #0d8770;
  padding-left: 20px;
}

.post-content h3 {
  font-size: 24px;
}

.post-content p {
  margin-bottom: 20px;
}

.post-content ul,
.post-content ol {
  margin: 20px 0;
  padding-left: 30px;
}

.post-content li {
  margin-bottom: 8px;
}

.post-content blockquote {
  background: #f8f9fa;
  border-left: 4px solid #0d8770;
  margin: 30px 0;
  padding: 20px 30px;
  font-style: italic;
  color: #666;
}

.post-content code {
  background: #f1f3f4;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: "Courier New", monospace;
  font-size: 14px;
}

.post-content pre {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  overflow-x: auto;
  margin: 20px 0;
}

/* Post Tags */
.post-tags {
  margin-bottom: 40px;
  padding: 20px 0;
  border-top: 1px solid #e0e0e0;
}

.tags-title {
  font-size: 16px;
  color: #666;
  margin: 0 0 15px 0;
  font-weight: 600;
}

.tag-list a {
  display: inline-block;
  background: #f0f2f5;
  color: #666;
  padding: 6px 12px;
  margin: 0 8px 8px 0;
  border-radius: 15px;
  text-decoration: none;
  font-size: 12px;
  transition: all 0.3s ease;
}

.tag-list a:hover {
  background: #0d8770;
  color: white;
}

/* Post Meta Footer */
.post-meta-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 40px;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.author-label {
  color: #666;
  font-size: 14px;
}

.author-name {
  color: #333;
  font-weight: 600;
}

.post-share {
  display: flex;
  align-items: center;
  gap: 12px;
}

.share-label {
  color: #666;
  font-size: 14px;
}

.share-buttons {
  display: flex;
  gap: 8px;
}

.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
}

.twitter-btn {
  background: #1da1f2;
  color: white;
}

.facebook-btn {
  background: #4267b2;
  color: white;
}

.line-btn {
  background: #00c300;
  color: white;
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Post Navigation */
.post-navigation {
  margin-bottom: 60px;
}

.nav-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.nav-link {
  display: block;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
}

.nav-link:hover {
  background: #0d8770;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(82, 180, 152, 0.2);
}

.nav-direction {
  font-size: 12px;
  color: #666;
  margin-bottom: 8px;
  font-weight: 500;
}

.nav-link:hover .nav-direction {
  color: rgba(255, 255, 255, 0.8);
}

.nav-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.nav-previous {
  text-align: left;
}

.nav-next {
  text-align: right;
}

/* Related Posts */
.related-posts {
  margin-bottom: 60px;
}

.related-title {
  font-size: 24px;
  color: #0d8770;
  margin: 0 0 30px 0;
  font-weight: 600;
  border-left: 4px solid #0d8770;
  padding-left: 20px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.related-post-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.related-post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.related-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.related-image {
  height: 150px;
  overflow: hidden;
}

.related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-post-card:hover .related-image img {
  transform: scale(1.05);
}

.related-content {
  padding: 20px;
}

.related-date {
  font-size: 12px;
  color: #666;
  display: block;
  margin-bottom: 8px;
}

.related-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: #333;
  margin: 0;
}

.no-related {
  text-align: center;
  color: #666;
  font-style: italic;
  grid-column: 1 / -1;
}

/* Back to List Button */
.back-to-list {
  text-align: center;
  margin-bottom: 40px;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0d8770;
  color: white;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(82, 180, 152, 0.3);
}

.back-btn:hover {
  background: #0d8770;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(82, 180, 152, 0.4);
}

.back-icon {
  font-size: 16px;
}

/* Responsive Design */
@media (max-width: 900px) {
  .header-content {
    padding: 8px 15px;
    margin: 0 15px;
    gap: 10px;
  }

  .main-nav ul {
    gap: 8px;
  }

  .main-nav a {
    padding: 6px 8px;
    min-width: 55px;
  }

  .nav-en {
    font-size: 11px;
  }

  .nav-jp {
    font-size: 9px;
  }

  .contact-btn.desktop {
    padding: 8px 15px;
    font-size: 12px;
  }

  .logo-main {
    font-size: 14px;
  }

  .logo-sub {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .hero-background {
    height: 50vh;
  }

  .flying-birds img {
    width: 100%;
  }
  .new-sidebar {
    width: 100%;
  }
  .header-content {
    gap: 15px;
    padding: 15px 20px;
    margin: 0 10px;
  }

  .main-nav ul {
    gap: 10px;
  }

  .main-nav a {
    min-width: 60px;
    padding: 4px 6px;
  }

  .nav-en {
    font-size: 12px;
  }

  .nav-jp {
    font-size: 10px;
  }

  .contact-btn {
    padding: 10px 20px;
    font-size: 13px;
  }

  .logo-content {
    gap: 6px;
  }

  .tree-icon {
    font-size: 18px;
  }

  .logo-main {
    font-size: 13px;
  }

  .logo-sub {
    font-size: 11px;
  }

  .hero-news-notification {
    bottom: 260px;
    width: calc(100% - 40px);
  }

  .news-notification-card {
    border-radius: 20px;
  }

  .news-label {
    padding: 15px 18px;
    font-size: 13px;
  }

  .news-content {
    padding: 15px 18px;
  }

  .news-date {
    font-size: 13px;
    margin-right: 12px;
  }

  .news-text {
    font-size: 13px;
  }

  /* Footer Responsive */
  .footer-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-bottom-right {
    position: relative;
    left: auto;
    transform: none;
    margin-top: 15px;
  }

  .tree-logo {
    width: 50px;
  }

  .company-name {
    font-size: 28px;
  }

  .happy-perch {
    font-size: 20px;
  }

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

  .copyright {
    font-size: 12px;
  }
}

.post-article {
  padding: 30px 20px;
}

.post-meta-footer {
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}

.nav-links {
  grid-template-columns: 1fr;
}

.related-grid {
  grid-template-columns: 1fr;
}

/* Footer */
.site-footer {
  background-color: #f8f9fa;
  padding: 40px 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  margin-bottom: 30px;
}

.footer-left {
  flex-shrink: 0;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.tree-logo {
  width: 60px;
  height: auto;
}

.company-branding {
  display: flex;
  flex-direction: column;
}

.happy-perch {
  font-size: 24px;
  font-weight: 300;
  color: #0d8770;
  line-height: 1;
  margin-bottom: 2px;
}

.company-name {
  font-size: 36px;
  font-weight: bold;
  color: #333;
  line-height: 1;
}

.footer-right {
  text-align: left;
}

.company-title {
  font-size: 24px;
  font-weight: 500;
  color: #0d8770;
  margin-bottom: 15px;
  line-height: 1.2;
}

.postal-code {
  font-size: 16px;
  color: #333;
  margin-bottom: 5px;
  line-height: 1.3;
}

.address {
  font-size: 16px;
  color: #333;
  margin-bottom: 5px;
  line-height: 1.3;
}

.phone {
  font-size: 16px;
  color: #0d8770;
  font-weight: 500;
  margin: 0;
  line-height: 1.3;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #e0e0e0;
  padding-top: 20px;
  position: relative;
}

.footer-bottom-left {
  flex-shrink: 0;
}

.homemate-logo {
  display: flex;
  align-items: center;
}

.homemate-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.homemate-label {
  background: #e91e63;
  color: white;
  font-size: 12px;
  font-weight: bold;
  padding: 2px 8px;
  border-radius: 3px;
  margin-bottom: 2px;
  line-height: 1;
}

.homemate-brand {
  background: #333;
  color: white;
  font-size: 16px;
  font-weight: bold;
  padding: 4px 12px;
  border-radius: 3px;
  line-height: 1;
}

.footer-bottom-right {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.copyright {
  font-size: 14px;
  color: #0d8770;
  margin: 0;
  white-space: nowrap;
  line-height: 1;
}

/* About Page Styles */
.about-page {
  background-color: #f8f9fa;
}

.about-hero-section {
  background-color: #0d8770;
  color: white;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.about-hero-section .tree-branches {
  position: absolute;
  top: 50px;
  left: 50px;
  width: 800px;
  height: 500px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 500"><path d="M50 250 Q300 150 550 250 Q650 300 750 250" stroke="rgba(255,255,255,0.4)" stroke-width="2" fill="none"/><path d="M100 200 Q350 100 600 200" stroke="rgba(255,255,255,0.3)" stroke-width="1.5" fill="none"/><path d="M80 300 Q300 230 520 300" stroke="rgba(255,255,255,0.25)" stroke-width="1" fill="none"/><circle cx="200" cy="180" r="2" fill="rgba(255,255,255,0.3)"/><circle cx="350" cy="220" r="1.5" fill="rgba(255,255,255,0.25)"/><circle cx="500" cy="200" r="2.5" fill="rgba(255,255,255,0.3)"/></svg>')
    no-repeat;
  background-size: contain;
}

.about-hero-section .birds {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.about-hero-section .bird {
  position: absolute;
  width: 40px;
  height: 30px;
  background: rgba(255, 255, 255, 0.9);
  clip-path: polygon(50% 0%, 0% 100%, 25% 75%, 75% 75%, 100% 100%);
}

.about-hero-section .bird-1 {
  top: 150px;
  right: 120px;
  transform: rotate(-15deg);
}

.about-hero-section .bird-2 {
  top: 200px;
  right: 200px;
  width: 35px;
  height: 25px;
  transform: rotate(10deg);
}

.about-hero-section .bird-3 {
  top: 120px;
  right: 50px;
  width: 45px;
  height: 35px;
  transform: rotate(-25deg);
}

.about-hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70vh;
  padding-top: 100px;
}

.about-hero-content .hero-left {
  width: 45%;
  padding-left: 50px;
}

.about-hero-content .hero-message-box {
  background: rgba(255, 255, 255, 0.95);
  padding: 30px 25px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  max-width: 400px;
}

.about-hero-content .catchphrase {
  color: #0d8770;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
  line-height: 1.4;
}

.about-hero-content .page-title {
  color: #0d8770;
  font-size: 32px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.about-hero-content .hero-right {
  width: 45%;
  padding-right: 50px;
  text-align: left;
}

.about-hero-content .hero-text-content {
  position: relative;
}

.about-hero-content .hero-main-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 30px;
  color: white;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 15px;
}

.about-hero-content .hero-description {
  color: white;
}

.about-hero-content .hero-description p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 8px;
  opacity: 0.95;
}

.about-hero-section .hero-animals {
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  z-index: 2;
}

.about-hero-section .animal-silhouettes {
  position: relative;
  width: 100%;
  height: 120px;
}

.about-hero-section .grass-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
  border-top: 2px solid rgba(255, 255, 255, 0.6);
}

.about-hero-section .cat-silhouette {
  position: absolute;
  bottom: 25px;
  left: 45%;
  width: 80px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  clip-path: polygon(
    15% 100%,
    15% 70%,
    25% 60%,
    25% 40%,
    35% 35%,
    40% 25%,
    45% 35%,
    50% 40%,
    55% 35%,
    60% 25%,
    65% 35%,
    70% 40%,
    70% 60%,
    80% 70%,
    80% 100%
  );
}

.about-hero-section .dog-silhouette {
  position: absolute;
  bottom: 25px;
  right: 15%;
  width: 120px;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  clip-path: polygon(
    10% 100%,
    10% 60%,
    20% 50%,
    30% 45%,
    40% 40%,
    50% 35%,
    60% 40%,
    70% 45%,
    80% 50%,
    85% 60%,
    85% 70%,
    90% 80%,
    90% 100%
  );
}

.about-main-content {
  background-color: #0d8770;
  min-height: 80vh;
}

.content-wrapper {
  display: flex;
  padding: 60px 0;
}

.about-sidebar {
  width: 250px;
  flex-shrink: 0;
}

.sidebar-nav ul {
  list-style: none;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.sidebar-nav li {
  border-bottom: 1px solid #eee;
}

.sidebar-nav li:last-child {
  border-bottom: none;
}

.sidebar-nav a {
  display: block;
  padding: 15px 20px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  transition: all 0.3s;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
  background-color: #0d8770;
  color: white;
}

.sidebar-contact .contact-card {
  background: #0d8770;
  color: white;
  padding: 25px 20px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 20px;
}

.sidebar-contact h4 {
  font-size: 16px;
  margin-bottom: 10px;
}

.sidebar-contact p {
  font-size: 12px;
  opacity: 0.8;
  margin-bottom: 15px;
}

.sidebar-contact .phone {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
}

.sidebar-contact .hours {
  font-size: 12px;
  opacity: 0.8;
}

.sidebar-email .email-btn {
  background: #0d8770;
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  display: block;
  text-align: center;
  font-size: 14px;
  transition: all 0.3s;
  width: 100%;
  box-sizing: border-box;
}

.sidebar-email .email-btn:hover {
  background: #1e3d30;
}

.about-content {
  flex: 1;
}

.section-header {
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 32px;
  color: #0d8770;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #666;
  font-size: 16px;
}

.about-services {
  display: flex;
  justify-content: center;
  margin: 60px 0;
}

.service-circle {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77, 157, 124, 0.1) 0%, rgba(45, 90, 74, 0.2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.circle-content {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-items {
  text-align: center;
}

.service-item {
  color: #0d8770;
  font-size: 16px;
  font-weight: 500;
  margin: 15px 0;
  position: relative;
}

.service-item::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #0d8770;
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
}

.company-info-section {
  background: linear-gradient(135deg, #0d8770 0%, #0d8770 100%);
  color: white;
  padding: 60px 40px;
}

.company-info-section .section-header h2 {
  color: white;
}

.company-info-section .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.company-table {
  background: white;
}

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

.company-table th,
.company-table td {
  padding: 20px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.company-table th {
  background-color: #f8f9fa;
  color: #0d8770;
  font-weight: 600;
  width: 150px;
  vertical-align: top;
}

.company-table td {
  color: #333;
  line-height: 1.6;
}

.company-table tr:last-child th,
.company-table tr:last-child td {
  border-bottom: none;
}

/* Company Information Layout (New Green Design) */
.company-info-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-top: 40px;
}

.info-title-card {
  background: white;
  border-radius: 15px;
  padding: 30px 25px;
  text-align: center;
  min-width: 200px;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-title-card h3 {
  color: #0d8770;
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 10px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-title-card p {
  color: #666;
  font-size: 16px;
  margin: 0;
  font-weight: 500;
}

.company-table-wrapper {
  flex: 1;
}

.company-table-wrapper .company-table th {
  background: #0d8770;
  color: white;
  font-weight: 600;
  font-size: 15px;
  padding: 18px 20px;
  border-bottom: 1px solid #0d8770;
  width: 180px;
}

.company-table-wrapper .company-table td {
  background: #0d8770;
  color: white;
  padding: 18px 20px;
  border-bottom: 1px solid #0d8770;
  line-height: 1.5;
  font-size: 14px;
}

.company-table-wrapper .company-table tr:last-child th,
.company-table-wrapper .company-table tr:last-child td {
  border-bottom: none;
}

.map-section {
  margin: 40px 0;
}

.about-contact-section {
  background: linear-gradient(135deg, #0d8770 0%, #0d8770 100%);
  color: white;
  padding: 60px 40px;
  border-radius: 15px;
  margin-top: 60px;
}

.contact-info-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.about-contact-section .contact-left {
  width: 300px;
}

.about-contact-section .contact-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
}

.about-contact-section .contact-card h3 {
  font-size: 18px;
  margin-bottom: 20px;
}

.contact-details {
  text-align: left;
}

.contact-item {
  display: flex;
  margin-bottom: 15px;
}

.contact-item .label {
  font-size: 14px;
  opacity: 0.9;
}

.contact-item .phone {
  font-size: 20px;
  font-weight: bold;
}

.contact-item .hours {
  font-size: 14px;
}

.about-contact-section .contact-right {
  flex: 1;
  text-align: center;
  margin-left: 40px;
}

.email-contact-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid white;
  color: white;
  padding: 15px 40px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  transition: all 0.3s;
}

.email-contact-btn:hover {
  background: white;
  color: #0d8770;
}

/* Properties Page Styles */
.properties-page {
  background-color: #f8f9fa;
}

.properties-hero-section {
  background: linear-gradient(135deg, #0d8770 0%, #0d8770 100%);
  color: white;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.properties-hero-section .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.properties-hero-section .hero-left {
  width: 40%;
}

.properties-hero-section .hero-form {
  background: white;
  padding: 20px 30px;
  border-radius: 10px;
  max-width: 300px;
}

.properties-hero-section .hero-form h3 {
  color: #0d8770;
  margin: 0;
  font-size: 20px;
}

.properties-hero-section .hero-animals {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: url("images/mv.png") bottom center no-repeat;
  background-size: cover;
}

.properties-listing-section {
  padding: 80px 0;
  background-color: white;
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.property-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  cursor: pointer;
}

.property-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.property-info-panel {
  background: #0d8770;
  color: white;
  padding: 0;
}

.property-info-table {
  width: 100%;
}

.property-info-row {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 20px;
  align-items: center;
}

.property-info-row:last-child {
  border-bottom: none;
}

.property-info-row .info-label {
  min-width: 80px;
  font-size: 13px;
  color: white;
  font-weight: 500;
  flex-shrink: 0;
}

.property-info-row .info-value {
  flex: 1;
  font-size: 13px;
  color: white;
  margin-left: 15px;
  font-weight: 400;
}

/* Top Page Property Cards (Different from Properties List Page) */
.top-property-card {
  cursor: pointer;
}

.top-property-image {
  background-color: #fff;
  position: relative;
  width: 100%;
}

.top-property-image img {
  width: 100%;
  /* height: 200px; */
  object-fit: cover;
}

.top-property-info-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 20px;
}

.top-property-info-table {
  width: 100%;
}

.top-property-info-row {
  display: flex;
  padding: 8px 0;
  align-items: center;
  border-bottom: 1px dotted #ccc;
}

.top-property-info-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.top-property-info-row .top-info-label {
  min-width: 80px;
  font-size: 13px;
  color: #666;
  font-weight: 500;
  flex-shrink: 0;
}

.top-property-info-row .top-info-value {
  flex: 1;
  font-size: 13px;
  color: #333;
  margin-left: 15px;
  font-weight: 400;
}

.property-features {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.feature-tag {
  background: rgba(45, 90, 74, 0.9);
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 500;
}

/* No Properties Message */
.no-properties-message {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.no-properties-message p {
  font-size: 16px;
  color: #666;
  margin: 0;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
}

.page-nav,
.page-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  text-decoration: none;
  color: #666;
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: all 0.3s;
  font-size: 14px;
}

.page-nav:hover,
.page-number:hover {
  background: #0d8770;
  color: white;
  border-color: #0d8770;
}

.page-number.active {
  background: #0d8770;
  color: white;
  border-color: #0d8770;
}

.page-dots {
  color: #666;
  font-size: 14px;
}

.prev {
  margin-right: 10px;
}

.next {
  margin-left: 10px;
}

/* ATBB ID Display */
.atbb-id {
  text-align: center;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #eee;
}

.atbb-id small {
  color: #999;
  font-size: 11px;
}

/* No Properties Message */
.no-properties {
  text-align: center;
  padding: 60px 20px;
  color: #666;
}

/* Property Detail Page Styles */
.property-detail-page {
  background-color: #f8f9fa;
  min-height: 100vh;
  padding: 40px 0;
}

.breadcrumb {
  margin-bottom: 30px;
  font-size: 14px;
  color: #666;
}

.breadcrumb a {
  color: #0d8770;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.property-detail-content {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.property-images {
  width: 100%;
}

.main-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

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

.property-detail-info {
  padding: 40px;
}

.property-title {
  font-size: 28px;
  color: #0d8770;
  margin-bottom: 30px;
  font-weight: 600;
}

.price-section {
  background: linear-gradient(135deg, #0d8770 0%, #0d8770 100%);
  color: white;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 40px;
}

.rent-price {
  display: flex;
  align-items: baseline;
  gap: 15px;
  margin-bottom: 20px;
}

.price-label {
  font-size: 16px;
  opacity: 0.9;
}

.price-value {
  font-size: 32px;
  font-weight: bold;
}

.additional-costs {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.cost-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
}

.property-details-table {
  margin-bottom: 40px;
}

.property-details-table h3 {
  color: #0d8770;
  margin-bottom: 20px;
  font-size: 20px;
  border-bottom: 2px solid #0d8770;
  padding-bottom: 10px;
}

.property-details-table table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.property-details-table th,
.property-details-table td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.property-details-table th {
  background-color: #f8f9fa;
  color: #0d8770;
  font-weight: 600;
  width: 150px;
}

.property-details-table td {
  color: #333;
}

.property-details-table tr:last-child th,
.property-details-table tr:last-child td {
  border-bottom: none;
}

.pet-info-section {
  margin-bottom: 40px;
}

.pet-info-section h3 {
  color: #0d8770;
  margin-bottom: 20px;
  font-size: 20px;
  border-bottom: 2px solid #0d8770;
  padding-bottom: 10px;
}

.pet-allowed-status {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 15px;
}

.pet-allowed-status.可 {
  background: linear-gradient(135deg, rgba(74, 157, 124, 0.1), rgba(45, 90, 74, 0.1));
  border: 2px solid #0d8770;
}

.pet-allowed-status.相談 {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 171, 0, 0.1));
  border: 2px solid #ffc107;
}

.pet-allowed-status.不可 {
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(183, 28, 28, 0.1));
  border: 2px solid #dc3545;
}

.status-label {
  font-weight: 600;
  color: #333;
}

.status-value {
  font-size: 18px;
  font-weight: bold;
}

.pet-allowed-status.可 .status-value {
  color: #0d8770;
}

.pet-allowed-status.相談 .status-value {
  color: #ffc107;
}

.pet-allowed-status.不可 .status-value {
  color: #dc3545;
}

.pet-details {
  background: #f8f9fa;
  padding: 15px 20px;
  border-radius: 8px;
  color: #666;
  line-height: 1.6;
}

.features-section {
  margin-bottom: 40px;
}

.features-section h3 {
  color: #0d8770;
  margin-bottom: 20px;
  font-size: 20px;
  border-bottom: 2px solid #0d8770;
  padding-bottom: 10px;
}

.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.feature-item {
  background: #0d8770;
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

.property-description {
  margin-bottom: 40px;
}

.property-description h3 {
  color: #0d8770;
  margin-bottom: 20px;
  font-size: 20px;
  border-bottom: 2px solid #0d8770;
  padding-bottom: 10px;
}

.description-content {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  line-height: 1.8;
  color: #333;
}

.atbb-info {
  background: #e9ecef;
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 40px;
  text-align: center;
  color: #666;
  font-size: 14px;
}

.contact-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  padding-top: 30px;
  border-top: 2px solid #eee;
}

.btn-contact-large,
.btn-back {
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
  text-align: center;
  min-width: 200px;
}

.btn-contact-large {
  background: linear-gradient(135deg, #0d8770 0%, #0d8770 100%);
  color: white;
}

.btn-contact-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(45, 90, 74, 0.3);
}

.btn-back {
  background: #f8f9fa;
  color: #0d8770;
  border: 2px solid #0d8770;
}

.btn-back:hover {
  background: #0d8770;
  color: white;
}

/* News Archive Page Styles */
.news-archive-page {
  background-color: #f8f9fa;
}

.news-hero-section {
  background: linear-gradient(135deg, #0d8770 0%, #0d8770 100%);
  color: white;
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: center;
}

.news-hero-section .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.news-hero-section .hero-left {
  width: 40%;
}

.news-hero-section .hero-form {
  background: white;
  padding: 20px 30px;
  border-radius: 10px;
  max-width: 300px;
}

.news-hero-section .hero-form h3 {
  color: #0d8770;
  margin: 0;
  font-size: 20px;
}

.news-hero-section .hero-animals {
  bottom: -60px;
  height: 400px;
  background: url("images/mv.png") bottom center no-repeat;
  background-size: contain;
}

.news-listing-section {
  padding: 80px 0;
  background-color: white;
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 60px;
}

.news-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  display: flex;
  align-items: stretch;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.news-date {
  background: #0d8770;
  color: white;
  padding: 30px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  text-align: center;
}

.date-label {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.2;
}

.news-title {
  margin: 0 0 15px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.news-title a {
  color: #0d8770;
  text-decoration: none;
  transition: color 0.3s;
}

.news-title a:hover {
  color: #1e3d30;
}

.news-excerpt {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.news-meta {
  font-size: 12px;
  color: #999;
  margin-bottom: 20px;
}

.news-meta .author,
.news-meta .comments {
  margin-right: 15px;
}

.news-actions {
  margin-top: auto;
}

.read-more-btn {
  background: #0d8770;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.3s;
  display: inline-block;
}

.read-more-btn:hover {
  background: #1e3d30;
  transform: translateY(-1px);
}

.news-thumbnail {
  width: 200px;
  flex-shrink: 0;
}

.news-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.no-news {
  text-align: center;
  padding: 60px 20px;
  color: #666;
}

/* News Detail Page Styles */
.news-detail-page {
  background-color: #f8f9fa;
  min-height: 100vh;
}

.news-detail-content {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin: 40px 0;
}

.news-header {
  padding: 40px;
  border-bottom: 1px solid #eee;
}

.news-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #666;
}

.news-date {
  background: #0d8770;
  color: white;
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 12px;
}

.news-author {
  color: #999;
}

.news-title {
  font-size: 28px;
  color: #0d8770;
  margin: 0;
  font-weight: 600;
  line-height: 1.3;
}

.news-featured-image {
  width: 100%;
  max-height: 400px;
  overflow: hidden;
}

.news-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-content h1,
.news-content h2,
.news-content h3,
.news-content h4,
.news-content h5,
.news-content h6 {
  color: #0d8770;
  margin: 30px 0 15px;
  line-height: 1.3;
}

.news-content p {
  margin-bottom: 20px;
}

.news-content ul,
.news-content ol {
  margin: 20px 0;
  padding-left: 30px;
}

.news-content li {
  margin-bottom: 10px;
}

.news-footer {
  padding: 40px;
  border-top: 1px solid #eee;
  background: #f8f9fa;
}

.tags-section {
  margin-bottom: 30px;
}

.tags-label {
  font-weight: 600;
  color: #666;
  margin-right: 15px;
}

.tag-item {
  background: #0d8770;
  color: white;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 12px;
  margin-right: 10px;
  display: inline-block;
  margin-bottom: 10px;
}

.news-actions {
  text-align: center;
}

.btn-back {
  background: #f8f9fa;
  color: #0d8770;
  border: 2px solid #0d8770;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
  display: inline-block;
}

.btn-back:hover {
  background: #0d8770;
  color: white;
}

.news-navigation {
  padding: 30px 40px;
  border-top: 1px solid #eee;
}

.nav-links {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.nav-previous,
.nav-next {
  flex: 1;
}

.nav-link {
  display: block;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s;
}

.nav-link:hover {
  background: #0d8770;
  color: white;
}

.nav-direction {
  font-size: 12px;
  color: #666;
  display: block;
  margin-bottom: 5px;
}

.nav-link:hover .nav-direction {
  color: rgba(255, 255, 255, 0.8);
}

.nav-title {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  line-height: 1.3;
}

.nav-link:hover .nav-title {
  color: white;
}

.news-comments {
  padding: 40px;
  border-top: 1px solid #eee;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
  }

  .hero-left,
  .hero-right {
    width: 100%;
    position: static;
    transform: none;
    padding: 0 20px;
    margin-bottom: 30px;
  }

  .hero-left {
    order: 1;
  }

  .hero-right {
    order: 2;
    text-align: center;
  }

  .hero-message-box {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero-content {
    padding: 20px;
    gap: 20px;
  }

  .service-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .property-grid {
    grid-template-columns: 1fr;
  }

  .topics-content {
    flex-direction: column;
  }

  .topics-left {
    width: 100%;
    margin-bottom: 30px;
  }

  .contact-content {
    flex-direction: column;
    gap: 30px;
  }

  .contact-left {
    width: 100%;
  }

  /* About Page Responsive */
  .about-hero-section .hero-left,
  .about-hero-section .hero-right {
    width: 100%;
    position: static;
    transform: none;
    margin-bottom: 30px;
  }

  .content-wrapper {
    flex-direction: column;
    padding: 30px 0;
  }

  .about-sidebar {
    order: 1;
    width: 100%;
    margin-bottom: 40px;
    position: static;
  }

  .new-sidebar {
    position: static !important;
    top: auto !important;
  }

  .about-content {
    order: 2;
    width: 100%;
  }

  .about-us-section {
    padding: 40px 20px;
    width: 100%;
  }

  .sidebar-nav ul {
    display: flex;
    overflow-x: auto;
  }

  .sidebar-nav li {
    border-bottom: none;
    border-right: 1px solid #eee;
    white-space: nowrap;
  }

  .sidebar-nav li:last-child {
    border-right: none;
  }

  .about-header {
    padding: 0 20px;
    margin-bottom: 30px;
  }

  .about-main-title {
    font-size: 24px !important;
  }

  .about-subtitle {
    font-size: 16px !important;
  }

  .about-services-container {
    padding: 0 20px;
    flex-direction: column !important;
    align-items: center !important;
    gap: 30px !important;
  }

  .service-tree-icon {
    order: 1;
  }

  .service-tree-icon .tree-circle {
    width: 120px !important;
    height: 120px !important;
  }

  .service-tree-icon .tree-circle img {
    width: 80px !important;
    height: 80px !important;
  }

  .service-list {
    order: 2;
    width: 100% !important;
    max-width: 300px;
  }

  .service-item {
    font-size: 16px !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .company-info-section {
    padding: 40px 20px !important;
  }

  .company-info-container {
    flex-direction: column !important;
    gap: 20px !important;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .company-info-layout {
    flex-direction: column !important;
    gap: 20px !important;
    width: 100%;
    max-width: 100%;
  }

  .info-title-card {
    width: 100% !important;
    min-width: auto !important;
    margin-bottom: 20px;
  }

  .company-table-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: visible;
  }

  .company-table {
    width: 100%;
    table-layout: auto;
  }

  .company-table th {
    width: 30%;
    font-size: 13px;
    padding: 12px 10px;
    white-space: normal;
    word-wrap: break-word;
    vertical-align: top;
  }

  .company-table th,
  .company-table td {
    padding: 12px 10px;
    font-size: 13px;
    white-space: normal;
    word-wrap: break-word;
    line-height: 1.4;
  }

  .company-table td {
    width: 70%;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .map-contact-section {
    padding: 0 20px 40px 20px;
  }

  .map-container {
    margin-bottom: 30px;
  }

  .map-container iframe {
    height: 250px !important;
  }

  .about-contact-info {
    display: block;
    padding: 0;
  }

  .contact-title-card {
    margin-bottom: 20px;
    padding: 20px;
  }

  .contact-details {
    padding: 0 20px;
  }

  .contact-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0;
    margin-bottom: 15px;
  }

  .contact-divider {
    display: none !important;
  }

  .contact-phone {
    font-size: 20px !important;
    margin-top: 5px;
  }

  .contact-hours {
    margin-top: 5px;
  }

  .contact-email-section {
    text-align: center;
    margin-top: 30px;
  }

  .about-email-btn {
    padding: 12px 30px !important;
    font-size: 16px !important;
  }

  .contact-info-grid {
    flex-direction: column;
    gap: 30px;
  }

  .about-contact-section .contact-left {
    width: 100%;
  }

  .about-contact-section .contact-right {
    margin-left: 0;
  }

  /* Properties Page Responsive */
  .properties-hero-section .hero-left {
    width: 100%;
  }

  .properties-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .property-card {
    margin-bottom: 20px;
  }

  .property-image {
    height: 180px;
  }

  .property-info {
    padding: 15px;
  }

  .property-info h3 {
    font-size: 15px;
  }

  .detail-row {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .detail-row .label {
    min-width: 55px;
  }

  .property-actions {
    flex-direction: column;
    gap: 8px;
  }

  .pagination {
    flex-wrap: wrap;
    gap: 5px;
  }

  .page-nav,
  .page-number {
    width: 35px;
    height: 35px;
    font-size: 12px;
  }

  /* Footer Responsive */
  .footer-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-bottom-right {
    text-align: center;
    position: relative;
    left: 0;
    transform: translateX(10px);
  }

  .company-name {
    font-size: 28px;
  }

  .happy-perch {
    font-size: 20px;
  }

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

  /* News Page Responsive */
  .news-hero-section .hero-left {
    width: 100%;
  }

  .news-card {
    flex-direction: column;
  }
  .news-thumbnail {
    width: 100%;
    height: 200px;
  }

  .nav-links {
    flex-direction: column;
    gap: 15px;
  }

  .news-navigation {
    padding: 20px;
  }

  .news-header,
  .news-footer {
    padding: 20px;
    display: flex;
  }

  .news-title {
    font-size: 22px;
  }
}

/* Properties Page Styles */
.properties-hero-section {
  height: 60vh;
}

.properties-hero-background {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.properties-hero-decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.properties-tree-illustration {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 70%;
  opacity: 0.3;
}

.properties-flying-birds {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.properties-bird-1 {
  position: absolute;
  top: 20%;
  right: 15%;
  width: 60px;
  height: 30px;
  animation: fly 8s ease-in-out infinite;
}

.properties-bird-2 {
  position: absolute;
  top: 30%;
  right: 35%;
  width: 50px;
  height: 25px;
  animation: fly 10s ease-in-out infinite;
  animation-delay: 2s;
}

.properties-bird-3 {
  position: absolute;
  top: 40%;
  right: 20%;
  width: 40px;
  height: 20px;
  animation: fly 12s ease-in-out infinite;
  animation-delay: 4s;
}

.properties-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 5%;
}

.properties-hero-left {
  flex: 1;
}

.properties-title-box {
  background: rgba(255, 255, 255, 0.95);
  padding: 20px 30px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  backdrop-filter: blur(10px);
}

.properties-title-box h1 {
  color: #333;
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  text-align: center;
}

.properties-animals {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  z-index: 2;
}

.properties-animal-silhouettes {
  position: relative;
  width: 100%;
  height: 100%;
}

.properties-grass-line {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  height: 60px;
}

.properties-cat-silhouette {
  position: absolute;
  bottom: 40px;
  left: 30%;
  width: 80px;
  height: 50px;
}

.properties-dog-silhouette {
  position: absolute;
  bottom: 40px;
  right: 20%;
  width: 100px;
  height: 60px;
}

/* Properties Main Section */
.properties-main-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.properties-main-section .section-title {
  text-align: center;
  margin-bottom: 60px;
}

.properties-main-section .section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.properties-main-section .section-title .subtitle {
  font-size: 18px;
  color: #666;
  font-weight: 400;
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.property-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.property-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.property-info {
  padding: 0;
  background: #0d8770;
  color: white;
}

.property-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  padding: 20px 20px 15px 20px;
  color: white;
}

.property-details {
  padding: 0 20px 20px 20px;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 14px;
}

.detail-item:last-child {
  margin-bottom: 0;
}

.detail-label {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  min-width: 70px;
}

.detail-value {
  font-weight: 600;
  color: white;
  text-align: right;
}

.property-actions {
  padding: 15px 20px 20px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 10px;
}

.property-detail-btn {
  display: inline-block;
  width: 100%;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.property-detail-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #0d8770;
  border-color: rgba(255, 255, 255, 0.9);
}

.no-properties {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.no-properties p {
  font-size: 18px;
  color: #666;
  margin: 0;
}

/* Pagination */
.properties-pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.pagination-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}

.pagination-arrow,
.pagination-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  background: white;
  color: #666;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 500;
}

.pagination-number.active {
  background: #0d8770;
  color: white;
  border-color: #0d8770;
}

.pagination-arrow:hover,
.pagination-number:hover {
  background: #0d8770;
  color: white;
  border-color: #0d8770;
}

.pagination-dots {
  color: #666;
  font-weight: 500;
  padding: 0 5px;
}

.pagination-arrow.disabled,
.pagination-number.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Contact Footer Section */
.properties-contact-footer {
  padding: 60px 0;
  background: #0d8770;
}

.contact-footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.contact-info-left {
  flex: 1;
}

.contact-info-left .contact-card {
  background: rgba(255, 255, 255, 0.15);
  padding: 30px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info-left .contact-card h3 {
  font-size: 32px;
  font-weight: 700;
  color: white;
  margin: 0 0 10px 0;
}

.contact-info-left .contact-card p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.contact-info-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  min-width: 80px;
}

.contact-value {
  font-size: 20px;
  color: white;
  font-weight: 600;
}

.contact-email-btn .email-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.contact-email-btn .email-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #0d8770;
  border-color: rgba(255, 255, 255, 0.9);
}

/* Company Footer Section */
.properties-company-footer {
  padding: 40px 0;
  background: white;
  border-top: 1px solid #eee;
}

.company-footer-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.company-logo .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.company-logo .tree-icon {
  font-size: 24px;
}

.company-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.company-logo .logo-main {
  font-size: 16px;
  font-weight: 600;
  color: #0d8770;
}

.company-logo .logo-sub {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.company-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 0 0 10px 0;
}

.company-info p {
  font-size: 14px;
  color: #666;
  margin: 0 0 5px 0;
  line-height: 1.5;
}

/* Responsive Design for Properties Page */
@media (max-width: 768px) {
  .properties-hero-section {
    height: 50vw;
  }

  .properties-title-box {
    max-width: 90%;
    margin: 0 auto;
    padding: 15px 20px;
  }

  .properties-title-box h1 {
    font-size: 24px;
  }

  .properties-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-footer-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .contact-info-right {
    align-items: center;
  }

  .contact-item {
    justify-content: center;
  }

  .company-footer-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .pagination-wrapper {
    flex-wrap: wrap;
    gap: 5px;
  }

  .pagination-arrow,
  .pagination-number {
    width: 35px;
    height: 35px;
    font-size: 13px;
  }
}

/* Property Detail Page Styles */
.property-detail-page {
  background: #f8f9fa;
  min-height: 100vh;
}

/* Property Hero Section */
.property-hero-section {
  background: #0d8770;
  padding: 40px 0;
  color: white;
}

.property-hero-content {
  text-align: center;
}

.breadcrumb-nav {
  margin-bottom: 20px;
  font-size: 14px;
}

.breadcrumb-link {
  color: #222;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-separator {
  margin: 0 10px;
  color: #222;
}

.breadcrumb-current {
  color: #222;
  font-weight: 500;
}

.property-hero-title {
  font-size: 32px;
  font-weight: 700;
  margin: 0;
  color: white;
}

/* Property Main Content */
.property-main-content {
  padding: 60px 0;
}

.property-content-layout {
  display: flex;
  gap: 40px;
}

.property-main {
  flex: 1;
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Property Images */
.property-images-section {
  margin-bottom: 40px;
}

.main-image {
  width: 100%;
  height: 400px;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

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

.thumbnail-images {
  display: flex;
  gap: 10px;
}

.thumbnail-item {
  width: 120px;
  height: 80px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.thumbnail-item:hover {
  transform: scale(1.05);
}

.thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Property Info Section */
.property-info-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.property-basic-info {
  padding-bottom: 30px;
  border-bottom: 2px solid #eee;
}

.property-title {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin: 0 0 15px 0;
}

.property-price {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}

.rent-price {
  font-size: 24px;
  font-weight: 700;
  color: #0d8770;
}

.management-fee {
  font-size: 16px;
  color: #666;
}

.property-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: white;
}

.tag.pet-ok {
  background: #0d8770;
}

.tag.newly-built {
  background: #ffa500;
}

.tag.near-station {
  background: #4169e1;
}

/* Property Details Table */
.property-details-table h3 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin: 0 0 20px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #0d8770;
}

.details-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

.details-table th,
.details-table td {
  padding: 15px;
  border-bottom: 1px solid #eee;
  text-align: left;
  vertical-align: top;
}

.details-table th {
  background: #f8f9fa;
  font-weight: 600;
  color: #333;
  width: 120px;
  min-width: 120px;
}

.details-table td {
  color: #666;
  line-height: 1.6;
}

/* Floor Plan */
.floor-plan-section h3 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin: 0 0 20px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #0d8770;
}

.floor-plan-image {
  text-align: center;
  background: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
}

.floor-plan-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Property Description */
.property-description h3 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin: 0 0 20px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #0d8770;
}

.description-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 25px 0 10px 0;
}

.description-content p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.feature-list li {
  position: relative;
  padding: 8px 0 8px 25px;
  color: #666;
  line-height: 1.6;
}

.feature-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  color: #0d8770;
  font-weight: bold;
}

/* Property Contact Section */
.property-contact-section {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
}

.property-contact-section h3 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin: 0 0 25px 0;
}

.contact-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 20px;
}

.contact-btn {
  display: inline-block;
  padding: 20px 30px;
}

.phone-btn {
  background: #0d8770;
  color: white;
}

.phone-btn:hover {
  background: #0d8770;
  transform: translateY(-2px);
}

.email-btn {
  background: white;
  color: #0d8770;
  border: 2px solid #0d8770;
}

.email-btn:hover {
  background: #0d8770;
  color: white;
  transform: translateY(-2px);
}

.btn-icon {
  font-size: 24px;
  margin-bottom: 8px;
}

.phone-number {
  font-size: 14px;
  opacity: 0.9;
  margin-top: 5px;
}

.business-hours {
  color: #666;
  font-size: 14px;
}

.business-hours p {
  margin: 0;
}

/* Back to Properties */
.back-to-properties {
  text-align: center;
  margin: 40px 0;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  background: #f8f9fa;
  color: #333;
  text-decoration: none;
  border-radius: 25px;
  border: 2px solid #ddd;
  font-weight: 500;
  transition: all 0.3s ease;
}

.back-btn:hover {
  background: #0d8770;
  color: white;
  border-color: #0d8770;
}

.back-icon {
  font-size: 16px;
}

/* Related Properties */
.related-properties-section {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px solid #eee;
}

.related-properties-section h3 {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  text-align: center;
  margin: 0 0 40px 0;
}

.related-properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.related-property-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.related-property-card:hover {
  transform: translateY(-5px);
}

.related-property-card .property-image {
  width: 100%;
  height: 150px;
  overflow: hidden;
}

.related-property-card .property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-property-card .property-info {
  padding: 20px;
  background: #0d8770;
  color: white;
}

.related-property-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 15px 0;
  color: white;
}

.related-property-card .property-details {
  margin-bottom: 15px;
}

.related-property-card .detail-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
  font-size: 14px;
}

.related-property-card .detail-label {
  color: rgba(255, 255, 255, 0.8);
}

.related-property-card .detail-value {
  font-weight: 600;
  color: white;
}

.view-detail-btn {
  display: inline-block;
  padding: 8px 15px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.view-detail-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #0d8770;
}

/* Responsive Design for Property Detail */
@media (max-width: 768px) {
  .property-content-layout {
    flex-direction: column;
    gap: 20px;
  }

  .property-main {
    padding: 20px;
  }

  .property-hero-title {
    font-size: 24px;
  }

  .main-image {
    height: 250px;
  }

  .thumbnail-images {
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .thumbnail-item {
    flex-shrink: 0;
  }

  .property-price {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .contact-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .contact-btn {
    min-width: auto;
  }

  .related-properties-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .details-table {
    font-size: 14px;
  }

  .details-table th,
  .details-table td {
    padding: 10px;
  }

  .details-table th {
    width: 100px;
    min-width: 100px;
  }
}

/* New Property Detail Page Styles for Group 128 Design */
.property-detail-new-page {
  background-color: #f8f9fa;
  min-height: 100vh;
  padding: 40px 0;
}

.property-detail-main {
  background-color: white;
  margin: 0 auto;
  max-width: 1200px;
}

.property-detail-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  min-height: 100vh;
  gap: 0;
}

/* Left Content Styles */
.property-left-content {
  padding: 40px;
  background-color: white;
}

.property-images-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.main-property-image {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #e0e0e0;
}

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

.secondary-images {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
}

.secondary-image {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid #e0e0e0;
}

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

.image-label {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
}

.floor-plan-section {
  margin-bottom: 40px;
}

.floor-plan-container {
  position: relative;
  background-color: #f5f5f5;
  border-radius: 8px;
  border: 2px solid #e0e0e0;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floor-plan-container img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.floor-plan-label {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 14px;
}

.property-comment-section {
  margin-bottom: 40px;
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 8px;
}

.property-comment-section h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #333;
  font-weight: bold;
}

.comment-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 15px;
}

.comment-text {
  line-height: 1.8;
  color: #444;
}

.surrounding-info-section {
  margin-bottom: 40px;
}

.surrounding-info-section h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #333;
  font-weight: bold;
}

.surrounding-text {
  margin-bottom: 30px;
  line-height: 1.8;
  color: #444;
}

.surrounding-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.surrounding-image-item {
  text-align: center;
}

.surrounding-image-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid #e0e0e0;
}

.image-caption {
  margin-top: 8px;
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}

/* Right Content - Green Information Panel */
.property-right-content {
  background-color: #0d8770;
  padding: 40px 30px;
  color: white;
}

.property-info-panel {
  height: 100%;
}

.property-title-section {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.property-address-info h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: white;
  font-weight: bold;
}

.property-address-info p {
  margin-bottom: 8px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.property-basic-details {
  margin: 20px 0;
}

.basic-detail-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 12px;
  align-items: center;
}

.detail-label {
  font-weight: bold;
  margin-right: 8px;
  min-width: 50px;
  color: rgba(255, 255, 255, 0.9);
}

.detail-value {
  margin-right: 20px;
  color: white;
  font-weight: 500;
}

.rent-text {
  margin-top: 20px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
}

.apartment-info-section {
  margin-bottom: 40px;
}

.apartment-info-section h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: white;
  font-weight: bold;
}

.apartment-subtitle {
  font-size: 16px;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.8);
}

.apartment-details {
  background: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin-bottom: 25px;
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.detail-item .label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.detail-item .value {
  font-weight: 500;
  color: white;
}

.rent-info {
  margin-bottom: 25px;
}

.rent-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 12px;
  align-items: center;
}

.rent-label {
  font-weight: bold;
  margin-right: 8px;
  min-width: 50px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.rent-value {
  margin-right: 20px;
  color: white;
  font-weight: 500;
  font-size: 14px;
}

.equipment-info {
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
}

.equipment-text {
  line-height: 1.6;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.additional-info {
  margin-bottom: 25px;
}

.info-row {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.info-label {
  font-weight: bold;
  margin-right: 8px;
  min-width: 80px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.info-value {
  color: white;
  font-size: 14px;
}

.restrictions-info {
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
}

.restrictions-info h4 {
  margin-bottom: 10px;
  color: white;
  font-size: 16px;
}

.restrictions-info p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
}

.contract-info {
  margin-bottom: 30px;
}

.contract-details {
  display: grid;
  gap: 12px;
}

.contract-item {
  display: flex;
  align-items: center;
}

.contract-label {
  font-weight: bold;
  margin-right: 8px;
  min-width: 60px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.contract-value {
  color: white;
  font-size: 14px;
}

.facility-info {
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
}

.facility-info h4 {
  margin-bottom: 15px;
  color: white;
  font-size: 16px;
  font-weight: bold;
}

.facility-info p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 15px;
}

/* Contact Button */
.property-contact-button {
  position: sticky;
  bottom: 30px;
  margin-top: auto;
}

.contact-inquiry-btn {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #4caf50, #66bb6a);
  color: white;
  padding: 18px 24px;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-inquiry-btn:hover {
  background: linear-gradient(135deg, #45a049, #5cb85c);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  color: white;
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .property-detail-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .property-left-content {
    padding: 20px;
  }

  .property-right-content {
    padding: 30px 20px;
  }

  .property-images-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .secondary-images {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 10px;
  }

  .surrounding-images {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
  }

  .detail-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .detail-label,
  .rent-label,
  .info-label,
  .contract-label {
    min-width: auto;
    margin-right: 0;
    margin-bottom: 2px;
  }
}

/* News Detail Page Styles */
.news-detail-page {
  background-color: #f8f9fa;
  min-height: 100vh;
}

/* News Detail Hero Section */
.news-detail-hero {
  background: linear-gradient(135deg, #0d8770 0%, #0d8770 100%);
  color: white;
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}

.news-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.news-hero-decorations {
  position: relative;
  width: 100%;
  height: 100%;
}

.news-tree-illustration {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 300px;
  height: 200px;
  opacity: 0.3;
}

.news-flying-birds {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.news-bird-1 {
  position: absolute;
  top: 30%;
  left: 20%;
  width: 40px;
  height: 20px;
  animation: float 6s ease-in-out infinite;
}

.news-bird-2 {
  position: absolute;
  top: 20%;
  right: 30%;
  width: 30px;
  height: 15px;
  animation: float 8s ease-in-out infinite 2s;
}

.news-hero-content {
  position: relative;
  z-index: 2;
}

.news-breadcrumb {
  margin-bottom: 30px;
}

.news-breadcrumb ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 10px;
  align-items: center;
}

.news-breadcrumb li {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.news-breadcrumb li:not(:last-child)::after {
  content: ">";
  margin-left: 10px;
  color: rgba(255, 255, 255, 0.6);
}

.news-breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

.news-breadcrumb a:hover {
  color: white;
}

.news-hero-main {
  max-width: 800px;
}

.news-meta-hero {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
}

.news-date-hero {
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

.news-category-hero {
  background: rgba(255, 255, 255, 0.9);
  color: #0d8770;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.news-title-hero {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 20px 0;
  color: white;
}

.news-excerpt-hero p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* News Main Content */
.news-main-content {
  background: #0d8770;
}

.news-content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.news-article {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 40px;
  margin-bottom: 40px;
}

.news-featured-image {
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
}

.news-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.news-content-body {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 40px;
}

.news-content-body h2,
.news-content-body h3,
.news-content-body h4 {
  color: #333;
  margin: 30px 0 15px 0;
  font-weight: 600;
}

.news-content-body h2 {
  font-size: 24px;
  border-bottom: 2px solid #0d8770;
  padding-bottom: 10px;
}

.news-content-body h3 {
  font-size: 20px;
}

.news-content-body h4 {
  font-size: 18px;
}

.news-content-body p {
  margin-bottom: 16px;
}

.news-content-body ul,
.news-content-body ol {
  margin: 16px 0;
  padding-left: 24px;
}

.news-content-body li {
  margin-bottom: 8px;
}

.news-additional-info {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
  border-left: 4px solid #0d8770;
}

.news-additional-info h3 {
  color: #0d8770;
  font-size: 18px;
  margin: 0 0 15px 0;
  font-weight: 600;
}

.additional-info-content {
  color: #666;
  line-height: 1.6;
}

/* News Actions */
.news-actions {
  display: flex;
}

.tags-section {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.tags-label {
  font-weight: 600;
  color: #666;
}

.tag-item {
  background: #f0f0f0;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  color: #666;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #0d8770;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.back-btn:hover {
  background: #0d8770;
  transform: translateY(-2px);
  color: white;
}

.back-icon {
  font-size: 16px;
}

/* News Navigation */
.news-navigation {
  margin: 40px 0;
}

.nav-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.nav-previous,
.nav-next {
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-previous:hover,
.nav-next:hover {
  background: #0d8770;
  color: white;
  transform: translateY(-2px);
}

.nav-previous a,
.nav-next a {
  display: block;
  padding: 20px;
  text-decoration: none;
  color: inherit;
}

.nav-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav-label {
  font-size: 14px;
  font-weight: 600;
  color: #0d8770;
}

.nav-previous:hover .nav-label,
.nav-next:hover .nav-label {
  color: rgba(255, 255, 255, 0.9);
}

.nav-title {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  line-height: 1.4;
}

.nav-previous:hover .nav-title,
.nav-next:hover .nav-title {
  color: white;
}

.nav-date {
  font-size: 12px;
  color: #999;
}

.nav-previous:hover .nav-date,
.nav-next:hover .nav-date {
  color: rgba(255, 255, 255, 0.7);
}

/* Related News */
.related-news {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 40px;
}

.related-news h3 {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin: 0 0 30px 0;
  text-align: center;
  padding-bottom: 15px;
  border-bottom: 2px solid #0d8770;
}

.related-news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.related-news-item {
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.related-news-item:hover {
  background: #0d8770;
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.related-news-item a {
  display: block;
  padding: 20px;
  text-decoration: none;
  color: inherit;
}

.related-news-date {
  font-size: 12px;
  color: #999;
  font-weight: 500;
}

.related-news-item:hover .related-news-date {
  color: rgba(255, 255, 255, 0.8);
}

.related-news-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 10px 0;
  line-height: 1.4;
}

.related-news-item:hover .related-news-title {
  color: white;
}

.related-news-excerpt {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

.related-news-item:hover .related-news-excerpt {
  color: rgba(255, 255, 255, 0.9);
}

.no-related {
  text-align: center;
  color: #999;
  font-style: italic;
  grid-column: 1 / -1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .news-detail-hero {
    padding: 40px 0 60px;
  }

  .news-title-hero {
    font-size: 28px;
  }

  .news-excerpt-hero p {
    font-size: 16px;
  }

  .news-article {
    padding: 30px 20px;
    margin-bottom: 30px;
  }

  .news-meta-hero {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .news-actions {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .nav-links {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .related-news {
    padding: 30px 20px;
  }

  .related-news-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .news-tree-illustration {
    right: 5%;
    width: 200px;
    height: 150px;
  }
}

/* ========================================
   Property Image Slider Styles
======================================== */

/* Container */
.property-images-slider {
  margin-bottom: 30px !important;
  position: relative !important;
  width: 100% !important;
  min-height: 400px !important;

  /* 画像選択無効化 */
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;

  /* 表示確保 */
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* メインスワイパー */
.property-main-swiper {
  width: 100% !important;
  /* height: 400px !important; */
  position: relative !important;

  /* スタイリング */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background: #f8f8f8;
  margin-bottom: 15px;

  /* タッチ操作 */
  touch-action: pan-y pinch-zoom;

  /* 表示確保 */
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 10 !important;
}

/* スワイパーラッパー */
.property-main-swiper .swiper-wrapper {
  height: 100% !important;
  display: flex !important;
  position: relative !important;
  transition-timing-function: ease !important;
}

/* スライド */
.property-main-swiper .swiper-slide {
  position: relative !important;
  width: 100% !important;
  flex-shrink: 0 !important;
  /* レイアウト */
  display: flex !important;
  align-items: center;
  justify-content: center;
  overflow: hidden;

  /* 背景 */
  background: #fff !important;

  /* トランジション */
  transition: transform 0.3s ease;
}

/* 画像コンテナ */
.property-main-swiper .image-container {
  width: 100% !important;
  position: relative;
  overflow: hidden;
  background: #f8f8f8;

  /* レイアウト */
  display: flex !important;
  align-items: center;
  justify-content: center;

  /* カーソル */
  cursor: grab;
}

.property-main-swiper .image-container:active {
  cursor: grabbing;
}

/* 画像 */
.property-main-swiper .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
  pointer-events: none;

  /* 画像選択無効化 */
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* 画像ラベル */
.property-main-swiper .image-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 10;
  pointer-events: none;

  /* スタイリング */
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 14px;

  /* ブラー効果 */
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

/* ========================================
   ナビゲーション要素
======================================== */

/* ナビゲーションボタン */
.property-nav-prev,
.property-nav-next {
  /* サイズ */
  width: 45px !important;
  height: 45px !important;
  margin-top: -22.5px !important;

  /* スタイリング */
  color: white !important;
  background: rgba(0, 0, 0, 0.6) !important;
  border-radius: 50% !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2) !important;

  /* エフェクト */
  transition: all 0.3s ease !important;
  backdrop-filter: blur(5px) !important;
  -webkit-backdrop-filter: blur(5px) !important;

  /* レイヤー */
  z-index: 20 !important;
}

/* ナビゲーションボタン：ホバー */
.property-nav-prev:hover,
.property-nav-next:hover {
  background: rgba(0, 0, 0, 0.8) !important;
  transform: scale(1.1) !important;
}

/* ナビゲーションボタン：アクティブ */
.property-nav-prev:active,
.property-nav-next:active {
  transform: scale(0.95) !important;
}

/* ナビゲーションボタン：アイコン */
.property-nav-prev::after,
.property-nav-next::after {
  font-size: 18px !important;
  font-weight: bold !important;
}

/* ページネーション */
.property-pagination {
  bottom: 10px !important;
  z-index: 20 !important;
}

/* ページネーション：ドット */
.property-pagination .swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  margin: 0 4px !important;
  opacity: 1 !important;

  /* スタイリング */
  background: rgba(255, 255, 255, 0.5) !important;
  transition: all 0.3s ease !important;
}

/* ページネーション：アクティブドット */
.property-pagination .swiper-pagination-bullet-active {
  background: white !important;
  transform: scale(1.2) !important;
}

/* ページネーション：ホバー */
.property-pagination .swiper-pagination-bullet:hover {
  background: rgba(255, 255, 255, 0.8) !important;
  transform: scale(1.1) !important;
}

/* ========================================
   サムネイルスワイパー
======================================== */

/* サムネイルスワイパー */
.property-thumb-swiper {
  width: 100%;
  height: 80px;
  margin-top: 10px;
  position: relative;
}

/* サムネイルスライド */
.property-thumb-swiper .swiper-slide {
  width: 80px;
  height: 60px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s ease;

  /* 画像選択無効化 */
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* サムネイルスライド：アクティブ */
.property-thumb-swiper .swiper-slide-thumb-active {
  opacity: 1;
}

/* サムネイルスライド：ホバー */
.property-thumb-swiper .swiper-slide:hover {
  opacity: 1;
}

/* サムネイルコンテナ */
.property-thumb-swiper .thumb-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;

  /* スタイリング */
  border-radius: 4px;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}

/* サムネイルコンテナ：アクティブ */
.property-thumb-swiper .swiper-slide-thumb-active .thumb-container {
  border-color: #007cba;
}

/* サムネイルコンテナ：ホバー */
.property-thumb-swiper .swiper-slide:hover .thumb-container {
  border-color: #005a87;
}

/* サムネイル画像 */
.property-thumb-swiper .thumb-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* ========================================
   スワイパー共通状態
======================================== */

/* タッチ/スワイプインジケーター */
.swipe-indicator {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 15;
  opacity: 0;
  pointer-events: none;

  /* スタイリング */
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 10px;
  border-radius: 20px;
  font-size: 12px;
  transition: opacity 0.3s ease;
}

.swipe-indicator.left {
  left: 10px;
}

.swipe-indicator.right {
  right: 10px;
}

.swipe-indicator.show {
  opacity: 1;
}

/* ローディング状態 */
.swiper-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: #f8f8f8;
}

.swiper-loading::after {
  content: "";
  width: 30px;
  height: 30px;
  border: 3px solid #ddd;
  border-top: 3px solid #007cba;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* デバッグ情報 */
.swiper-debug-info {
  font-family: monospace;
  background: #f0f0f0;
  padding: 10px;
  margin-top: 10px;
  font-size: 12px;
  border-radius: 4px;
  border-left: 4px solid #007cba;
}

/* 無効状態 */
.swiper-button-disabled {
  opacity: 0.3 !important;
  cursor: not-allowed !important;
}

/* スライド状態効果 */
.property-main-swiper .swiper-slide-active {
  z-index: 2;
}

.property-main-swiper .swiper-slide-prev,
.property-main-swiper .swiper-slide-next {
  z-index: 1;
}

/* ========================================
   レスポンシブデザイン
======================================== */

/* タブレット・小型デスクトップ */
@media (max-width: 768px) {
  /* メインスワイパー */
  .property-main-swiper {
    height: 250px;
  }

  /* ナビゲーションボタン */
  .property-nav-prev,
  .property-nav-next {
    width: 35px !important;
    height: 35px !important;
    margin-top: -17.5px !important;
  }

  /* ナビゲーションアイコン */
  .property-nav-prev::after,
  .property-nav-next::after {
    font-size: 14px !important;
  }

  /* サムネイルスライド */
  .property-thumb-swiper .swiper-slide {
    width: 60px;
    height: 45px;
  }

  /* スワイプインジケーター非表示 */
  .swipe-indicator {
    display: none;
  }

  /* 画像ラベル */
  .property-main-swiper .image-label {
    font-size: 12px;
    padding: 3px 8px;
  }
}

/* スマートフォン */
@media (max-width: 480px) {
  /* メインスワイパー */
  .property-main-swiper {
    height: 200px;
  }

  /* サムネイルスワイパー */
  .property-thumb-swiper {
    height: 60px;
  }

  /* サムネイルスライド */
  .property-thumb-swiper .swiper-slide {
    width: 50px;
    height: 35px;
  }
}

/* ========================================
   ハンバーガーメニュー
======================================== */

/* ハンバーガーメニューボタン */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  transition: transform 0.3s ease;
}

.hamburger-menu:hover {
  transform: scale(1.1);
}

/* ハンバーガーラインスタイル */
.hamburger-line {
  width: 100%;
  height: 3px;
  background: #0d8770;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* アクティブ状態（×マーク） */
.hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.contact-btn.mobile {
  display: none;
}

.mobile-contact {
  display: none;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
  /* ハンバーガーメニューボタン表示 */
  .hamburger-menu {
    display: flex;
  }

  /* デスクトップ用お問い合わせボタン非表示 */
  .contact-btn.desktop {
    display: none;
  }

  /* メインナビゲーション */
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  }

  /* メニューが開いている状態 */
  .main-nav.active {
    right: 0;
  }

  /* ナビゲーションメニュー */
  .nav-menu {
    display: flex;
    flex-direction: column;
    padding: 80px 30px 30px;
    height: 100%;
    margin: 0;
    list-style: none;
  }

  /* メニューアイテム */
  .nav-menu li {
    margin-bottom: 25px;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.3s ease;
  }

  /* アクティブ時のアニメーション */
  .main-nav.active .nav-menu li {
    opacity: 1;
    transform: translateX(0);
  }

  /* 段階的アニメーション */
  .main-nav.active .nav-menu li:nth-child(1) {
    transition-delay: 0.1s;
  }
  .main-nav.active .nav-menu li:nth-child(2) {
    transition-delay: 0.2s;
  }
  .main-nav.active .nav-menu li:nth-child(3) {
    transition-delay: 0.3s;
  }
  .main-nav.active .nav-menu li:nth-child(4) {
    transition-delay: 0.4s;
  }
  .main-nav.active .nav-menu li:nth-child(5) {
    transition-delay: 0.5s;
  }
  .main-nav.active .nav-menu li:nth-child(6) {
    transition-delay: 0.6s;
  }
  .main-nav.active .nav-menu li:nth-child(7) {
    transition-delay: 0.7s;
  }

  /* メニューリンク */
  .nav-menu a {
    display: block;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: color 0.3s ease;
  }

  /* メニューリンクホバー */
  .nav-menu a:hover {
    color: #0d8770;
  }

  /* アクティブリンク */
  .nav-menu a.active {
    color: #0d8770;
    font-weight: bold;
  }

  /* ナビゲーションテキスト */
  .nav-en {
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
  }

  .nav-jp {
    display: block;
    font-size: 12px;
    opacity: 0.7;
  }

  /* モバイル用お問い合わせボタン */
  .mobile-contact {
    display: block !important;
    padding-top: 30px;
  }

  .contact-btn.mobile {
    display: inline-block;
    background: #0d8770;
    color: white;
    padding: 15px 25px;
    border-radius: 25px;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    transition: background 0.3s ease;
  }

  .contact-btn.mobile:hover {
    background: #0a6b59;
  }

  /* オーバーレイ */
  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }
}
