<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Playfair+Display+SC:wght@700;900&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500&amp;display=swap');

body {
  font-family: 'Noto Serif JP', serif;
  color: #222;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-color: #f9f6f0;
}

.sle_modal_age-confirm {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.sle_modal_age-confirm.active {
  opacity: 1;
  visibility: visible;
}

.sle_modal_age-content {
  background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
  padding: 2rem;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transform: translateY(-20px);
  transition: transform 0.4s ease;
}

.sle_modal_age-confirm.active .sle_modal_age-content {
  transform: translateY(0);
}

.sle_modal_age-title {
  font-family: 'Playfair Display SC', serif;
  color: #d32f2f;
  margin-top: 0;
  font-size: 1.8rem;
}

.sle_modal_age-text {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.sle_modal_age-buttons {
  display: flex;
  gap: 1rem;
}

.sle_modal_age-accept, 
.sle_modal_age-decline {
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-family: 'Playfair Display SC', serif;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
}

.sle_modal_age-accept {
  background-color: #4caf50;
  color: white;
}

.sle_modal_age-accept:hover {
  background-color: #388e3c;
  transform: translateY(-2px);
}

.sle_modal_age-decline {
  background-color: #f44336;
  color: white;
}

.sle_modal_age-decline:hover {
  background-color: #d32f2f;
  transform: translateY(-2px);
}

.sle_notice_cookies-alert {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #333;
  color: white;
  padding: 1rem;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.sle_notice_cookies-alert.active {
  transform: translateY(0);
}

.sle_notice_cookies-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 1rem;
}

.sle_notice_cookies-text {
  margin: 0;
  flex: 1;
  min-width: 250px;
}

.sle_notice_cookies-link {
  color: #ff9800;
  text-decoration: none;
  transition: color 0.2s;
}

.sle_notice_cookies-link:hover {
  color: #ffc107;
}

.sle_notice_cookies-btn {
  background-color: #ff9800;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sle_notice_cookies-btn:hover {
  background-color: #fb8c00;
  transform: scale(1.05);
}

.sle_header_main-wrap {
  background: linear-gradient(to right, #6a11cb 0%, #2575fc 100%);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.sle_header_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.sle_header_branding {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sle_header_logo-img {
  height: 40px;
  width: auto;
  transition: transform 0.3s ease;
}

.sle_header_logo-img:hover {
  transform: rotate(10deg);
}

.sle_header_brand-title {
  font-family: 'Playfair Display SC', serif;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
}

.sle_header_menu-toggle {
  background: none;
  border: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
  display: none;
  position: relative;
  z-index: 101;
}

.sle_nav_primary-menu {
    transition: all 0.4s ease;
    position: relative;
}

.sle_nav_list-items li {
    white-space: nowrap;
  }
  
  .sle_nav_list-items li a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
  }
  
  .sle_nav_list-items li a:hover {
    color: #ffeb3b;
  }
  
  .sle_nav_list-items li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffeb3b;
    transition: width 0.3s ease;
}
  
.sle_nav_list-items li a:hover::after {
    width: 100%;
}
  
.sle_nav_burger {
    display: none;
    cursor: pointer;
    padding: 15px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 100;
}
  
.sle_nav_burger i {
    font-size: 2rem;
    color: white;
}
  
  
@media (min-width: 1025px) {
    .sle_nav_list-items {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        list-style: none;
        margin: 0;
        padding: 0;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .sle_nav_list-items {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      list-style: none;
      margin: 0;
      padding: 0;
    }
}

@media (max-width: 1024px) {
    .sle_nav_list-items {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    
    .sle_nav_list-items li {
      white-space: nowrap;
    }
    
    .sle_nav_list-items li a {
      color: white;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-weight: 500;
      padding: 0.5rem 0;
      position: relative;
      transition: color 0.3s ease;
    }
    
    .sle_nav_list-items li a:hover {
      color: #ffeb3b;
    }
    
    .sle_nav_list-items li a::after {
      content: '';
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background-color: #ffeb3b;
      transition: width 0.3s ease;
    }
    
    .sle_nav_list-items li a:hover::after {
      width: 100%;
    }
}

@media (max-width: 768px) {
    .sle_nav_burger {
        display: block;
    }
      
    .sle_nav_list-items {
        display: none;
        top: 100%;
        right: 0;
        background-color: #2c3e50;
        width: 250px;
        padding: 1rem;
        border-radius: 0 0 0 10px;
        box-shadow: -2px 5px 10px rgba(0,0,0,0.2);
        z-index: 99;
    }
      
    .sle_nav_list-items.active {
        display: block;
        position: absolute;
        width: 273px;
        top: 42px;
        right: -16px;
        background-color: #2c3e50;
        padding: 1rem;
        border-radius: 0 0 10px 10px;
        box-shadow: -2px 5px 10px rgba(0,0,0,0.2);
        z-index: 959;
    }
      
    .sle_nav_list-items li {
        margin-bottom: 1rem;
    }
      
    .sle_nav_list-items li:last-child {
        margin-bottom: 0;
    }
  
  .sle_modal_age-content {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .sle_header_brand-title {
    font-size: 1.2rem;
  }
  
  .sle_modal_age-buttons {
    flex-direction: column;
  }
  
  .sle_notice_cookies-wrap {
    flex-direction: column;
    text-align: center;
  }
  
  .sle_notice_cookies-btn {
    width: 100%;
  }
}

@media (max-width: 320px) {
  .sle_header_container {
    padding: 0 1rem;
  }
  
  .sle_modal_age-title {
    font-size: 1.5rem;
  }
}

.sle_hero_main-section {
    position: relative;
    height: 90vh;
    min-height: 600px;
    overflow: hidden;
    display: grid;
    place-items: center;
    isolation: isolate;
    margin-bottom: 4rem;
  }
  
  .sle_hero_background-image {
    position: absolute;
    inset: 0;
    background-image: url('../sle-imgs/sle-bground-images-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0.9;
    background-blend-mode: multiply;
    background-color: #3a1c71;
  }
  
  .sle_hero_content-block {
    text-align: center;
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
  }
  
  .sle_hero_main-title {
    font-family: 'Playfair Display SC', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s 0.3s forwards;
  }
  
  .sle_hero_description-text {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s 0.5s forwards;
  }
  
  .sle_hero_action-btn {
    display: inline-block;
    background: linear-gradient(45deg, #ff8a00, #e52e71);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Playfair Display SC', serif;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s 0.7s forwards;
  }
  
  .sle_hero_action-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  }
  
  .sle_about_company-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
  }
  
  .sle_about_flex-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    align-items: center;
  }
  
  .sle_about_images-grid {
    flex: 1 1 45%;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 1rem;
    height: auto;
  }
  
  .sle_about_image-item {
    width: 70%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  
  .sle_about_image-item:hover {
    transform: scale(1.03);
  }
  
  .sle_about_image-item:first-child {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }
  
  .sle_about_image-item:last-child {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
  }
  
  .sle_about_text-content {
    flex: 1 1 45%;
    min-width: 300px;
  }
  
  .sle_about_section-title {
    font-family: 'Playfair Display SC', serif;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }
  
  .sle_about_section-title i {
    color: #e74c3c;
    font-size: 2.2rem;
  }
  
  .sle_about_paragraph {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 1.5rem;
  }
  
  .sle_about_paragraph strong {
    color: #2c3e50;
    font-weight: 500;
  }
  
  .sle_about_features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
  }
  
  .sle_about_feature-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .sle_about_feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }
  
  .sle_about_feature-item i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1rem;
    display: inline-block;
  }
  
  .sle_about_feature-item p {
    font-weight: 500;
    color: #2c3e50;
    margin: 0;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @media (max-width: 1024px) {
    .sle_hero_main-section {
      height: 80vh;
    }
    
    .sle_about_flex-container {
      gap: 2rem;
    }
  }
  
  @media (max-width: 768px) {
    .sle_hero_main-section {
      height: 70vh;
      min-height: 500px;
    }
    
    .sle_about_flex-container {
      flex-direction: column;
    }
    
    .sle_about_images-grid {
      height: 400px;
      width: 100%;
    }
    
    .sle_about_text-content {
      width: 100%;
    }
  }
  
  @media (max-width: 480px) {
    .sle_hero_main-section {
      height: 60vh;
      min-height: 400px;
    }
    
    .sle_hero_content-block {
      padding: 1rem;
    }
    
    .sle_about_features-grid {
      grid-template-columns: 1fr;
    }

    .sle_about_image-item {
        width: 100%;
        height: 100%;
    }
    
    .sle_about_image-item:first-child,
    .sle_about_image-item:last-child {
      grid-column: 1 / 4;
    }
  }
  
  @media (max-width: 320px) {
    .sle_about_flex-container {
        padding: 0;
    } 
    .sle_about_section-title {
      flex-direction: column-reverse;
      font-size: 1.8rem;
    }
  }

.sle_features_highlights {
    padding: 5rem 2rem;
    background-color: #f5f7fa;
    position: relative;
  }
  
  .sle_features_header-block {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
  }
  
  .sle_features_main-title {
    font-family: 'Playfair Display SC', serif;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }
  
  .sle_features_main-title i {
    color: #e74c3c;
    font-size: 2.2rem;
  }
  
  .sle_features_subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin: 0;
  }
  
  .sle_features_cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .sle_features_card-item {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s forwards;
  }
  
  .sle_features_card-item:nth-child(1) { animation-delay: 0.1s; }
  .sle_features_card-item:nth-child(2) { animation-delay: 0.2s; }
  .sle_features_card-item:nth-child(3) { animation-delay: 0.3s; }
  .sle_features_card-item:nth-child(4) { animation-delay: 0.4s; }
  .sle_features_card-item:nth-child(5) { animation-delay: 0.5s; }
  .sle_features_card-item:nth-child(6) { animation-delay: 0.6s; }
  
  .sle_features_card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  }
  
  .sle_features_icon-wrap {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
  }
  
  .sle_features_icon-wrap i {
    font-size: 2rem;
    color: white;
  }
  
  .sle_features_card-title {
    font-family: 'Playfair Display SC', serif;
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
  }
  
  .sle_features_card-text {
    color: #34495e;
    line-height: 1.6;
    margin: 0;
  }
  
  .sle_features_show-more {
    display: block;
    margin: 3rem auto 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  
  .sle_features_show-more:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  }
  
  .sle_features_show-more i {
    transition: transform 0.3s ease;
  }
  
  .sle_features_show-more.active i {
    transform: rotate(180deg);
  }
  
  @media (max-width: 1024px) {
    .sle_features_cards-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .sle_features_cards-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 480px) {
    .sle_features_cards-grid {
      grid-template-columns: 1fr;
    }
    
    .sle_features_main-title {
        flex-direction: column-reverse;
      font-size: 2rem;
    }
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
}

.sle_hotels_showcase-section {
    padding: 5rem 1rem;
    background-color: #f8f9fa;
  }
  
  .sle_hotels_container-main {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
  }
  
  .sle_hotels_section-title {
    font-family: 'Playfair Display SC', serif;
    font-size: 2.5rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }
  
  .sle_hotels_section-title i {
    color: #e74c3c;
    font-size: 2.2rem;
  }
  
  .sle_hotels_flex-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .sle_hotels_card-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: none;
  }
  
  .sle_hotels_card-item:nth-child(1),
  .sle_hotels_card-item:nth-child(2) {
    display: block;
    animation: fadeInUp 0.6s ease-out forwards;
  }
  
  .sle_hotels_card-item:nth-child(1) { animation-delay: 0.1s; }
  .sle_hotels_card-item:nth-child(2) { animation-delay: 0.2s; }
  
  .sle_hotels_card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  }
  
  .sle_hotels_image-block {
    height: 250px;
    overflow: hidden;
  }
  
  .sle_hotels_image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .sle_hotels_card-item:hover .sle_hotels_image-block img {
    transform: scale(1.05);
  }
  
  .sle_hotels_info-content {
    min-height: 458px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
  }
  
  .sle_hotels_name-title {
    font-family: 'Playfair Display SC', serif;
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  
  .sle_hotels_location-text {
    color: #e74c3c;
    font-weight: 500;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .sle_hotels_description {
    color: #34495e;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  
  .sle_hotels_details-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 0;
    list-style: none;
  }
  
  .sle_hotels_details-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #7f8c8d;
  }
  
  .sle_hotels_details-list i {
    color: #3498db;
    font-size: 1.2rem;
  }
  
  .sle_hotels_actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .sle_hotels_book-btn {
    background: linear-gradient(45deg, #ff416c, #ff4b2b);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    flex: 1;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 65, 108, 0.3);
  }
  
  .sle_hotels_book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 65, 108, 0.4);
  }
  
  .sle_hotels_more-link {
    background: linear-gradient(45deg, #4776E6, #8E54E9);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    flex: 1;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(71, 118, 230, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }
  
  .sle_hotels_more-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(71, 118, 230, 0.4);
  }
  
  .sle_hotels_more-link i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
  }
  
  .sle_hotels_more-link:hover i {
    transform: translateX(3px);
  }
  
  .sle_hotels_show-more {
    display: block;
    margin: 3rem auto 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  
  .sle_hotels_show-more:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  }
  
  .sle_hotels_show-more i {
    transition: transform 0.3s ease;
  }
  
  .sle_hotels_show-more.active i {
    transform: rotate(180deg);
  }
  
  @media (max-width: 768px) {
    .sle_hotels_flex-grid {
      grid-template-columns: 1fr;
    }
    
    .sle_hotels_card-item:nth-child(1) {
      display: block;
      animation: fadeInUp 0.6s ease-out forwards;
    }
    
    .sle_hotels_card-item:nth-child(2) {
      display: none;
    }
    
    .sle_hotels_image-block {
      height: 200px;
    }
    
    .sle_hotels_actions {
      flex-direction: column;
    }
  }

  @media (max-width: 480px) {
    .sle_hotels_section-title {
        flex-direction: column-reverse;
    }
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
}

.sle_reviews_showcase {
    padding: 5rem 2rem;
    background: url('../sle-imgs/sle-bground-images-3.jpg') no-repeat;
    background-size: cover;
  }
  
  .sle_reviews_container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .sle_reviews_section-title {
    font-family: 'Playfair Display SC', serif;
    font-size: 2.5rem;
    color: #2c3e50;
    background-color: white;
    padding: 8px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }
  
  .sle_reviews_section-title i {
    color: #e74c3c;
    font-size: 2.2rem;
  }
  
  .sle_reviews_subtitle {
    text-align: center;
    color: #7f8c8d;
    background-color: white;
    padding: 8px;
    border-radius: 8px;
    font-size: 1.2rem;
    margin-bottom: 3rem;
  }
  
  .sle_reviews_stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem auto 3rem;
    max-width: 800px;
  }
  
  .sle_reviews_stat-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .sle_reviews_stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  }
  
  .sle_reviews_stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #6a11cb, #2575fc);
  }
  
  .sle_reviews_stat-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
  }
  
  .sle_reviews_stat-number {
    font-family: 'Playfair Display SC', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1;
    margin-bottom: 0.5rem;
    position: relative;
  }
  
  .sle_reviews_stat-plus {
    font-size: 2rem;
    color: #2c3e50;
    margin-left: -0.5rem;
  }
  
  .sle_reviews_stat-percent {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-left: -0.3rem;
  }
  
  .sle_reviews_stars-small {
    color: #f1c40f;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: flex;
    gap: 0.2rem;
  }
  
  .sle_reviews_stat-icon {
    font-size: 1.8rem;
    color: #3498db;
    margin-bottom: 0.5rem;
  }
  
  .sle_reviews_stat-label {
    font-size: 1rem;
    color: #7f8c8d;
    font-weight: 500;
  }
  
  .sle_reviews_cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .sle_reviews_card-block {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: none;
  }
  
  .sle_reviews_card-block:nth-child(1),
  .sle_reviews_card-block:nth-child(2),
  .sle_reviews_card-block:nth-child(3) {
    display: block;
    animation: fadeInUp 0.5s forwards;
  }
  
  .sle_reviews_card-block:nth-child(1) { animation-delay: 0.1s; }
  .sle_reviews_card-block:nth-child(2) { animation-delay: 0.2s; }
  .sle_reviews_card-block:nth-child(3) { animation-delay: 0.3s; }
  
  .sle_reviews_card-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  }
  
  .sle_reviews_header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  
  .sle_reviews_avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f1c40f;
  }
  
  .sle_reviews_author {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1rem;
  }
  
  .sle_reviews_stars {
    margin-left: auto;
    color: #f1c40f;
    font-size: 1.2rem;
  }
  
  .sle_reviews_text {
    color: #34495e;
    line-height: 1.6;
    margin: 0;
  }
  
  .sle_reviews_show-more {
    display: block;
    margin: 3rem auto 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  
  .sle_reviews_show-more:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  }
  
  .sle_reviews_show-more i {
    transition: transform 0.3s ease;
  }
  
  .sle_reviews_show-more.active i {
    transform: rotate(180deg);
  }
  
  @media (max-width: 768px) {
    .sle_reviews_stats-grid {
      grid-template-columns: 1fr;
      max-width: 400px;
    }
    
    .sle_reviews_cards-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .sle_reviews_header {
        flex-direction: column;        
        justify-content: center;
        align-content: center;
        flex-wrap: wrap;
    }
    
    .sle_reviews_card-block:nth-child(1),
    .sle_reviews_card-block:nth-child(2) {
      display: block;
      animation: fadeInUp 0.5s forwards;
    }
    
    .sle_reviews_card-block:nth-child(3) {
      display: none;
    }
    
    .sle_reviews_stat-item {
      padding: 1.2rem;
    }
    
    .sle_reviews_stat-number {
      font-size: 2.5rem;
    }
  }
  
  @media (max-width: 480px) {
    .sle_reviews_stats-grid {
      gap: 1rem;
    }
    
    .sle_reviews_cards-grid {
      grid-template-columns: 1fr;
    }

    .sle_reviews_header {
        flex-wrap: wrap;
    }
    
    .sle_reviews_card-block:nth-child(1) {
      display: block;
      animation: fadeInUp 0.5s forwards;
    }
    
    .sle_reviews_card-block:nth-child(2) {
      display: none;
    }
    
    .sle_reviews_stat-number {
      font-size: 2rem;
    }
    
    .sle_reviews_section-title {
        flex-direction: column-reverse;
      font-size: 2rem;
    }
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

.sle_contact_form-section {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
    position: relative;
}

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

.sle_contact_title-heading {
    font-family: 'Playfair Display SC', serif;
    font-size: 2.5rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.sle_contact_title-heading i {
    color: #e74c3c;
    font-size: 2.2rem;
}

.sle_contact_flex-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: space-between;
}

.sle_contact_form-fields {
    flex: 1 1 50%;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sle_form_group-input,
.sle_form_group-textarea {
    position: relative;
}

.sle_form_group-input input,
.sle_form_group-textarea textarea {
    width: 95%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: white;
}

.sle_form_group-textarea textarea {
    min-height: 150px;
    resize: vertical;
}

.sle_form_group-input input:focus,
.sle_form_group-textarea textarea:focus {
    border-color: #6a11cb;
    outline: none;
    box-shadow: 0 0 0 3px rgba(106, 17, 203, 0.1);
}

.sle_form_submit-btn {
    background: linear-gradient(45deg, #6a11cb, #2575fc);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.sle_form_submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.sle_form_submit-btn i {
    transition: transform 0.3s ease;
}

.sle_form_submit-btn:hover i {
    transform: translateX(5px);
}

.sle_contact_info-block {
    flex: 1 1 40%;
    min-width: 220px;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.sle_contact_info-title {
    font-family: 'Playfair Display SC', serif;
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.sle_contact_info-title i {
    color: #3498db;
    font-size: 1.8rem;
}

.sle_contact_info-text {
    color: #34495e;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    padding-left: 2.5rem;
}

.sle_contact_info-text a {
    color: #2575fc;
    text-decoration: none;
    transition: color 0.2s;
}

.sle_contact_info-text a:hover {
    color: #6a11cb;
    text-decoration: underline;
}

.sle_modal_thanks-message {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sle_modal_thanks-message.active {
    opacity: 1;
    visibility: visible;
}

.sle_modal_thanks-content {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    transform: translateY(-20px);
    transition: transform 0.4s ease;
    position: relative;
}

.sle_modal_thanks-message.active .sle_modal_thanks-content {
    transform: translateY(0);
}

.sle_modal_thanks-content i {
    font-size: 4rem;
    color: #4caf50;
    margin-bottom: 1.5rem;
}

.sle_modal_thanks-title {
    font-family: 'Playfair Display SC', serif;
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.sle_modal_thanks-text {
    color: #7f8c8d;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.sle_modal_thanks-close {
    background: linear-gradient(45deg, #6a11cb, #2575fc);
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sle_modal_thanks-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sle_modal_booking {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sle_modal_booking.active {
    opacity: 1;
    visibility: visible;
}

.sle_modal_booking-container {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(-20px);
    transition: transform 0.4s ease;
}

.sle_modal_booking.active .sle_modal_booking-container {
    transform: translateY(0);
}

.sle_booking_open-btn {
    display: block;
    margin: 2rem auto;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #6a11cb, #2575fc);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sle_booking_open-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.sle_modal_booking-title {
    font-family: 'Playfair Display SC', serif;
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

.sle_modal_booking-form form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sle_form_booking-group {
    position: relative;
}

.sle_form_booking-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.sle_form_booking-group input,
.sle_form_booking-group select {
    width: 95%;
    padding: 0.8rem 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.sle_form_booking-group input:focus,
.sle_form_booking-group select:focus {
    border-color: #6a11cb;
    outline: none;
    box-shadow: 0 0 0 3px rgba(106, 17, 203, 0.1);
}

.sle_form_booking-dates {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.sle_form_booking-date {
    position: relative;
}

.sle_form_booking-date label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.sle_form_booking-date input[type="date"] {
    width: 90%;
    padding: 0.8rem 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    color: #333;
    background-color: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.sle_form_booking-date input[type="date"]:focus {
    border-color: #6a11cb;
    outline: none;
    box-shadow: 0 0 0 3px rgba(106, 17, 203, 0.1);
}

.sle_form_booking-date input[type="date"]::-webkit-calendar-picker-indicator {
    background-image: url('data:image/svg+xml;utf8,&lt;svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%236a11cb" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"&gt;&lt;rect x="3" y="4" width="18" height="18" rx="2" ry="2"&gt;&lt;/rect&gt;&lt;line x1="16" y1="2" x2="16" y2="6"&gt;&lt;/line&gt;&lt;line x1="8" y1="2" x2="8" y2="6"&gt;&lt;/line&gt;&lt;line x1="3" y1="10" x2="21" y2="10"&gt;&lt;/line&gt;&lt;/svg&gt;');
    background-size: contain;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.sle_form_booking-date input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

@supports (-moz-appearance:none) {
    .sle_form_booking-date input[type="date"] {
        padding: 0.7rem 1rem;
    }
}

.sle_form_booking-date .sle_input-error {
    border-color: #e74c3c !important;
    animation: shake 0.5s;
}

.sle_modal_booking-submit {
    background: linear-gradient(45deg, #ff416c, #ff4b2b);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.sle_modal_booking-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.sle_validation_tooltip {
    position: absolute;
    background-color: #e74c3c;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.3s ease;
    max-width: 250px;
}

.sle_validation_tooltip::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 15px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #e74c3c;
}

.sle_input-error {
    border-color: #e74c3c !important;
    animation: shake 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-5px); }
    40%, 80% { transform: translateX(5px); }
}

@media (max-width: 768px) {
    .sle_contact_flex-wrapper {
        flex-direction: column;
    }
    
    .sle_contact_form-fields,
    .sle_contact_info-block {
        flex: 1 1 100%;
    }
    
    .sle_form_booking-dates {
        grid-template-columns: 1fr;
    }
    
    .sle_contact_title-heading {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .sle_contact_form-section {
        padding: 3rem 1rem;
    }
    
    .sle_contact_title-heading {
        flex-direction: column-reverse;
        font-size: 1.8rem;
    }

    .sle_contact_info-block {
        padding: 2rem 0.5rem;
    }
    .sle_contact_form-fields {
        width: 250px;
    }
    
    .sle_modal_thanks-content,
    .sle_modal_booking-container {
        padding: 1.5rem;
    }
    
    .sle_modal_thanks-title {
        font-size: 1.5rem;
    }
    
    .sle_modal_booking-title {
        font-size: 1.5rem;
    }

    .sle_form_booking-dates {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.sle_footer_main-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 3rem 2rem 1rem;
    border-top: 3px solid #ff2d75;
    position: relative;
    overflow: hidden;
}

.sle_footer_main-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: url('../sle-imgs/sle-hotel-image-1.jpg') no-repeat;
    background-size: cover;
    opacity: 0.15;
    z-index: 0;
}

.sle_footer_container-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    max-width: 1200px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
    gap: 2rem;
}

.sle_footer_brand-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.sle_footer_logo-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 5px rgba(255,45,117,0.5));
}

.sle_footer_brand-name {
    font-family: 'Playfair Display SC', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    background: linear-gradient(90deg, #ff2d75, #ff9a5a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sle_footer_links-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.sle_footer_column-item {
    display: flex;
    flex-direction: column;
}

.sle_footer_column-title {
    font-family: 'Playfair Display SC', serif;
    font-size: 1.3rem;
    color: #ff2d75;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.sle_footer_column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #ff2d75, transparent);
}

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

.sle_footer_links-list li {
    margin-bottom: 0.7rem;
    transition: transform 0.3s ease;
}

.sle_footer_links-list li:hover {
    transform: translateX(5px);
}

.sle_footer_links-list a {
    font-family: 'Noto Serif JP', serif;
    font-weight: 400;
    font-size: 1rem;
    color: #e2e2e2;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.sle_footer_links-list a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #ff2d75;
    transition: width 0.3s ease;
}

.sle_footer_links-list a:hover {
    color: #fff;
}

.sle_footer_links-list a:hover::before {
    width: 100%;
}

.sle_footer_copyright-block {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.sle_footer_copyright-text {
    font-family: 'Noto Serif JP', serif;
    font-weight: 300;
    font-size: 0.9rem;
    color: #a1a1a1;
    margin: 0;
}

@media (max-width: 1024px) {
    .sle_footer_container-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .sle_footer_brand-block {
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .sle_footer_main-section {
        padding: 2rem 1.5rem 1rem;
        text-align: center;
    }
    
    .sle_footer_links-columns {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .sle_footer_column-item {
        align-items: center;
    }
    
    .sle_footer_links-list {
        text-align: center;
    }
    
    .sle_footer_column-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .sle_footer_main-section {
        padding: 2rem 1rem 1rem;
    }
    
    .sle_footer_brand-name {
        font-size: 1.5rem;
    }
}

@media (max-width: 320px) {
    .sle_footer_column-title {
        font-size: 1.1rem;
    }
    
    .sle_footer_links-list a {
        font-size: 0.9rem;
    }
}

.sle_booking_section {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
    font-family: 'Noto Serif JP', serif;
}

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

.sle_booking_title {
    font-family: 'Playfair Display SC', serif;
    font-size: 2.2rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.sle_booking_title i {
    color: #e74c3c;
    font-size: 2.2rem;
}

.sle_booking_content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
}

.sle_booking_form-block {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.sle_booking_form-title {
    font-family: 'Playfair Display SC', serif;
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

.sle_booking_form-group {
    margin-bottom: 1.2rem;
}

.sle_booking_form-group input,
.sle_booking_form-group select {
    width: 95%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Noto Serif JP', serif;
    font-size: 1rem;
}

.sle_booking_dates {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.sle_booking_submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(45deg, #6a11cb, #2575fc);
    color: white;
    border: none;
    border-radius: 8px;
    font-family: 'Playfair Display SC', serif;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.sle_booking_submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.sle_booking_info-title {
    font-family: 'Playfair Display SC', serif;
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.sle_booking_info-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 2rem;
}

.sle_booking_features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.sle_booking_feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.sle_booking_feature i {
    font-size: 1.5rem;
    color: #6a11cb;
}

.sle_booking_sample-title {
    font-family: 'Playfair Display SC', serif;
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.sle_booking_sample-day {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.sle_booking_sample-day i {
    font-size: 1.3rem;
    color: #2575fc;
}

.sle_contact_section {
    padding: 3rem 2rem;
    background-color: #2c3e50;
    color: white;
    text-align: center;
}

.sle_contact_container {
    max-width: 800px;
    margin: 0 auto;
}

.sle_contact_title {
    font-family: 'Playfair Display SC', serif;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.sle_contact_form {
    display: none;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 1.5rem;
}

.sle_contact_form-group {
    margin-bottom: 1.2rem;
}

.sle_contact_form-group input,
.sle_contact_form-group textarea {
    width: 90%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Noto Serif JP', serif;
}

.sle_contact_submit-btn {
    padding: 1rem 2rem;
    background: #ff416c;
    color: white;
    border: none;
    border-radius: 8px;
    font-family: 'Playfair Display SC', serif;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.sle_contact_submit-btn:hover {
    background: #ff4b2b;
}

.sle_booking_dates {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.sle_booking_date-group {
    position: relative;
}

.sle_booking_date-group input[type="date"] {
    width: 90%;
    padding: 0.8rem 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Noto Serif JP', serif;
    color: #333;
    background-color: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.sle_booking_date-group input[type="date"]:focus {
    border-color: #6a11cb;
    outline: none;
    box-shadow: 0 0 0 3px rgba(106, 17, 203, 0.1);
}

.sle_booking_date-group input[type="date"]::-webkit-calendar-picker-indicator {
    background-image: url('data:image/svg+xml;utf8,&lt;svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%236a11cb" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"&gt;&lt;rect x="3" y="4" width="18" height="18" rx="2" ry="2"&gt;&lt;/rect&gt;&lt;line x1="16" y1="2" x2="16" y2="6"&gt;&lt;/line&gt;&lt;line x1="8" y1="2" x2="8" y2="6"&gt;&lt;/line&gt;&lt;line x1="3" y1="10" x2="21" y2="10"&gt;&lt;/line&gt;&lt;/svg&gt;');
    background-size: contain;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.sle_booking_date-group input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

@supports (-moz-appearance:none) {
    .sle_booking_date-group input[type="date"] {
        padding: 0.7rem 1rem;
    }
}

@media (max-width: 1024px) {
    .sle_booking_content {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .sle_booking_content {
        grid-template-columns: 1fr;
    }
    
    .sle_booking_title {
        font-size: 1.8rem;
    }
    
    .sle_booking_info-title,
    .sle_contact_title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .sle_booking_section,
    .sle_contact_section {
        padding: 2rem 1rem;
    }
    
    .sle_booking_dates {
        grid-template-columns: 1fr;
    }
    
    .sle_booking_title {
        font-size: 1.6rem;
        flex-direction: column;
    }

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

@media (max-width: 320px) {
    .sle_booking_form-block {
        padding: 1.5rem;
    }

    .sle_booking_form-group input,
    .sle_booking_form-group select {
        width: 90%;
    }

    .sle_booking_title {
        flex-direction: column-reverse;
        font-size: 1.4rem;
    }
    
    .sle_contact_title {
        font-size: 1.3rem;
    }
}

.sle_privacy-page-main {
    background-color: #f8f9fa;
    padding: 2rem 0;
    font-family: 'Noto Serif JP', serif;
    color: #333;
    line-height: 1.6;
}

.sle_privacy-page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.sle_privacy-page-title {
    font-family: 'Playfair Display SC', serif;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sle_privacy-page-update {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 3rem;
    font-style: italic;
}

.sle_privacy-page-section {
    margin-bottom: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.sle_privacy-page-heading {
    font-family: 'Playfair Display SC', serif;
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sle_privacy-page-text {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.sle_privacy-page-list {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.sle_privacy-page-item {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.sle_privacy-page-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    background-color: #11c5cb;
    border-radius: 50%;
}

.sle_privacy-page-contact {
    font-size: 1.1rem;
    margin-top: 1rem;
}

.sle_privacy-page-link {
    color: #ea25fc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sle_privacy-page-link:hover {
    color: #6a11cb;
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .sle_privacy-page-title {
        font-size: 2.2rem;
    }
    
    .sle_privacy-page-heading {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .sle_privacy-page-container {
        padding: 0 1.5rem;
    }
    
    .sle_privacy-page-title {
        font-size: 2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .sle_privacy-page-section {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .sle_privacy-page-main {
        padding: 1.5rem 0;
    }
    
    .sle_privacy-page-container {
        padding: 0 1rem;
    }
    
    .sle_privacy-page-title {
        font-size: 1.8rem;
    }
    
    .sle_privacy-page-heading {
        font-size: 1.4rem;
    }
    
    .sle_privacy-page-text {
        font-size: 1rem;
    }
}

@media (max-width: 320px) {
    .sle_privacy-page-title {
        font-size: 1.2rem;
    }
    
    .sle_privacy-page-heading {
        font-size: 1.3rem;
    }
    
    .sle_privacy-page-item {
        font-size: 0.95rem;
    }
}

.sle_terms-page-main {
    background-color: #f8f9fa;
    padding: 2rem 0;
    font-family: 'Noto Serif JP', serif;
    color: #333;
    line-height: 1.6;
}

.sle_terms-page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.sle_terms-page-title {
    font-family: 'Playfair Display SC', serif;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sle_terms-page-version {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 3rem;
    font-style: italic;
}

.sle_terms-page-section {
    margin-bottom: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.sle_terms-page-heading {
    font-family: 'Playfair Display SC', serif;
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sle_terms-page-text {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.sle_terms-page-list {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.sle_terms-page-item {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.sle_terms-page-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    background-color: #6a11cb;
    border-radius: 50%;
}

.sle_terms-page-contact {
    font-size: 1.1rem;
    margin-top: 1rem;
}

.sle_terms-page-link {
    color: #2575fc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sle_terms-page-link:hover {
    color: #6a11cb;
    text-decoration: underline;
}

.sle_terms-page-acceptance {
    font-weight: 500;
    font-style: italic;
    padding: 1.5rem;
    background-color: #f0f2f5;
    border-left: 4px solid #6a11cb;
    margin-top: 2rem;
}

@media (max-width: 1024px) {
    .sle_terms-page-title {
        font-size: 2.2rem;
    }
    
    .sle_terms-page-heading {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .sle_terms-page-container {
        padding: 0 1.5rem;
    }
    
    .sle_terms-page-title {
        font-size: 2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .sle_terms-page-section {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .sle_terms-page-main {
        padding: 1.5rem 0;
    }
    
    .sle_terms-page-container {
        padding: 0 1rem;
    }
    
    .sle_terms-page-title {
        font-size: 1.8rem;
    }
    
    .sle_terms-page-heading {
        font-size: 1.4rem;
    }
    
    .sle_terms-page-text {
        font-size: 1rem;
    }
}

@media (max-width: 320px) {
    .sle_terms-page-title {
        font-size: 1.6rem;
    }
    
    .sle_terms-page-heading {
        font-size: 1rem;
    }
    
    .sle_terms-page-item {
        font-size: 0.95rem;
    }
}</pre></body></html>