/* =====================================================
   LAHANA RESORT PHU QUOC - PREMIUM CSS STYLES
   Inspired by modern resort design with luxury aesthetics
   Enhanced for exceptional user experience
   ===================================================== */

/* CSS Reset & Premium Variables - Lahana Resort Style */
:root {
  --primary-color: #1a5d2e;
  /* Deep Forest Green - Lahana Brand */
  --secondary-color: #2d8f4a;
  /* Rich Green */
  --accent-color: #c7a876;
  /* Golden Bronze */
  --text-dark: #1b2e1f;
  --text-light: #5a6b5d;
  --text-white: #ffffff;
  --text-muted: #8a9a8d;
  --background-dark: #162a1c;
  --background-light: #f8faf9;
  --background-cream: #fefdfb;
  --gray-light: #e9f2ea;
  --gray-border: #d4e2d6;
  --shadow: 0 8px 30px rgba(26, 93, 46, 0.12);
  --shadow-light: 0 4px 15px rgba(26, 93, 46, 0.08);
  --shadow-hover: 0 12px 40px rgba(26, 93, 46, 0.18);
  --gradient-primary: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  --gradient-overlay: linear-gradient(
    135deg,
    rgba(26, 93, 46, 0.8) 0%,
    rgba(45, 143, 74, 0.6) 100%
  );
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.2s ease;
  --transition-smooth: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  --border-radius: 16px;
  --border-radius-small: 8px;
  --border-radius-large: 24px;
  --h-desktop: 85px;
  --h-mobile: 70px;
  --z-index: 1000;
  --font-main: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont,
    'Segoe UI', system-ui, sans-serif;
  --font-display: 'Playfair Display', 'Crimson Text', Georgia, serif;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
}

* {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

/* Body & Base Styles - Premium Lahana Resort */
body {
  font-family: var(--font-main);
  font-weight: var(--font-weight-normal);
  line-height: 1.75;
  color: var(--text-dark);
  margin: 0;
  padding: 0;
  font-size: 17px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background-color: var(--background-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

/* Enhanced Typography System */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: var(--font-weight-medium);
  line-height: 1.3;
  margin-bottom: 1.2rem;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: var(--font-weight-light);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: var(--font-weight-medium);
  line-height: 1.2;
}

h3 {
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: var(--font-weight-medium);
}

h4 {
  font-size: clamp(1.25rem, 3vw, 1.9rem);
  font-weight: var(--font-weight-medium);
}

h5 {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: var(--font-weight-semibold);
}

h6 {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

p {
  margin-bottom: 1.6rem;
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.8;
  color: var(--text-light);
}

.lead {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  font-weight: var(--font-weight-light);
  line-height: 1.7;
  color: var(--text-dark);
}

img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius-small);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
}

a:hover {
  color: var(--secondary-color);
  text-decoration: none;
}

a:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

/* Container & Layout - Green Bay Style */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

.container-fluid {
  width: 100%;
  max-width: 100%;
  padding: 0;
  box-sizing: border-box;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col {
  padding: 0 15px;
  flex: 1;
}

/* Full-width sections - Fixed to prevent horizontal overflow */
.section-fullwidth {
  width: 100%;
  max-width: 100%;
  position: relative;
  left: 0;
  right: 0;
  margin-left: 0;
  margin-right: 0;
  overflow-x: hidden;
  box-sizing: border-box;
}

/* Premium Hero Section - Lahana Resort */
.hero-section,
#slider {
  min-height: 100vh;
  background: var(--gradient-overlay);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}

.hero-section::before,
#slider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.02"/><circle cx="50" cy="50" r="0.5" fill="%23c7a876" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.6;
  z-index: 1;
}

.hero-content,
#slider .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 30px;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: var(--font-weight-light);
  margin-bottom: 2rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  margin-bottom: 3rem;
  opacity: 0.95;
  font-weight: var(--font-weight-light);
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== PREMIUM HEADER & NAVIGATION ===== */

/* Reset menu lists */
#menu,
#menu ul,
nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#menu a,
nav a {
  text-decoration: none;
  transition: var(--transition);
}

/* Desktop Menu Styles - Premium Lahana Transparent Overlay */
@media (min-width: 992px) {
  body {
    padding-top: 0;
    /* Remove padding for overlay header */
  }

  .wap_menu .menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-index);
    background: transparent;
    /* Completely transparent initially */
    backdrop-filter: none;
    transition: var(--transition-smooth);
    border: none;
    height: var(--h-desktop);
    display: flex;
    align-items: center;
    padding: 25px 0;
  }

  body.scrolled .wap_menu .menu {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-light);
    border-bottom: 1px solid var(--gray-border);
    padding: 15px 0;
  }

  .wap_menu .menu .container {
    display: grid !important;
    grid-template-columns: 180px 1fr 280px;
    align-items: center;
    gap: 30px;
    width: 100%;
    min-height: 65px;
    padding: 0 30px;
    visibility: visible !important;
    opacity: 1 !important;
    max-width: 1400px;
    margin: 0 auto;
  }

  /* Left side - Logo */
  .wap_menu .menu .logo {
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    grid-column: 1;
    visibility: visible !important;
    opacity: 1 !important;
  }

  /* Center - Main Menu */
  .wap_menu .menu #menu {
    display: flex !important;
    justify-content: center;
    grid-column: 2;
    visibility: visible !important;
    opacity: 1 !important;
  }

  /* Right side - Language & Book Now */
  .wap_menu .menu .right-side {
    display: flex !important;
    align-items: center;
    gap: 24px;
    justify-content: flex-end;
    grid-column: 3;
    height: 100%;
  }

  .wap_menu .menu .logo img {
    height: 48px;
    width: auto;
    transition: var(--transition);
    /* Keep original logo colors - no filter */
  }

  body.scrolled .wap_menu .menu .logo img {
    height: 42px;
  }

  .wap_menu .menu #menu > ul {
    display: flex !important;
    align-items: center;
    gap: 35px;
    margin: 0;
    padding: 0;
    list-style: none;
    justify-content: center;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow: hidden;
  }

  .wap_menu .menu #menu > ul > li {
    position: relative;
  }

  .wap_menu .menu #menu > ul > li > a {
    display: block;
    padding: 32px 0;
    font-family: var(--font-main);
    font-weight: var(--font-weight-medium);
    color: var(--text-white);
    font-size: 15px;
    letter-spacing: 0.3px;
    text-transform: capitalize;
    transition: var(--transition);
    position: relative;
  }

  .wap_menu .menu #menu > ul > li > a:hover {
    color: rgba(255, 255, 255, 0.8);
    transform: translateY(-1px);
  }

  .wap_menu .menu #menu > ul > li > a::after {
    content: '';
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
    border-radius: 1px;
  }

  .wap_menu .menu #menu > ul > li > a:hover::after {
    width: 35px;
  }

  /* Scrolled state - menu becomes dark with light text */
  body.scrolled .wap_menu .menu #menu > ul > li > a {
    color: var(--text-dark);
    padding: 24px 0;
  }

  body.scrolled .wap_menu .menu #menu > ul > li > a:hover {
    color: var(--primary-color);
  }

  body.scrolled .wap_menu .menu #menu > ul > li > a::after {
    background: var(--primary-color);
    bottom: 20px;
  }

  /* Premium Dropdown menu */
  .wap_menu .menu #menu li ul {
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 240px;
    background: white;
    display: none;
    box-shadow: var(--shadow);
    border-radius: var(--border-radius);
    border-top: 3px solid var(--primary-color);
    padding: 15px 0;
    border: 1px solid var(--gray-border);
  }

  .wap_menu .menu #menu li ul li {
    margin: 0;
  }

  .wap_menu .menu #menu li ul a {
    display: block;
    padding: 14px 24px;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: var(--font-weight-normal);
    transition: var(--transition);
    border-bottom: 1px solid transparent;
  }

  .wap_menu .menu #menu li ul a:hover {
    background: var(--gray-light);
    color: var(--primary-color);
    padding-left: 30px;
    border-bottom-color: var(--gray-border);
    transform: translateX(2px);
  }

  /* Premium Booking Button - Lahana Resort Style */
  .wap_menu .menu .menu_booking a {
    background: var(--gradient-primary);
    color: var(--text-white) !important;
    border: 2px solid transparent;
    padding: 14px 28px;
    border-radius: 35px;
    font-family: var(--font-main);
    font-weight: var(--font-weight-semibold);
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.8px;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    min-width: 140px;
    text-align: center;
    display: inline-block;
    box-shadow: var(--shadow-light);
  }

  .wap_menu .menu .menu_booking a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-color);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
  }

  .wap_menu .menu .menu_booking a:hover {
    color: var(--text-white) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
  }

  .wap_menu .menu .menu_booking a:hover::before {
    opacity: 1;
  }

  /* Scrolled state for booking button */
  body.scrolled .wap_menu .menu .menu_booking a {
    background: var(--primary-color);
    color: var(--text-white) !important;
    border-color: var(--primary-color);
  }

  body.scrolled .wap_menu .menu .menu_booking a:hover {
    background: var(--accent-color);
    color: var(--text-white) !important;
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
  }

  /* Premium Language Selector */
  .wap_menu .menu .language-selector {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--text-white);
    padding: 12px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-main);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 70px;
    text-align: center;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    backdrop-filter: blur(10px);
  }

  .wap_menu .menu .language-selector:hover,
  .wap_menu .menu .language-selector:focus {
    border-color: var(--accent-color);
    background: rgba(199, 168, 118, 0.2);
    box-shadow: 0 0 20px rgba(199, 168, 118, 0.3);
    transform: translateY(-1px);
  }

  body.scrolled .wap_menu .menu .language-selector {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background: rgba(26, 93, 46, 0.05);
  }

  body.scrolled .wap_menu .menu .language-selector:hover,
  body.scrolled .wap_menu .menu .language-selector:focus {
    background: rgba(26, 93, 46, 0.1);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-light);
    transform: translateY(-1px);
  }

  /* Hide desktop header on desktop */
  .header {
    display: none !important;
  }

  /* Hide duplicate elements outside of correct containers */
  .wap_menu
    .menu
    .container
    > .language-selector:not(.right-side .language-selector),
  .wap_menu .menu .container > .menu_booking:not(.right-side .menu_booking) {
    display: none !important;
  }

  /* Hide duplicate logos - only allow first logo in container */
  .wap_menu .menu .container .logo:not(:first-of-type) {
    display: none !important;
  }

  /* Hide any logos outside the main container structure */
  .wap_menu .menu .logo:not(.container .logo) {
    display: none !important;
  }

  /* Ensure elements in correct containers are visible */
  .wap_menu .menu .container > .logo:first-of-type {
    display: flex !important;
  }

  .wap_menu .menu .right-side .language-selector,
  .wap_menu .menu .right-side .menu_booking {
    display: block !important;
  }

  /* Responsive adjustments */
  @media (max-width: 1200px) {
    .wap_menu .menu #menu {
      margin: 0 180px;
    }
  }

  @media (max-width: 1024px) {
    .wap_menu .menu #menu {
      margin: 0 150px;
    }

    .wap_menu .menu .left-side {
      gap: 10px;
    }
  }
}

/* Premium Mobile Menu - Lahana Resort */
@media (max-width: 991px) {
  body {
    padding-top: 0;
    /* Remove padding for overlay mobile header */
  }

  .wap_menu .menu {
    position: static !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  /* Hide desktop menu container on mobile */
  .wap_menu .menu .container {
    display: none !important;
  }

  /* Premium Mobile header - transparent overlay */
  .header {
    display: block !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--h-mobile);
    z-index: var(--z-index);
    background: transparent;
    backdrop-filter: none;
    transition: var(--transition-smooth);
    border: none;
  }

  body.scrolled .header {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-light);
    border-bottom: 1px solid var(--gray-border);
  }

  /* Hero adjustments for mobile */
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 25px;
  }

  .header .logo {
    order: 2;
    /* Logo on right */
  }

  .header .hien_menu {
    order: 1;
    /* Menu button on left */
  }

  .header .logo img {
    height: 45px;
    width: auto;
    transition: var(--transition);
    /* Keep original logo colors - no filter initially */
  }

  body.scrolled .header .logo img {
    height: 40px;
    opacity: 1;
  }

  .header .hien_menu {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 22px;
    color: var(--text-white);
    cursor: pointer;
    padding: 12px 14px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
  }

  .header .hien_menu:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
  }

  body.scrolled .header .hien_menu {
    color: var(--text-dark);
    background: rgba(26, 93, 46, 0.1);
    border-color: var(--primary-color);
  }

  body.scrolled .header .hien_menu:hover {
    color: var(--primary-color);
    background: rgba(26, 93, 46, 0.15);
    transform: translateY(-1px);
  }
}

/* Premium Mobile Drawer - Lahana Resort */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 85%;
  max-width: 380px;
  background: var(--gradient-primary);
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: calc(var(--z-index) + 1);
  padding: 40px 30px;
  overflow-y: auto;
  box-shadow: 15px 0 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px);
}

.mobile-drawer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="mobile-grain" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23mobile-grain)"/></svg>');
  opacity: 0.5;
}

.mobile-drawer.open {
  transform: translateX(0);
}

.mobile-drawer .logo {
  display: block;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 2;
}

.mobile-drawer .logo img {
  height: 45px;
  width: auto;
}

.mobile-drawer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  z-index: 2;
}

.mobile-drawer li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0;
}

.mobile-drawer li:last-child {
  border-bottom: none;
}

.mobile-drawer a {
  display: block;
  padding: 20px 0;
  color: var(--text-white);
  font-weight: var(--font-weight-medium);
  font-size: 17px;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  transition: var(--transition);
  position: relative;
  font-family: var(--font-main);
}

.mobile-drawer a::before {
  content: '';
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: var(--transition);
}

.mobile-drawer a:hover {
  color: var(--accent-color);
  padding-left: 20px;
  transform: translateX(5px);
}

.mobile-drawer a:hover::before {
  width: 15px;
}

.mobile-drawer ul ul {
  padding-left: 25px;
  margin-top: 8px;
}

.mobile-drawer ul ul a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  padding: 12px 0;
  font-weight: var(--font-weight-normal);
}

.mobile-drawer ul ul a:hover {
  color: var(--accent-color);
}

/* Premium Backdrop */
.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(22, 42, 28, 0.8);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: var(--z-index);
}

.backdrop.show {
  opacity: 1;
  visibility: visible;
}

/* Prevent scroll when menu is open */
body.noscroll {
  overflow: hidden;
}

/* ===== CONTENT STYLES ===== */

/* Main content wrapper */
.main-content {
  min-height: 100vh;
  position: relative;
}

/* Slider & Banner */
.slider-container {
  position: relative;
  height: 70vh;
  min-height: 400px;
  overflow: hidden;
}

.slider-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Premium Section Styling */
.section {
  padding: 120px 0;
  position: relative;
}

.section-light {
  background: var(--background-cream);
}

.section-alt {
  background: var(--background-light);
}

.section-dark {
  background: var(--gradient-primary);
  color: var(--text-white);
  position: relative;
}

.section-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dark-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23dark-grain)"/></svg>');
  opacity: 0.3;
}

.section-title {
  text-align: center;
  margin-bottom: 100px;
  position: relative;
}

.section-title h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  color: inherit;
  margin-bottom: 25px;
  font-weight: var(--font-weight-light);
  position: relative;
  display: inline-block;
  line-height: 1.2;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

.section-title p {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  opacity: 0.85;
  max-width: 700px;
  margin: 0 auto;
  font-weight: var(--font-weight-light);
  line-height: 1.7;
}

/* Premium Cards & Components */
.card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition-smooth);
  margin-bottom: 40px;
  border: 1px solid var(--gray-border);
  position: relative;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.card:hover::before {
  opacity: 0.02;
}

.card-img {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.card-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.card:hover .card-img img {
  transform: scale(1.08);
}

.card-body {
  padding: 35px 30px;
  position: relative;
  z-index: 2;
}

.card-title {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  margin-bottom: 18px;
  color: var(--text-dark);
  font-family: var(--font-display);
  font-weight: var(--font-weight-medium);
  line-height: 1.3;
}

.card-text {
  color: var(--text-light);
  line-height: 1.7;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
}

/* Premium Button System - Lahana Resort */
.btn {
  display: inline-block;
  padding: 18px 45px;
  border-radius: 35px;
  text-align: center;
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 14px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  font-family: var(--font-main);
  min-width: 160px;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-white);
  box-shadow: var(--shadow-light);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent-color);
  transition: var(--transition-smooth);
  z-index: -1;
}

.btn-primary:hover {
  color: var(--text-white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.btn-primary:hover::before {
  left: 0;
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  transition: var(--transition-smooth);
  z-index: -1;
}

.btn-outline:hover {
  color: var(--text-white);
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.btn-outline:hover::before {
  left: 0;
}

.btn-light {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent-color);
  transition: var(--transition-smooth);
  z-index: -1;
}

.btn-light:hover {
  color: var(--text-white);
  border-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(199, 168, 118, 0.3);
}

.btn-light:hover::before {
  left: 0;
}

.btn-ghost {
  background: transparent;
  color: var(--text-white);
  border: 2px solid var(--text-white);
  padding: 15px 35px;
  font-weight: var(--font-weight-medium);
}

.btn-ghost:hover {
  background: var(--text-white);
  color: var(--text-dark);
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer {
  background: #2c2c2c;
  color: white;
  padding: 50px 0 20px;
  margin-top: 60px;
}

.footer h4 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer p,
.footer a {
  color: #cccccc;
  line-height: 1.8;
}

.footer a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 20px;
  margin-top: 30px;
  text-align: center;
  color: #999;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Tablet Landscape & Desktop */
@media (min-width: 1024px) and (max-width: 1400px) {
  .wap_menu .menu .container {
    grid-template-columns: 160px 1fr 260px;
    gap: 25px;
    padding: 0 25px;
  }

  .wap_menu .menu #menu > ul {
    gap: 30px;
  }
}

/* Tablet Portrait */
@media (max-width: 1023px) {
  .section {
    padding: 80px 0;
  }

  .section-title {
    margin-bottom: 60px;
  }

  .container {
    padding: 0 25px;
  }
}

/* Mobile Landscape & Large Mobile */
@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

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

  .section-title h2 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .hero-section,
  #slider {
    min-height: 80vh;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3.5rem);
    margin-bottom: 1.5rem;
  }

  .hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.3rem);
    margin-bottom: 2.5rem;
  }

  .card {
    margin-bottom: 30px;
  }

  .card-body {
    padding: 25px 20px;
  }

  .card-img img {
    height: 220px;
  }

  .btn {
    padding: 15px 35px;
    font-size: 13px;
    min-width: 140px;
  }

  .container {
    padding: 0 20px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .section {
    padding: 50px 0;
  }

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

  .hero-section,
  #slider {
    min-height: 70vh;
  }

  .card-body {
    padding: 20px 15px;
  }

  .card-img img {
    height: 200px;
  }

  .btn {
    padding: 12px 25px;
    font-size: 12px;
    min-width: 120px;
  }

  .container {
    padding: 0 15px;
  }

  .mobile-drawer {
    width: 90%;
    max-width: 340px;
  }

  .header .container {
    padding: 0 20px;
  }
}

/* Extra Small Mobile */
@media (max-width: 375px) {
  .section {
    padding: 40px 0;
  }

  .container {
    padding: 0 15px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 11px;
    min-width: 100px;
  }
}

/* Desktop Adjustments */
@media (min-width: 1400px) {
  .wap_menu .menu .container {
    padding: 0 40px;
  }

  .container {
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
  .wap_menu .menu .container {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto auto;
    text-align: center;
    gap: 10px;
    padding: 10px;
    min-height: 50px;
    /* Giảm chiều cao trên mobile */
  }

  .wap_menu .menu .logo {
    grid-row: 1;
    justify-content: center !important;
  }

  .wap_menu .menu #menu {
    grid-row: 2;
  }

  .wap_menu .menu .right-side {
    grid-row: 3;
    justify-content: center !important;
  }

  .wap_menu .menu #menu > ul {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .container {
    padding: 0 15px;
    width: 100%;
    max-width: 100%;
  }

  .section {
    padding: 40px 0;
    width: 100%;
    max-width: 100%;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .card-body {
    padding: 15px;
  }

  .mobile-drawer {
    width: 90%;
    max-width: 320px;
  }

  /* Fix for any sliders or wide content on mobile */
  /* .chay_i,
  .hinhanh_box,
  .box_danhmucsp_c2_list {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
  } */
}

/* ===== OVERFLOW FIX & LAYOUT STABILITY ===== */

/* Prevent horizontal overflow on all major layout elements */
html,
body,
.wap_menu,
.header,
.main-content,
.footer,
.hero-section,
.section,
.slider-container,
.row,
.col {
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

/* Fix for any elements that might extend beyond viewport */
* {
  max-width: 100%;
  box-sizing: border-box;
}

/* Ensure images don't cause horizontal overflow */
img,
video,
iframe {
  max-width: 100%;
  height: auto;
  box-sizing: border-box;
}

/* Fix for slider and gallery containers */
/* .chay_i,
.hinhanh_box,
.box_danhmucsp_c2_list,
.chay_about_inside,
.chay_spa_box,
.chay_spa,
.chay_gym,
.chay_spa_add,
.chay_trainghiem,
.experiences_hinhanh,
.room_tour,
.chay_food,
.chay_award {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
} */

/* ===== UTILITY CLASSES ===== */

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

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

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

.mb-0 {
  margin-bottom: 0;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mt-0 {
  margin-top: 0;
}

.mt-15 {
  margin-top: 15px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-50 {
  margin-top: 50px;
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-inline {
  display: inline;
}

.d-inline-block {
  display: inline-block;
}

.d-flex {
  display: flex;
}

/* ===== ANIMATIONS ===== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes floatAnimation {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Animation Classes */
.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

.fade-in-left {
  animation: fadeInLeft 0.8s ease-out;
}

.fade-in-right {
  animation: fadeInRight 0.8s ease-out;
}

.scale-in {
  animation: scaleIn 0.6s ease-out;
}

.float {
  animation: floatAnimation 3s ease-in-out infinite;
}

/* Staggered animations */
.fade-in-up.delay-1 {
  animation-delay: 0.1s;
}

.fade-in-up.delay-2 {
  animation-delay: 0.2s;
}

.fade-in-up.delay-3 {
  animation-delay: 0.3s;
}

.fade-in-up.delay-4 {
  animation-delay: 0.4s;
}

/* Parallax effect */
.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Hover effects */
.hover-scale {
  transition: var(--transition);
}

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

.hover-lift {
  transition: var(--transition);
}

.hover-lift:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(45, 80, 22, 0.2);
}

.slick-slider {
  padding-left: 0;
}

/* ===== JAVASCRIPT ENHANCEMENT STYLES ===== */

/* Scroll behavior enhancement */
html {
  scroll-padding-top: 100px;
}

/* Loading animation */
.loading {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.loading.loaded {
  opacity: 1;
  transform: translateY(0);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--gray-light);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}

/* ===== PREMIUM BOOKING FORM STYLES ===== */

/* Responsive Booking Form */
@media (max-width: 1024px) {
  .pickdate_wp {
    flex-wrap: wrap;
  }

  .pickdate {
    flex: 100%;
    border-bottom: 1px solid var(--gray-border);
  }

  .pick_promo {
    flex: 60%;
    border-right: 1px solid var(--gray-border);
  }

  .pickdate-btn {
    flex: 40%;
    min-width: auto;
  }

  .pickdate-item,
  .pick_promo {
    border-right: 1px solid var(--gray-border);
  }

  .pickdate-item:last-child {
    border-right: none;
  }
}

@media (max-width: 768px) {
  .booking_index {
    margin-top: -80px;
  }

  .booking_wp {
    padding: 30px 20px;
    margin: 0 20px;
    border-radius: var(--border-radius-small);
  }

  .pickdate_wp {
    flex-direction: column;
  }

  .pickdate {
    flex-direction: column;
    border-bottom: 1px solid var(--gray-border);
    border-right: none;
  }

  .pickdate-item,
  .pick_promo {
    border-right: none;
    border-bottom: 1px solid var(--gray-border);
  }

  .pickdate-item:last-child,
  .pick_promo {
    border-bottom: none;
  }

  .pickdate-btn {
    border-right: none;
    min-width: auto;
  }

  .pickdate-item input,
  .pick_promo input {
    padding: 20px 45px 20px 18px;
    font-size: 14px;
    height: 60px;
  }

  .pickdate-btn button {
    height: 60px;
    font-size: 14px;
  }

  /* Remove separators on mobile */
  .pickdate-item + .pickdate-item::before,
  .pick_promo::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .booking_index {
    margin-top: -60px;
  }

  .booking_wp {
    padding: 25px 15px;
    margin: 0 15px;
  }

  .pickdate-item input,
  .pick_promo input {
    padding: 18px 40px 18px 16px;
    height: 55px;
  }

  .pickdate-btn button {
    height: 55px;
  }
}

/* Datepicker Styling */
.ui-datepicker {
  background: white;
  border: 1px solid var(--gray-border);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 15px;
  font-family: var(--font-main);
}

.ui-datepicker-header {
  background: var(--primary-color);
  color: white;
  border-radius: var(--border-radius-small);
  margin-bottom: 10px;
  padding: 10px;
}

.ui-datepicker td a {
  background: transparent;
  color: var(--text-dark);
  border-radius: var(--border-radius-small);
  padding: 8px;
  text-align: center;
  transition: var(--transition);
}

.ui-datepicker td a:hover {
  background: var(--primary-color);
  color: white;
}

.ui-datepicker .ui-state-active {
  background: var(--accent-color) !important;
  color: white !important;
}

.clearfix::after {
  content: '';
  clear: both;
  display: table;
}

p {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

input,
textarea {
  margin: 0;
  font-size: 100%;
  resize: none;
}

input[type='text'],
input[type='date'],
input[type='email'],
input[type='number'],
input[type='url'] {
  word-break: normal;
  white-space: nowrap;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 100%;
}

dl,
dt,
dd,
th,
td {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  margin: 0;
  padding: 0;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
dialog {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

img {
  margin: 0;
  padding: 0;
  vertical-align: middle;
  border: 0;
  max-width: 100%;
  height: auto;
}

table img {
  margin: 0;
  padding: 0;
  vertical-align: middle;
  border: 0;
}

article,
aside,
dialog,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*:focus {
  outline: none !important;
}

label,
select,
button {
  cursor: pointer;
}

input,
textarea,
select,
button {
  font-family: inherit;
}

a {
  outline: none;
  transition: opacity 0.3s;
  cursor: pointer;
}

@media only screen and (min-width: 1025px) {
  a:hover {
    opacity: 0.5;
  }
}

a:link,
a:visited,
a:active {
  color: #0e0e0e;
  text-decoration: none;
}

.ffN {
  font-family: 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro',
    'ヒラギノ角ゴ Pro W3', 'ヒラギノ角ゴ W3', 'メイリオ', 'Osaka',
    'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}

.ffM {
  font-family: 'ヒラギノ明朝 Pro', 'Hiragino Mincho Pro', 'HGS明朝E',
    'ＭＳ Ｐ明朝', serif;
}

.ffYG {
  font-family: '游ゴシック体', '游ゴシック', 'YuGothic', 'Yu Gothic',
    'Noto Sans JP', 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'メイリオ',
    Meiryo, 'MS Pゴシック', 'MS PGothic', sans-serif;
}

.ffYM {
  font-family: '游明朝体', '游明朝', 'YuMincho', 'Yu Mincho', 'Noto Serif JP',
    'ヒラギノ明朝 Pro', 'Hiragino Mincho Pro', 'MS P明朝', 'MS PMincho', serif;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  white-space: nowrap;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

html.is-ipad * {
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  -o-text-size-adjust: none;
  text-size-adjust: none;
}

body {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.86667em;
  letter-spacing: 0em;
  font-family: 'Acherus Grotesque Regular';
  word-break: break-word;
  color: #1e1e1e;
  background: #f7f7f7;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
}

.ko body {
  font-family: 'Noto Sans KR', sans-serif;
}

#wrap {
  display: block;
  overflow: hidden;
  position: relative;
}

#wrap:before {
  content: '';
  position: fixed;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url('/wp/wp-content/themes/wp-templ/assets/img/common/other/body_bg.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-color: rgba(0, 0, 0, 0);
  background-size: cover;
}

.innerWrap {
  max-width: 1192px;
  padding: 0 16px;
  margin: 0 auto;
  width: 100%;
}

@media (min-width: 768px) {
  .sp,
  .SP {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .pc,
  .PC {
    display: none !important;
  }
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px auto;
}

.alignleft {
  float: left;
  margin: 5px auto 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px auto;
}

a img.alignnone {
  margin: 24px 0 20px;
}

a img.alignleft {
  float: left;
  margin: 5px auto 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  max-width: 100%;
  text-align: center;
}

@media (min-width: 768px) {
  .wp-caption + p {
    margin-top: 25px;
  }
}

@media (max-width: 767px) {
  .wp-caption + p {
    margin-top: 20px;
  }
}

@media (min-width: 768px) {
  .wp-caption.alignnone {
    margin-top: 24px;
  }
}

@media (max-width: 767px) {
  .wp-caption.alignnone {
    margin-top: 20px;
  }
}

.wp-caption.alignleft {
  margin: 5px auto 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px auto;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  font-style: italic;
}

@media (min-width: 768px) {
  .wp-caption p.wp-caption-text {
    font-size: 15px;
    line-height: 28px;
    margin-top: 7px;
  }
}

@media (max-width: 767px) {
  .wp-caption p.wp-caption-text {
    font-size: 12px;
    line-height: 22px;
    margin-top: 8px;
  }
}

.wp-video {
  max-width: 100%;
  margin-bottom: 40px;
}

.wp-video video {
  max-width: 100%;
  height: auto;
}

.cms-content {
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
  word-wrap: break-word;
}

.cms-content::after {
  content: '';
  clear: both;
  display: table;
}

.cms-content ul,
.cms-content ol {
  padding-left: 23px;
}

.cms-content ul[style*='list-style-type: circle;'] li {
  list-style-type: circle;
}

.cms-content ul[style*='list-style-type: square;'] li {
  list-style-type: square;
}

.cms-content ul li {
  position: relative;
}

.cms-content ul li:before {
  content: '';
  position: absolute;
  left: -13px;
  top: 14px;
  width: 3px;
  height: 3px;
  background: #1e1e1e;
  border-radius: 100%;
}

@media (min-width: 768px) {
  .cms-content ul + p {
    margin-top: 22px;
  }
}

@media (max-width: 767px) {
  .cms-content ul + p {
    margin-top: 12px;
  }
}

.cms-content ol[style*='list-style-type: lower-roman;'] li {
  list-style-type: lower-roman;
}

.cms-content ol[style*='list-style-type: lower-alpha;'] li {
  list-style-type: lower-alpha;
}

.cms-content ol[style*='list-style-type: lower-greek;'] li {
  list-style-type: lower-greek;
}

.cms-content ol[style*='list-style-type: upper-alpha;'] li {
  list-style-type: upper-alpha;
}

.cms-content ol[style*='list-style-type: upper-roman;'] li {
  list-style-type: upper-roman;
}

.cms-content ol li {
  list-style-type: decimal;
}

.cms-content h2 {
  font-family: 'Canela Regular';
  font-size: 36px;
  font-size: 3.6rem;
  line-height: 1.33333em;
  letter-spacing: 0.02em;
}

@media (max-width: 767px) {
  .cms-content h2 {
    font-size: 28px;
    font-size: 2.8rem;
    line-height: 1.42857em;
  }
}

@media (min-width: 768px) {
  .cms-content h2 + p {
    margin-top: 16px;
  }
}

@media (max-width: 767px) {
  .cms-content h2 + p {
    margin-top: 12px;
  }
}

.cms-content h3 {
  position: relative;
  font-family: 'Canela Regular';
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 1.28571em;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .cms-content h3 {
    padding-left: 16px;
  }
}

@media (max-width: 767px) {
  .cms-content h3 {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 1.41667em;
    padding-left: 14px;
  }
}

.cms-content h3:before {
  content: '';
  position: absolute;
  width: 4px;
  top: 1px;
  left: 0;
  background: #4c9254;
}

@media (min-width: 768px) {
  .cms-content h3:before {
    height: calc(100% - 7px);
  }
}

@media (max-width: 767px) {
  .cms-content h3:before {
    height: calc(100% - 5px);
  }
}

@media (min-width: 768px) {
  .cms-content h3 + p {
    margin-top: 16px;
  }
}

@media (max-width: 767px) {
  .cms-content h3 + p {
    margin-top: 8px;
  }
}

.cms-content h4 {
  font-family: 'Canela Regular';
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.5em;
  letter-spacing: 0.02em;
}

@media (max-width: 767px) {
  .cms-content h4 {
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.7em;
    letter-spacing: 0.02em;
  }
}

.cms-content h4:before {
  content: '';
  position: relative;
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #367838;
  border-radius: 100%;
  left: 0;
}

@media (min-width: 768px) {
  .cms-content h4:before {
    margin-right: 10px;
    top: -7px;
  }
}

@media (max-width: 767px) {
  .cms-content h4:before {
    margin-right: 7px;
    top: -5px;
  }
}

@media (min-width: 768px) {
  .cms-content h4 + p {
    margin-top: 16px;
  }
}

@media (max-width: 767px) {
  .cms-content h4 + p {
    margin-top: 11px;
  }
}

.cms-content h5 {
  font-family: 'Canela Regular';
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.5em;
  letter-spacing: 0.02em;
}

@media (max-width: 767px) {
  .cms-content h5 {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.55556em;
    letter-spacing: 0.02em;
  }
}

@media (min-width: 768px) {
  .cms-content h5 + p {
    margin-top: 15px;
  }
}

@media (max-width: 767px) {
  .cms-content h5 + p {
    margin-top: 7px;
  }
}

@media (min-width: 768px) {
  .cms-content p + h2 {
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .cms-content p + h2 {
    margin-top: 48px;
  }
}

.cms-content p + h3 {
  margin-top: 24px;
}

@media (min-width: 768px) {
  .cms-content p + p {
    margin-top: 16px;
  }
}

@media (max-width: 767px) {
  .cms-content p + p {
    margin-top: 8px;
  }
}

@media (min-width: 768px) {
  .cms-content p + h4 {
    margin-top: 12px;
  }
}

@media (max-width: 767px) {
  .cms-content p + h4 {
    margin-top: 13px;
  }
}

@media (min-width: 768px) {
  .cms-content p + h5 {
    margin-top: 23px;
  }
}

@media (max-width: 767px) {
  .cms-content p + h5 {
    margin-top: 16px;
  }
}

.cms-content ul li {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.86667em;
}

.cms-content blockquote {
  padding: 22px 28px;
  background: #e2e2e2;
  margin-top: 12px;
}

.cms-content blockquote + p {
  margin-top: 12px;
}

.cms-content iframe {
  max-width: 100% !important;
}

.cms-content img {
  max-width: 100%;
  height: auto;
  max-height: 100%;
  width: auto;
}

.cms-content table {
  table-layout: fixed;
  border: 1px solid #1e1e1e;
  margin-bottom: 40px;
}

.cms-content table td,
.cms-content table th {
  border: 1px solid #1e1e1e;
}

@media (min-width: 768px) {
  .template01-wrap {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
  }

  .template01-wrap .template01-wrap__col {
    width: calc(478 / 964 * 100%);
  }

  .template01-wrap .template01-wrap__col .template01-desc {
    margin-top: 7px;
  }

  .template01-wrap .template01-wrap__col .template01-desc .txt {
    font-size: 15px;
    line-height: 28px;
    text-align: center;
    font-style: italic;
  }

  .template01-wrap + p {
    margin-top: 25px;
  }
}

@media (max-width: 768px) {
  .template01-wrap {
    margin-top: 24px;
  }

  .template01-wrap .template01-wrap__col:not(:last-child) {
    margin-bottom: 24px;
  }

  .template01-wrap .template01-wrap__col .template01-desc {
    margin-top: 8px;
  }

  .template01-wrap .template01-wrap__col .template01-desc .txt {
    font-size: 12px;
    line-height: 22px;
    text-align: center;
    font-style: italic;
  }

  .template01-wrap + p {
    margin-top: 24px;
  }
}

.c-img {
  display: block;
  position: relative;
  overflow: hidden;
}

.c-img img {
  display: block;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.c-img--contain img {
  object-fit: contain;
}

.c-img--top img {
  object-position: top;
}

.c-fw {
  width: 100%;
}

[rel~='js-lazy'] {
  opacity: 0;
}

[rel~='js-lazy']:not(.initial) {
  transition: opacity 0.15s;
}

[rel~='js-lazy'].initial,
[rel~='js-lazy'].loaded,
[rel~='js-lazy'].error {
  opacity: 1;
}

.c-lazybg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.c-lazybg--top {
  background-position: center top;
}

.c-lazybg--contain {
  background-size: contain;
}

.c-booking {
  height: 110px;
  background: #ccc;
}

@media (max-width: 767px) {
  .c-booking {
    height: 273px;
  }
}

.slick-arrow {
  position: absolute;
  top: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: transparent;
  font-size: 0;
  border: 0;
  margin: 0;
  padding: 0;
  z-index: 1;
  opacity: 1;
  transition: 0.3s;
  cursor: pointer;
}

@media only screen and (min-width: 1025px) {
  .slick-arrow:hover {
    opacity: 0.7;
    transition: 0.3s;
  }
}

.custom-arrow {
  position: relative;
  padding-bottom: 80px;
}

@media (max-width: 767px) {
  .custom-arrow {
    padding-bottom: 65px;
  }
}

.custom-arrow:before,
.custom-arrow:after {
  content: '';
  position: absolute;
  bottom: 30px;
  width: calc(50% - 66px);
  height: 1px;
  background-color: #1e1e1e;
  opacity: 0.2;
}

.custom-arrow:before {
  left: 0;
}

.custom-arrow:after {
  right: 0;
}

.custom-arrow .slick-arrow {
  position: absolute;
  top: auto;
  bottom: 21px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 31px;
  height: 20px;
  transform: none;
}

.custom-arrow .slick-arrow.slick-prev {
  background-image: url('/wp/wp-content/themes/wp-templ/assets/img/common/other/slick_prev01.svg');
  left: calc(50% - 37px);
}

.custom-arrow .slick-arrow.slick-next {
  background-image: url('/wp/wp-content/themes/wp-templ/assets/img/common/other/slick_next01.svg');
  right: calc(50% - 37px);
}

.c-ttl01 {
  position: relative;
  text-align: center;
}

.c-ttl01 .sub,
.c-ttl01 .title {
  display: block;
  font-family: 'Canela Regular';
  text-transform: capitalize;
}

.c-ttl01 .sub {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1em;
  letter-spacing: 0.02em;
  margin-bottom: 11px;
}

@media (max-width: 767px) {
  .c-ttl01 .sub {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1em;
  }
}

.c-ttl01 .title {
  font-size: 36px;
  font-size: 3.6rem;
  line-height: 1.33333em;
  letter-spacing: 0.02em;
}

@media (max-width: 767px) {
  .c-ttl01 .title {
    font-size: 27px;
    font-size: 2.7rem;
    line-height: 1.37037em;
  }
}

.c-ttl01.is-line {
  border-bottom: 1px solid rgba(30, 30, 30, 0.2);
}

@media (min-width: 768px) {
  .c-ttl01.is-line {
    padding-right: 150px;
    padding-bottom: 21px;
  }
}

@media (max-width: 767px) {
  .c-ttl01.is-line {
    padding-bottom: 19px;
  }
}

@media (min-width: 768px) {
  .c-ttl01.is-line .c-btn01 {
    position: absolute;
    right: 5px;
    bottom: 21px;
  }
}

@media (max-width: 767px) {
  .c-ttl01.is-line .c-btn01 {
    margin-top: 10px;
  }
}

.c-ttl02 {
  font-size: 40px;
  font-size: 4rem;
  line-height: 1.3em;
  letter-spacing: 0.02em;
  font-family: 'Canela Regular';
  text-align: center;
  text-transform: capitalize;
}

@media (max-width: 767px) {
  .c-ttl02 {
    font-size: 32px;
    font-size: 3.2rem;
    line-height: 1.1875em;
  }
}

.c-ttl02 span {
  display: inline-block;
  position: relative;
  padding-bottom: 14px;
}

@media (max-width: 767px) {
  .c-ttl02 span {
    padding-bottom: 9px;
  }
}

.c-ttl02 span:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #000;
  width: 54px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .c-ttl02 span:after {
    width: 48px;
  }
}

.c-ttl03 {
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 1.42857em;
  letter-spacing: 0.02em;
  font-family: 'Canela Regular';
}

@media (max-width: 767px) {
  .c-ttl03 {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 1.25em;
  }
}

.c-txt {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.86667em;
  letter-spacing: 0em;
  color: #6e6e6e;
}

.c-hover {
  cursor: pointer;
  cursor: pointer;
}

@media only screen and (min-width: 1025px) {
  .c-hover:hover:hover {
    opacity: 1;
  }
}

.c-zoom {
  cursor: pointer;
}

.c-zoom .img-zoom {
  overflow: hidden;
}

.c-zoom .img-zoom img {
  transform: scale(1);
  transition: 0.3s;
}

@media only screen and (min-width: 1025px) {
  .c-zoom:hover .img-zoom img {
    transform: scale(1.1);
    transition: 0.3s;
  }
}

.c-btn01 {
  text-align: center;
}

.c-btn01 a,
.c-btn01 .link {
  display: inline-block;
  position: relative;
  padding-bottom: 7px;
  transition: 0.3s;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1em;
  letter-spacing: 0em;
  font-weight: 500;
  color: #1e1e1e;
  font-family: 'Acherus Grotesque Medium';
  cursor: pointer;
}

.c-btn01 a:after,
.c-btn01 .link:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background-color: #1e1e1e;
  width: 63px;
  margin: 0 auto;
  transition: 0.3s;
}

@media only screen and (min-width: 1024px) {
  .c-hover:hover .c-btn01 a,
  .c-hover:hover .c-btn01 .link {
    pointer-events: none;
    color: #367639;
    transition: 0.3s;
    opacity: 1;
  }

  .c-hover:hover .c-btn01 a:after,
  .c-hover:hover .c-btn01 .link:after {
    width: 100%;
    background-color: #367639;
    transition: 0.3s;
  }
}

@media only screen and (min-width: 1025px) {
  .c-btn01 a:hover,
  .c-btn01 .link:hover {
    color: #367639;
    transition: 0.3s;
    opacity: 1;
  }

  .c-btn01 a:hover:after,
  .c-btn01 .link:hover:after {
    width: 100%;
    background-color: #367639;
    transition: 0.3s;
  }
}

@media (max-width: 767px) {
  .c-btn01 a,
  .c-btn01 .link {
    color: #367639;
    transition: 0.3s;
    opacity: 1;
  }

  .c-btn01 a:after,
  .c-btn01 .link:after {
    width: 100%;
    background-color: #367639;
    transition: 0.3s;
  }
}

.c-btn01.is-left a:after,
.c-btn01.is-left .link:after {
  right: auto;
}

.c-btn01.is-arrow a,
.c-btn01.is-arrow .link {
  padding-right: 20px;
  cursor: pointer;
}

.c-btn01.is-arrow a:before,
.c-btn01.is-arrow .link:before {
  content: '';
  position: absolute;
  top: 4px;
  right: -2px;
  width: 14px;
  height: 8px;
  background-image: url('/wp/wp-content/themes/wp-templ/assets/img/common/icon/ico_arrow.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: 0.3s;
}

@media only screen and (min-width: 1025px) {
  .c-btn01.is-arrow a:hover:before,
  .c-btn01.is-arrow .link:hover:before {
    background-image: url('/wp/wp-content/themes/wp-templ/assets/img/common/icon/ico_arrow_green.svg');
    transition: 0.3s;
  }
}

@media (max-width: 767px) {
  .c-btn01.is-arrow a:before,
  .c-btn01.is-arrow .link:before {
    background-image: url('/wp/wp-content/themes/wp-templ/assets/img/common/icon/ico_arrow_green.svg');
    transition: 0.3s;
  }
}

.c-loadmore {
  margin-top: 19px;
  text-align: center;
}

.c-loadmore span {
  display: inline-block;
  position: relative;
  border-bottom: 1px solid #367639;
  padding-bottom: 6px;
  color: #367639;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1em;
  letter-spacing: 0em;
  font-weight: 500;
  font-family: 'Acherus Grotesque Medium';
}

@media (min-width: 768px) {
  .c-submv .photo {
    position: relative;
    max-height: 770px;
  }

  .c-submv .photo:before {
    display: block;
    content: ' ';
    width: 100%;
    padding-top: 53.47222%;
  }

  .c-submv .photo > .content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}

@media (max-width: 767px) {
  .c-submv .photo {
    position: relative;
  }

  .c-submv .photo:before {
    display: block;
    content: ' ';
    width: 100%;
    padding-top: 117.6%;
  }

  .c-submv .photo > .content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}

.c-submv .photo img {
  object-position: center;
}

@media (min-width: 768px) {
  .c-grid01 {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -20px -40px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .c-grid01 {
    margin: 0 -10px -20px;
  }
}

@media (min-width: 768px) {
  .c-grid01:not(.custom) .item {
    width: calc(33.333% - 40px);
  }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .c-grid01:not(.custom) .item {
    margin: 0 10px 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .c-grid01:not(.custom) .item {
    width: calc(33.333% - 20px);
  }
}

.c-grid01 .item {
  position: relative;
  display: block;
  background: #fff;
}

@media (min-width: 768px) {
  .c-grid01 .item {
    margin: 0 20px 40px;
  }
}

@media (max-width: 767px) {
  .c-grid01 .item + .item {
    margin-top: 28px;
  }
}

.c-grid01 .info {
  padding: 20px 19px 64px;
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .c-grid01 .info {
    padding: 24px 16px 64px;
  }
}

@media (max-width: 767px) {
  .c-grid01 .info {
    padding: 24px 16px 24px;
  }
}

.c-grid01 .photo {
  position: relative;
}

.c-grid01 .photo:before {
  display: block;
  content: ' ';
  width: 100%;
  padding-top: 70.83333%;
}

.c-grid01 .photo > .content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.c-grid01 .ttl {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.25em;
  letter-spacing: 0.02em;
  font-family: 'Canela Regular';
}

.c-grid01 .c-txt {
  margin-top: 12px;
}

@media (max-width: 767px) {
  .c-grid01 .c-txt {
    overflow: hidden;
    width: 100%;
    -webkit-line-clamp: 4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: normal;
  }
}

@media (min-width: 768px) {
  .c-grid01 .c-btn01 {
    position: absolute;
    left: 20px;
    bottom: 27px;
  }
}

@media (max-width: 767px) {
  .c-grid01 .c-btn01 {
    margin-top: 7px;
  }
}

@media (min-width: 768px) {
  .c-grid01.custom .info {
    padding-bottom: 80px;
  }
}

@media (min-width: 768px) {
  .c-grid01.custom .item {
    width: calc(50% - 40px);
  }
}

@media (min-width: 768px) {
  .c-grid01.custom .c-btn01 {
    bottom: 43px;
  }
}

@media (min-width: 768px) {
  .c-grid01.odd .item:last-of-type {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
  }

  .c-grid01.odd .item:last-of-type .photo {
    width: 49.225%;
    position: relative;
  }

  .c-grid01.odd .item:last-of-type .photo:before {
    display: block;
    content: ' ';
    width: 100%;
    padding-top: 69.17688%;
  }

  .c-grid01.odd .item:last-of-type .photo > .content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }

  .c-grid01.odd .item:last-of-type .info {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    padding: 30px 41px;
    width: 50.775%;
  }
}

.c-grid01.odd .item:last-of-type .c-btn01 {
  margin-top: 7px;
  position: relative;
  bottom: 0;
  left: 0;
}

.c-grid01.large {
  margin: 0 -8px;
}

.c-grid01.large .item {
  width: calc(33.333% - 16px);
  margin: 0 8px;
}

.c-grid01.large .info {
  padding: 0;
  background: inherit;
}

.c-grid02 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
}

@media (min-width: 768px) {
  .c-grid02 .photo {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .c-grid02 .photo {
    width: 100%;
  }
}

.c-grid02.noContent .photo,
.c-grid02.noContent .info {
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .c-grid02 .info {
    width: 50%;
    padding: 37px 0 37px 89px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .c-grid02 .info {
    padding-left: 30px;
  }
}

@media (max-width: 767px) {
  .c-grid02 .info {
    padding-top: 24px;
  }
}

.c-grid02 .c-txt {
  margin-top: 15px;
}

@media (max-width: 767px) {
  .c-grid02 .c-txt {
    margin-top: 10px;
  }
}

@media (min-width: 768px) {
  .c-grid02.reverse {
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    -o-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}

@media (min-width: 768px) {
  .c-grid02.reverse .info {
    padding: 37px 89px 37px 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .c-grid02.reverse .info {
    padding-left: 0;
    padding-right: 20px;
  }
}

@media (min-width: 768px) {
  .c-grid02.custom .photo {
    width: calc(50% - 8px);
    position: relative;
  }

  .c-grid02.custom .photo:before {
    display: block;
    content: ' ';
    width: 100%;
    padding-top: 69.24157%;
  }

  .c-grid02.custom .photo > .content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}

@media (max-width: 767px) {
  .c-grid02.custom .photo {
    width: 100%;
    position: relative;
  }

  .c-grid02.custom .photo:before {
    display: block;
    content: ' ';
    width: 100%;
    padding-top: 69.38776%;
  }

  .c-grid02.custom .photo > .content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}

.c-grid02.custom .photo img {
  width: 100%;
}

@media (min-width: 768px) {
  .c-grid02.custom .info {
    width: calc(50% + 8px);
    padding-right: 16px;
  }
}

@media only screen and (min-width: 1024px) {
  .c-grid02.custom .info {
    padding-left: 97px;
  }
}

.c-grid02.custom .info .desc {
  max-width: 490px;
}

.c-grid03 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
}

@media (max-width: 767px) {
  .c-grid03 {
    padding: 0 16px;
  }
}

@media (min-width: 768px) {
  .c-grid03 .left {
    width: calc(50% + 8px);
    padding: 10px 98px 75px 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .c-grid03 .left {
    padding-right: 30px;
    padding-bottom: 25px;
  }
}

.c-grid03 .left .info {
  max-width: 490px;
  width: 100%;
  margin-left: auto;
}

@media (min-width: 768px) {
  .c-grid03 .left .c-btn01 {
    margin-top: 39px;
    border-top: 1px solid #bcbcbc;
    padding-top: 15px;
  }

  .c-grid03 .left .c-btn01 + .c-btn01 {
    border-top: 0;
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .c-grid03 .left .c-btn01 {
    margin-top: 12px;
  }
}

@media (min-width: 768px) {
  .c-grid03 .right {
    width: calc(50% - 8px);
  }
}

@media (max-width: 767px) {
  .c-grid03 .right {
    margin-top: 24px;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .c-grid03.reverse {
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    -o-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}

@media (min-width: 768px) {
  .c-grid03.reverse .left {
    padding: 42px 98px 75px 60px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .c-grid03.reverse .left {
    padding-right: 0;
    padding-left: 30px;
  }
}

@media (min-width: 768px) {
  .c-grid03.reverse .info {
    margin-left: 0;
    margin-right: auto;
    padding: 8px 10px 37px 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .c-grid03.reverse .info {
    padding-left: auto;
    padding-right: 30px;
  }
}

@media (min-width: 768px) {
  .c-grid03.reverse .c-txt {
    margin-top: 14px;
  }
}

.c-grid03 .custom-arrow {
  padding-bottom: 62px;
}

@media (max-width: 767px) {
  .c-grid03 .custom-arrow {
    padding-bottom: 56px;
  }
}

.c-grid03 .custom-arrow:before {
  left: 104px;
  right: 0;
  width: auto;
}

@media (max-width: 767px) {
  .c-grid03 .custom-arrow:before {
    left: 107px;
  }
}

.c-grid03 .custom-arrow:after {
  display: none;
}

.c-grid03 .custom-arrow .slick-arrow.slick-prev {
  left: 7px;
}

@media (max-width: 767px) {
  .c-grid03 .custom-arrow .slick-arrow.slick-prev {
    left: 17px;
  }
}

.c-grid03 .custom-arrow .slick-arrow.slick-next {
  left: 50px;
}

@media (max-width: 767px) {
  .c-grid03 .custom-arrow .slick-arrow.slick-next {
    left: 61px;
  }
}

.c-grid03 .custom-arrow.reverse:before {
  left: 0;
  right: 95px;
}

.c-grid03 .custom-arrow.reverse .slick-arrow.slick-prev {
  left: auto;
  right: 47px;
}

.c-grid03 .custom-arrow.reverse .slick-arrow.slick-next {
  left: auto;
  right: 3px;
}

@media (min-width: 768px) {
  .c-grid04 {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -8px;
  }
}

.c-grid04 .info {
  padding: 0;
  background: inherit;
}

.c-grid04 .item {
  position: relative;
  display: block;
}

@media (min-width: 768px) {
  .c-grid04 .item {
    width: calc(33.333% - 16px);
    margin: 0 8px;
  }
}

@media (max-width: 767px) {
  .c-grid04 .item + .item {
    margin-top: 36px;
  }
}

.c-grid04 .info {
  padding-top: 19px;
}

.c-grid04 .photo {
  position: relative;
}

.c-grid04 .photo:before {
  display: block;
  content: ' ';
  width: 100%;
  padding-top: 70.83333%;
}

.c-grid04 .photo > .content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.c-grid04 .ttl {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.3em;
  letter-spacing: 0.02em;
  font-family: 'Canela Regular';
}

.c-grid04 .c-txt {
  margin-top: 7px;
}

@media (max-width: 767px) {
  .c-grid04 .c-txt {
    margin-top: 4px;
  }
}

.c-grid04 .c-btn01 {
  margin-top: 7px;
}

@media (min-width: 768px) {
  .c-grid05 {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 80px -20px -40px;
  }
}

@media (max-width: 767px) {
  .c-grid05 {
    margin-top: 60px;
  }
}

.c-grid05 .item {
  position: relative;
  display: block;
}

@media (min-width: 768px) {
  .c-grid05 .item {
    margin: 0 20px 60px;
    width: calc(50% - 40px);
  }
}

@media (max-width: 767px) {
  .c-grid05 .item + .item {
    margin-top: 36px;
  }
}

@media (min-width: 768px) {
  .c-grid05 .info {
    margin-top: 18px;
  }
}

@media (max-width: 767px) {
  .c-grid05 .info {
    margin-top: 20px;
  }
}

@media (min-width: 768px) {
  .c-grid05 .photo {
    position: relative;
  }

  .c-grid05 .photo:before {
    display: block;
    content: ' ';
    width: 100%;
    padding-top: 64.28571%;
  }

  .c-grid05 .photo > .content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}

@media (max-width: 767px) {
  .c-grid05 .photo {
    position: relative;
  }

  .c-grid05 .photo:before {
    display: block;
    content: ' ';
    width: 100%;
    padding-top: 70.84548%;
  }

  .c-grid05 .photo > .content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}

.c-grid05 .ttl {
  font-family: 'Canela Regular';
  overflow: hidden;
  width: 100%;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: normal;
}

@media (min-width: 768px) {
  .c-grid05 .ttl {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 1.25em;
  }
}

@media (max-width: 767px) {
  .c-grid05 .ttl {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 1.25em;
    letter-spacing: 0.02em;
  }
}

.c-grid05 .c-txt {
  overflow: hidden;
  width: 100%;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: normal;
}

@media (min-width: 768px) {
  .c-grid05 .c-txt {
    margin-top: 12px;
  }
}

@media (max-width: 767px) {
  .c-grid05 .c-txt {
    margin-top: 8px;
  }
}

.c-grid05 .c-btn01 {
  margin-top: 7px;
}

@media (max-width: 767px) {
  .c-grid05 .c-btn01 {
    margin-top: 7px;
  }
}

@media (min-width: 768px) {
  .c-slide01 {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -8px;
  }

  .c-slide01:not(.slick-initialized) .item:not(:first-of-type) {
    display: none;
  }
}

.c-slide01 .item {
  display: block;
}

@media (min-width: 768px) {
  .c-slide01 .item {
    width: calc(33.333% - 16px);
    margin: 0 8px;
  }
}

@media (max-width: 767px) {
  .c-slide01 .item + .item {
    margin-top: 36px;
  }
}

.c-slide01 .info {
  padding: 19px 2px 0;
}

@media (max-width: 767px) {
  .c-slide01 .info {
    padding-left: 0;
    padding-right: 0;
  }
}

.c-slide01 .ttl {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.3em;
  letter-spacing: 0.02em;
  font-family: 'Canela Regular';
}

.c-slide01 .photo {
  position: relative;
}

.c-slide01 .photo:before {
  display: block;
  content: ' ';
  width: 100%;
  padding-top: 71.01064%;
}

.c-slide01 .photo > .content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.c-slide01 .c-txt {
  margin-top: 7px;
}

@media (max-width: 767px) {
  .c-slide01 .c-txt {
    margin-top: 4px;
  }
}

.c-slide01 .slick-arrow {
  width: 67px;
  height: 70px;
  transform: translateY(-50%);
}

@media only screen and (min-width: 768px) and (max-width: 1350px) {
  .c-slide01 .slick-arrow {
    width: 38px;
    height: 35px;
    background-size: 38px;
    background-color: #fff;
  }
}

.c-slide01 .slick-arrow.slick-prev {
  left: -90px;
  background-image: url('/wp/wp-content/themes/wp-templ/assets/img/common/other/slick_prev.svg');
}

@media only screen and (min-width: 768px) and (max-width: 1350px) {
  .c-slide01 .slick-arrow.slick-prev {
    left: -8px;
  }
}

.c-slide01 .slick-arrow.slick-next {
  right: -90px;
  background-image: url('/wp/wp-content/themes/wp-templ/assets/img/common/other/slick_next.svg');
}

@media only screen and (min-width: 768px) and (max-width: 1350px) {
  .c-slide01 .slick-arrow.slick-next {
    right: -8px;
  }
}

.c-slide02 {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}

.c-slide02:not(.slick-initialized) .item:not(:first-of-type) {
  display: none;
}

@media (max-width: 767px) {
  .c-slide02:before,
  .c-slide02:after {
    opacity: 0;
  }
}

@media (min-width: 768px) {
  .c-slide02 .slick-list {
    padding: 0 26%;
  }
}

.c-slide02 .item {
  display: block;
  position: relative;
  background-color: #fff;
}

@media (min-width: 768px) {
  .c-slide02 .item {
    margin: 0 20px;
    padding: 30px 24px 24px;
  }
}

@media (max-width: 767px) {
  .c-slide02 .item {
    margin: 0 16px;
  }
}

.c-slide02 .item.heightAuto {
  height: auto !important;
}

.c-slide02 .photo {
  position: relative;
}

.c-slide02 .photo:before {
  display: block;
  content: ' ';
  width: 100%;
  padding-top: 61.55989%;
}

.c-slide02 .photo > .content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

@media (max-width: 767px) {
  .c-slide02 .photo {
    position: relative;
  }

  .c-slide02 .photo:before {
    display: block;
    content: ' ';
    width: 100%;
    padding-top: 70.84548%;
  }

  .c-slide02 .photo > .content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}

@media (min-width: 768px) {
  .c-slide02 .info {
    padding-top: 20px;
    padding-bottom: 44px;
  }
}

@media (max-width: 767px) {
  .c-slide02 .info {
    padding: 22px 17px 90px;
  }
}

.c-slide02 .ttl {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.41667em;
  letter-spacing: 0.02em;
  font-family: 'Canela Regular';
}

.c-slide02 .c-txt {
  margin-top: 10px;
}

@media (max-width: 767px) {
  .c-slide02 .c-txt {
    overflow: hidden;
    width: 100%;
    -webkit-line-clamp: 4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: normal;
  }
}

.c-slide02 .c-btn01 {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
}

@media (max-width: 767px) {
  .c-slide02 .c-btn01 {
    left: 18px;
    bottom: 53px;
  }
}

.c-slide03 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -8px;
}

.c-slide03:not(.slick-initialized) .item:not(:first-of-type) {
  display: none;
}

@media (max-width: 767px) {
  .c-slide03 {
    margin: 0 -16px;
    padding-left: 16px;
  }
}

@media (min-width: 768px) {
  .c-slide03 .slick-list {
    padding-right: 32.8%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .c-slide03 .slick-list {
    padding-right: 20%;
  }
}

@media (max-width: 767px) {
  .c-slide03 .slick-list {
    padding-right: 80px;
  }
}

.c-slide03 .item {
  margin: 0 8px;
}

@media (max-width: 767px) {
  .c-slide03 .item {
    margin: 0 3px;
    width: 100%;
  }
}

.c-slide03 .photo {
  position: relative;
}

.c-slide03 .photo:before {
  display: block;
  content: ' ';
  width: 100%;
  padding-top: 69.19831%;
}

.c-slide03 .photo > .content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

@media (max-width: 767px) {
  .c-slide03 .photo {
    position: relative;
  }

  .c-slide03 .photo:before {
    display: block;
    content: ' ';
    width: 100%;
    padding-top: 66.66667%;
  }

  .c-slide03 .photo > .content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}

.c-slide03.reverse .photo {
  position: relative;
}

.c-slide03.reverse .photo:before {
  display: block;
  content: ' ';
  width: 100%;
  padding-top: 66.43357%;
}

.c-slide03.reverse .photo > .content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.c-slide03.reverse .item {
  margin: 0 4px;
}

@media (min-width: 768px) {
  .c-slide03.reverse .slick-list {
    padding-left: 32.8%;
    padding-right: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .c-slide03.reverse .slick-list {
    padding-left: 20%;
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .c-slide03.reverse .slick-list {
    padding-left: 80px;
    padding-right: 0;
  }
}

.c-slide04 {
  max-width: 572px;
  margin-left: auto;
}

.c-slide04:not(.slick-initialized) .item:not(:first-of-type) {
  display: none;
}

.c-slide04 .c-img {
  position: relative;
}

.c-slide04 .c-img:before {
  display: block;
  content: ' ';
  width: 100%;
  padding-top: 69.23077%;
}

.c-slide04 .c-img > .content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.c-slide04 .item {
  margin: 0;
}

.c-slide04 .slick-dots {
  bottom: -25px;
}

@media (max-width: 767px) {
  .c-slide04 .slick-dots {
    bottom: -20px;
  }
}

.c-slide04 .slick-dots li {
  margin: 0 5px;
}

@media (max-width: 767px) {
  .c-slide04 .slick-dots li {
    margin: 0 4px;
  }
}

.c-slide04 .slick-dots li button {
  width: 8px;
  height: 8px;
  background-color: #c1c1c1;
}

/* .c-slide04 .slick-dots li.slick-active button {
  background-color: #367639;
} */

.c-slide05 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -4px;
}

.c-slide05:not(.slick-initialized) .item:not(:first-of-type) {
  display: none;
}

.c-slide05.custom-arrow {
  padding-bottom: 68px;
}

@media (max-width: 767px) {
  .c-slide05.custom-arrow {
    padding-bottom: 55px;
  }
}

@media (min-width: 768px) {
  .c-slide05 .slick-list {
    padding-right: 19.7%;
  }
}

@media (max-width: 767px) {
  .c-slide05 .slick-list {
    padding-left: 80px;
  }
}

@media (min-width: 768px) {
  .c-slide05.reverse .slick-list {
    padding-left: 19.7%;
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .c-slide05.reverse .slick-list {
    padding-left: 87px;
    padding-right: 0;
  }
}

.c-slide05 .item {
  margin: 0 4px;
}

@media (max-width: 767px) {
  .c-slide05 .item {
    margin: 0 3px;
    width: 100%;
  }
}

.c-slide05 .photo {
  position: relative;
}

.c-slide05 .photo:before {
  display: block;
  content: ' ';
  width: 100%;
  padding-top: 66.43357%;
}

.c-slide05 .photo > .content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

@media (max-width: 767px) {
  .c-slide05 .photo {
    position: relative;
  }

  .c-slide05 .photo:before {
    display: block;
    content: ' ';
    width: 100%;
    padding-top: 66.66667%;
  }

  .c-slide05 .photo > .content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}

.slick-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 83px;
  text-align: center;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  text-align: center;
}

.slick-dots li {
  margin: 0 4px;
  padding: 0;
}

.slick-dots li button {
  width: 7px;
  height: 7px;
  background: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
  background-color: #fff;
  border: 0;
  font-size: 0;
  border-radius: 50%;
}

/* .slick-dots li.slick-active button {
  background-color: #85a646;
} */

.c-seemore {
  position: relative;
}

@media (max-width: 767px) {
  .c-seemore .txt-hide {
    overflow: hidden;
    width: 100%;
    -webkit-line-clamp: 4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: normal;
  }
}

.c-seemore.js-seemore.is-active .txt-hide {
  display: block;
  position: relative;
  opacity: 1;
  pointer-events: inherit;
}

.c-seemore.js-seemore.is-active .txt-show {
  display: none;
}

.c-seemore.js-seemore .txt-show {
  display: inline-block;
}

.c-seemore.js-seemore .txt-hide {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}

.c-seemore.js-seemore .txt-seemore {
  color: #1e1e1e;
  text-decoration: underline;
  cursor: pointer;
  cursor: pointer;
}

@media only screen and (min-width: 1025px) {
  .c-seemore.js-seemore .txt-seemore:hover {
    text-decoration: none;
  }
}

.c-offers {
  background: rgba(255, 255, 255, 0.48);
  padding-top: 80px;
  padding-bottom: 108px;
}

@media (max-width: 767px) {
  .c-offers {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}

.c-offers .c-ttl02 {
  margin-bottom: 68px;
}

@media (max-width: 767px) {
  .c-offers .c-ttl02 {
    margin-bottom: 46px;
  }
}

.c-offers .c-txt {
  overflow: hidden;
  width: 100%;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: normal;
}

.is-left {
  text-align: left;
}

.is-center {
  text-align: center;
}

.is-right {
  text-align: right;
}

.c-pickdate {
  background: rgba(255, 255, 255, 0.48);
}

.c-pickdate .c-pickdate__inner {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
}

.c-pickdate
  .c-pickdate__inner
  .pickdate-wrap
  .pickdate-date
  .pickdate-item
  input {
  display: block;
  width: 100%;
  border: solid 1px #367639;
  font-family: 'Acherus Grotesque Medium';
}

.c-pickdate
  .c-pickdate__inner
  .pickdate-wrap
  .pickdate-date
  .pickdate-item
  input::placeholder {
  color: #000;
}

.c-pickdate .c-pickdate__inner .pickdate-wrap .pickdate-promo input {
  display: block;
  width: 100%;
  border: solid 1px #367639;
  padding: 17px 10px 17px 17px;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: 'Acherus Grotesque Medium';
  background: none;
}

.c-pickdate
  .c-pickdate__inner
  .pickdate-wrap
  .pickdate-promo
  input::placeholder {
  color: #000;
}

.c-pickdate .c-pickdate__inner .pickdate-wrap .pickdate-btn .btn-submit {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  color: #fff;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: 'Acherus Grotesque Medium';
  text-align: center;
  padding: 18px 2px 16px;
  border: solid 1px #367639;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: none;
  cursor: pointer;
}

@media only screen and (min-width: 1025px) {
  .c-pickdate
    .c-pickdate__inner
    .pickdate-wrap
    .pickdate-btn
    .btn-submit:hover {
    opacity: 1;
    color: #0f3911;
  }

  .c-pickdate
    .c-pickdate__inner
    .pickdate-wrap
    .pickdate-btn
    .btn-submit:hover:before {
    width: 0;
    opacity: 0;
  }
}

.c-pickdate .c-pickdate__inner .pickdate-wrap .pickdate-btn .btn-submit:before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #367639;
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.c-pickdate .pickdate-detail {
  width: 100%;
  border-top: solid 1px #bcbcbc;
}

.c-pickdate .pickdate-detail .detail-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.c-pickdate .pickdate-detail .detail-wrap .detail-ttl {
  margin-right: 25px;
  padding-top: 2px;
}

.c-pickdate .pickdate-detail .detail-wrap .detail-ttl .txt {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.55556em;
  font-family: 'Acherus Grotesque Bold';
  color: #000;
}

.c-pickdate .pickdate-detail .detail-wrap .detail-ctn {
  flex: 1;
}

.c-pickdate .pickdate-detail .detail-wrap .detail-ctn .detail-info .info-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.c-pickdate
  .pickdate-detail
  .detail-wrap
  .detail-ctn
  .detail-info
  .info-item
  .txt {
  font-family: 'Acherus Grotesque Medium';
}

.c-pickdate
  .pickdate-detail
  .detail-wrap
  .detail-ctn
  .detail-note
  .note-item
  .txt {
  color: #6e6e6e;
}

@media (min-width: 768px) {
  .c-pickdate {
    padding: 27px 10px 27px;
  }

  .c-pickdate .pickdate-wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .c-pickdate .pickdate-wrap .pickdate-date {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
    width: calc(707.1 / 1160 * 100%);
  }

  .c-pickdate .pickdate-wrap .pickdate-date:before {
    content: '';
    position: absolute;
    width: 14px;
    height: 1px;
    background: #367639;
    top: calc(50% - 1px);
    left: calc(50% - 7px);
  }

  .c-pickdate .pickdate-wrap .pickdate-date .pickdate-item {
    width: calc(320.5 / 707.1 * 100%);
  }

  .c-pickdate .pickdate-wrap .pickdate-date .pickdate-item input {
    background-image: url('/wp/wp-content/themes/wp-templ/assets/img/common/other/picker-icon.svg');
    background-repeat: no-repeat;
    background-position: right 10px top 8px;
    background-color: #f7f7f7;
    background-size: 46px 35px;
    padding: 18px 55px 16px 17px;
    font-size: 16px;
    font-size: 1.6rem;
  }

  .c-pickdate .pickdate-wrap .pickdate-promo {
    width: calc(220.34 / 1160 * 100%);
  }

  .c-pickdate .pickdate-wrap .pickdate-promo input {
    padding: 15px 10px 16px 17px;
    font-size: 16px;
    font-size: 1.6rem;
  }

  .c-pickdate .pickdate-wrap .pickdate-btn {
    width: calc(180 / 1160 * 100%);
  }

  .c-pickdate .pickdate-detail {
    margin-top: 28px;
    padding-top: 25px;
    order: 4;
  }

  .c-pickdate .pickdate-detail .detail-wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }

  .c-pickdate .pickdate-detail .detail-wrap .detail-ttl {
    margin-right: 25px;
    padding-top: 2px;
  }

  .c-pickdate .pickdate-detail .detail-wrap .detail-ttl .txt {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.55556em;
    font-family: 'Acherus Grotesque Bold';
    color: #000;
  }

  .c-pickdate .pickdate-detail .detail-wrap .detail-ctn {
    flex: 1;
  }

  .c-pickdate .pickdate-detail .detail-wrap .detail-ctn .detail-info {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }

  .c-pickdate
    .pickdate-detail
    .detail-wrap
    .detail-ctn
    .detail-info
    .info-item:not(:last-child) {
    margin-right: 50px;
  }

  .c-pickdate
    .pickdate-detail
    .detail-wrap
    .detail-ctn
    .detail-info
    .info-item
    .icon {
    margin-right: 11px;
  }

  .c-pickdate
    .pickdate-detail
    .detail-wrap
    .detail-ctn
    .detail-info
    .info-item
    .txt {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.33333em;
    padding-top: 5px;
  }

  .c-pickdate .pickdate-detail .detail-wrap .detail-ctn .detail-note {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    margin-top: 1px;
  }

  .c-pickdate
    .pickdate-detail
    .detail-wrap
    .detail-ctn
    .detail-note
    .note-item:not(:last-child) {
    margin-right: 28px;
  }

  .c-pickdate
    .pickdate-detail
    .detail-wrap
    .detail-ctn
    .detail-note
    .note-item
    .txt {
    font-size: 12px;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
  }
}

@media only screen and (min-width: 768px) and (min-width: 1000px) and (max-width: 1200px) {
  .c-pickdate .pickdate-detail .detail-wrap .detail-ttl {
    margin-right: 20px;
  }

  .c-pickdate .pickdate-detail .detail-wrap .detail-ttl .txt {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.5625em;
  }

  .c-pickdate
    .pickdate-detail
    .detail-wrap
    .detail-ctn
    .detail-info
    .info-item:not(:last-child) {
    margin-right: 35px;
  }

  .c-pickdate
    .pickdate-detail
    .detail-wrap
    .detail-ctn
    .detail-info
    .info-item
    .icon {
    margin-right: 8px;
  }

  .c-pickdate
    .pickdate-detail
    .detail-wrap
    .detail-ctn
    .detail-info
    .info-item
    .txt {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.375em;
    padding-top: 6px;
  }

  .c-pickdate
    .pickdate-detail
    .detail-wrap
    .detail-ctn
    .detail-note
    .note-item:not(:last-child) {
    margin-right: 22px;
  }

  .c-pickdate
    .pickdate-detail
    .detail-wrap
    .detail-ctn
    .detail-note
    .note-item
    .txt {
    font-size: 10px;
    font-size: 1rem;
  }
}

@media only screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1000px) {
  .c-pickdate .pickdate-detail .detail-wrap .detail-ttl {
    margin-right: 15px;
  }

  .c-pickdate .pickdate-detail .detail-wrap .detail-ttl .txt {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.57143em;
  }

  .c-pickdate
    .pickdate-detail
    .detail-wrap
    .detail-ctn
    .detail-info
    .info-item:not(:last-child) {
    margin-right: 20px;
  }

  .c-pickdate
    .pickdate-detail
    .detail-wrap
    .detail-ctn
    .detail-info
    .info-item
    .icon {
    margin-right: 6px;
  }

  .c-pickdate
    .pickdate-detail
    .detail-wrap
    .detail-ctn
    .detail-info
    .info-item
    .txt {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.35714em;
    padding-top: 8px;
  }

  .c-pickdate
    .pickdate-detail
    .detail-wrap
    .detail-ctn
    .detail-note
    .note-item:not(:last-child) {
    margin-right: 15px;
  }

  .c-pickdate
    .pickdate-detail
    .detail-wrap
    .detail-ctn
    .detail-note
    .note-item
    .txt {
    font-size: 9px;
    font-size: 0.9rem;
  }
}

@media (max-width: 767px) {
  .c-pickdate {
    padding: 23px 16px 23px;
  }

  .c-pickdate
    .c-pickdate__inner
    .pickdate-wrap
    .pickdate-date
    .pickdate-item:not(:last-child) {
    margin-bottom: 9px;
  }

  .c-pickdate
    .c-pickdate__inner
    .pickdate-wrap
    .pickdate-date
    .pickdate-item
    input {
    background-image: url('/wp/wp-content/themes/wp-templ/assets/img/common/other/picker-icon.svg');
    background-repeat: no-repeat;
    background-position: right 12px top 7px;
    background-color: #f7f7f7;
    background-size: 49px 35px;
    padding: 16px 55px 13px 15px;
    font-size: 15px;
    font-size: 1.5rem;
  }

  .c-pickdate .c-pickdate__inner .pickdate-wrap .pickdate-promo {
    margin-top: 9px;
  }

  .c-pickdate .c-pickdate__inner .pickdate-wrap .pickdate-promo input {
    padding: 16px 10px 13px 15px;
    font-size: 15px;
    font-size: 1.5rem;
  }

  .c-pickdate .c-pickdate__inner .pickdate-wrap .pickdate-btn {
    margin-top: 10px;
  }

  .c-pickdate .pickdate-detail {
    width: 100%;
    margin-top: 24px;
    padding: 19px 0 7px;
  }

  .c-pickdate
    .pickdate-detail
    .detail-wrap
    .detail-ctn
    .detail-info
    .info-item:not(:last-child) {
    margin-bottom: 6px;
  }

  .c-pickdate
    .pickdate-detail
    .detail-wrap
    .detail-ctn
    .detail-info
    .info-item
    .icon {
    margin-right: 12px;
  }

  .c-pickdate
    .pickdate-detail
    .detail-wrap
    .detail-ctn
    .detail-info
    .info-item
    .txt {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.5em;
    padding-top: 4px;
  }

  .c-pickdate .pickdate-detail .detail-wrap .detail-ctn .detail-note {
    margin-top: 8px;
  }

  .c-pickdate
    .pickdate-detail
    .detail-wrap
    .detail-ctn
    .detail-note
    .note-item:not(:last-child) {
    margin-bottom: 6px;
  }

  .c-pickdate
    .pickdate-detail
    .detail-wrap
    .detail-ctn
    .detail-note
    .note-item
    .txt {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.5em;
    letter-spacing: 0.05em;
  }
}

.sg-wcm01 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .sg-wcm01 {
    padding: 0 20px;
  }
}

@media (max-width: 767px) {
  .sg-wcm01 {
    padding: 0 16px;
  }
}

.sg-wcm02 {
  width: 100%;
  max-width: 1004px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .sg-wcm02 {
    padding: 0 20px;
  }
}

@media (max-width: 767px) {
  .sg-wcm02 {
    padding: 0 16px;
  }
}

.sg-img01 {
  position: relative;
}

.sg-img01 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
}

.single-experiences .sec-single,
.single-exclusive-offers .sec-single {
  padding-bottom: 50px;
}

.single-experiences .sec-single .single-ctn,
.single-exclusive-offers .sec-single .single-ctn {
  position: relative;
  z-index: 2;
  background: #fff;
}

.single-experiences .sec-single .single-ctn .single-ttl,
.single-exclusive-offers .sec-single .single-ctn .single-ttl {
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 1.42857em;
  letter-spacing: 0.02em;
  font-family: 'Canela Regular';
  text-align: center;
  margin-bottom: 15px;
}

.single-experiences .sec-single .single-ctn .single-desc,
.single-exclusive-offers .sec-single .single-ctn .single-desc {
  max-width: 843px;
  margin: 0 auto;
}

.single-experiences .sec-single .single-ctn .single-desc p,
.single-exclusive-offers .sec-single .single-ctn .single-desc p {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.86667em;
  letter-spacing: 0em;
  color: #6e6e6e;
}

.single-experiences .sec-single .single-ctn .single-desc a,
.single-exclusive-offers .sec-single .single-ctn .single-desc a {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.86667em;
  letter-spacing: 0em;
  color: #6e6e6e;
}

.single-experiences .sec-single .single-ctn .single-desc h2,
.single-experiences .sec-single .single-ctn .single-desc h3,
.single-exclusive-offers .sec-single .single-ctn .single-desc h2,
.single-exclusive-offers .sec-single .single-ctn .single-desc h3 {
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 1.42857em;
  letter-spacing: 0.02em;
  font-family: 'Canela Regular';
  text-align: center;
  margin-bottom: 15px;
}

.single-experiences .sec-single .single-ctn .single-desc ul li,
.single-exclusive-offers .sec-single .single-ctn .single-desc ul li {
  position: relative;
  padding-left: 20px;
}

.single-experiences .sec-single .single-ctn .single-desc ul li::before,
.single-exclusive-offers .sec-single .single-ctn .single-desc ul li::before {
  position: absolute;
  content: '';
  display: block;
  top: 13px;
  left: 3px;
  margin: auto;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background-color: #000000;
}

.single-experiences .sec-single .single-ctn .single-desc ol,
.single-exclusive-offers .sec-single .single-ctn .single-desc ol {
  counter-reset: my-ol-counter;
}

.single-experiences .sec-single .single-ctn .single-desc ol li,
.single-exclusive-offers .sec-single .single-ctn .single-desc ol li {
  position: relative;
  padding-left: 20px;
}

.single-experiences .sec-single .single-ctn .single-desc ol li::before,
.single-exclusive-offers .sec-single .single-ctn .single-desc ol li::before {
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
  counter-increment: my-ol-counter;
  content: counter(my-ol-counter) '.';
  min-width: fit-content;
}

.single-experiences .sec-single .single-ctn .c-btn01,
.single-exclusive-offers .sec-single .single-ctn .c-btn01 {
  clear: both;
}

.single-experiences .sec-single .archive-btn,
.single-exclusive-offers .sec-single .archive-btn {
  text-align: center;
  clear: both;
}

.single-experiences .sec-single .archive-btn .archive-link .txt,
.single-exclusive-offers .sec-single .archive-btn .archive-link .txt {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.71429em;
  letter-spacing: 0em;
  text-decoration: underline;
  text-underline-offset: 1px;
}

@media (min-width: 768px) {
  .single-experiences .sec-single,
  .single-exclusive-offers .sec-single {
    margin-top: 105px;
  }

  .single-experiences .sec-single .single-bg,
  .single-exclusive-offers .sec-single .single-bg {
    margin-top: 68px;
  }

  .single-experiences .sec-single .single-bg:before,
  .single-exclusive-offers .sec-single .single-bg:before {
    content: '';
    display: block;
    padding-top: calc(800 / 1440 * 100%);
  }

  .single-experiences .sec-single .single-ctn,
  .single-exclusive-offers .sec-single .single-ctn {
    margin-top: -150px;
    padding: 61px 20px 60px;
  }

  .single-experiences .sec-single .single-ctn .single-ttl,
  .single-exclusive-offers .sec-single .single-ctn .single-ttl {
    font-size: 28px;
    font-size: 2.8rem;
    line-height: 1.42857em;
    letter-spacing: 0.02em;
  }

  .single-experiences .sec-single .single-ctn .single-desc p:not(:last-child),
  .single-exclusive-offers
    .sec-single
    .single-ctn
    .single-desc
    p:not(:last-child) {
    margin-bottom: 15px;
  }

  .single-experiences .sec-single .single-ctn .single-desc h3,
  .single-exclusive-offers .sec-single .single-ctn .single-desc h3 {
    font-size: 28px;
    font-size: 2.8rem;
    line-height: 1.42857em;
    letter-spacing: 0.02em;
  }

  .single-experiences .sec-single .single-ctn .c-btn01,
  .single-exclusive-offers .sec-single .single-ctn .c-btn01 {
    margin-top: 23px;
  }

  .single-experiences .sec-single .archive-btn,
  .single-exclusive-offers .sec-single .archive-btn {
    margin-top: 16px;
  }
}

@media (max-width: 767px) {
  .single-experiences .sec-single,
  .single-exclusive-offers .sec-single {
    margin-top: 80px;
  }

  .single-experiences .sec-single .single-bg,
  .single-exclusive-offers .sec-single .single-bg {
    margin-top: 46px;
  }

  .single-experiences .sec-single .single-bg:before,
  .single-exclusive-offers .sec-single .single-bg:before {
    content: '';
    display: block;
    padding-top: calc(478 / 375 * 100%);
  }

  .single-experiences .sec-single .single-ctn,
  .single-exclusive-offers .sec-single .single-ctn {
    margin-top: -75px;
    padding: 29px 16px 28px;
  }

  .single-experiences .sec-single .single-ctn .single-desc p:not(:last-child),
  .single-exclusive-offers
    .sec-single
    .single-ctn
    .single-desc
    p:not(:last-child) {
    margin-bottom: 12px;
  }

  .single-experiences .sec-single .single-ctn .single-desc h3,
  .single-exclusive-offers .sec-single .single-ctn .single-desc h3 {
    font-size: 28px;
    font-size: 2.8rem;
    line-height: 1.35714em;
    letter-spacing: 0.02em;
  }

  .single-experiences .sec-single .single-ctn .c-btn01,
  .single-exclusive-offers .sec-single .single-ctn .c-btn01 {
    margin-top: 19px;
  }

  .single-experiences .sec-single .archive-btn,
  .single-exclusive-offers .sec-single .archive-btn {
    margin-top: 10px;
  }
}

.fancybox-wrap.fancybox-opened .fancybox-skin {
  box-shadow: none;
  padding: 20px !important;
  background: #fff;
  border-radius: 0;
}

.fancybox-wrap .fancybox-skin .fancybox-close {
  width: 29px;
  height: 29px;
  background-image: url('data:image/svg+xml,<svg width="29" height="29" viewBox="0 0 29 29" fill="none" xmlns="http://www.w3.org/2000/svg"><rect y="28" width="39" height="1" transform="rotate(-45 0 28)" fill="white"/><rect x="1" width="39" height="1" transform="rotate(45 1 0)" fill="white"/></svg>');
  background-repeat: no-repeat;
  background-color: transparent;
  background-position: center;
  background-size: 100% 100%;
  right: 0;
  top: -48px;
}

.fancybox-wrap .popup-inner .num-slide {
  color: #fff;
}

@media (max-width: 767px) {
  .fancybox-wrap .popup-inner .num-slide {
    padding: 0 23px;
  }
}

.popup-wrapper {
  display: none;
  overflow: hidden;
}

#wrap .fancybox-overlay {
  background: rgba(0, 0, 0, 0.75);
}

.js-popupImg img {
  cursor: pointer;
  opacity: 1;
  transition: 0.5s;
  cursor: pointer;
}

@media only screen and (min-width: 1025px) {
  .js-popupImg img:hover {
    opacity: 0.7;
    transition: 0.5s;
  }
}

.popup-gallery,
.popup-gallery-about {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: 0.3s;
}

.popup-gallery .popup-overlay,
.popup-gallery-about .popup-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.75);
}

.popup-gallery .popup-inner,
.popup-gallery-about .popup-inner {
  position: relative;
  max-width: 1050px;
  width: calc(100% - 32px);
  display: inline-block;
  margin: 0 auto;
}

.popup-gallery .popup-box,
.popup-gallery-about .popup-box {
  position: relative;
}

.popup-gallery .popup-box .photo,
.popup-gallery-about .popup-box .photo {
  text-align: center;
}

.popup-gallery .popup-box .photo img,
.popup-gallery-about .popup-box .photo img {
  opacity: 1;
  margin-left: auto;
  margin-right: auto;
  max-height: calc(100vh - 110px);
}

.popup-gallery .popup-box .slick-dots,
.popup-gallery-about .popup-box .slick-dots {
  bottom: -20px;
}

@media (min-width: 768px) {
  .popup-gallery .popup-box .slick-dots,
  .popup-gallery-about .popup-box .slick-dots {
    opacity: 0;
  }
}

.popup-gallery.is-active,
.popup-gallery-about.is-active {
  opacity: 1;
  transition: 0.3s;
  pointer-events: inherit;
}

.popup-gallery.noArrows .popup-prev,
.popup-gallery.noArrows .popup-next,
.popup-gallery-about.noArrows .popup-prev,
.popup-gallery-about.noArrows .popup-next {
  opacity: 0;
  pointer-events: none;
  transition: 0s;
}

.popup-gallery .slick-prev,
.popup-gallery .slick-next,
.popup-gallery-about .slick-prev,
.popup-gallery-about .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-image: url('/wp/wp-content/themes/wp-templ/assets/img/common/other/popup_prev.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px 40px;
  cursor: pointer;
  opacity: 1;
  transition: 0.3s;
  z-index: 1;
  cursor: pointer;
}

@media (max-width: 767px) {
  .popup-gallery .slick-prev,
  .popup-gallery .slick-next,
  .popup-gallery-about .slick-prev,
  .popup-gallery-about .slick-next {
    display: none !important;
  }
}

@media only screen and (min-width: 1025px) {
  .popup-gallery .slick-prev:hover,
  .popup-gallery .slick-next:hover,
  .popup-gallery-about .slick-prev:hover,
  .popup-gallery-about .slick-next:hover {
    opacity: 0.7;
    transition: 0.3s;
  }
}

.popup-gallery .slick-track,
.popup-gallery-about .slick-track {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
}

.popup-gallery .slick-prev,
.popup-gallery-about .slick-prev {
  left: -80px;
}

@media (max-width: 767px) {
  .popup-gallery .slick-prev,
  .popup-gallery-about .slick-prev {
    left: 0;
    display: none;
  }
}

.popup-gallery .slick-next,
.popup-gallery-about .slick-next {
  background-image: url('/wp/wp-content/themes/wp-templ/assets/img/common/other/popup_next.svg');
  right: -80px;
}

@media (max-width: 767px) {
  .popup-gallery .slick-next,
  .popup-gallery-about .slick-next {
    right: 0;
    display: none;
  }
}

.popup-gallery .popup-close,
.popup-gallery-about .popup-close {
  display: block;
  position: absolute;
  z-index: 9;
  top: -45px;
  right: 2px;
  width: 29px;
  height: 29px;
  cursor: pointer;
  opacity: 1;
  transition: 0.3s;
  cursor: pointer;
}

@media only screen and (min-width: 1025px) {
  .popup-gallery .popup-close:hover,
  .popup-gallery-about .popup-close:hover {
    opacity: 0.7;
    transition: 0.3s;
  }
}

@media (max-width: 767px) {
  .popup-gallery .popup-close,
  .popup-gallery-about .popup-close {
    width: 23px;
    height: 23px;
    top: -31px;
  }
}

.popup-gallery .popup-close img,
.popup-gallery-about .popup-close img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ko .c-ttl01 .sub {
  font-family: 'Noto Serif KR', serif;
}

@media (min-width: 768px) {
  .ko .c-ttl01 .sub {
    margin-bottom: 15px;
  }
}

.ko .c-ttl01 .title {
  font-family: 'Noto Serif KR', serif;
  font-weight: 600;
}

@media (min-width: 768px) {
  .ko .c-ttl01 .title {
    font-size: 40px;
    font-size: 4rem;
    line-height: 1.2em;
    letter-spacing: 0.02em;
  }
}

.ko
  .c-pickdate
  .c-pickdate__inner
  .pickdate-wrap
  .pickdate-date
  .pickdate-item
  input {
  font-family: 'Noto Sans KR', sans-serif;
  letter-spacing: 0.01em;
}

@media (min-width: 768px) {
  .ko
    .c-pickdate
    .c-pickdate__inner
    .pickdate-wrap
    .pickdate-date
    .pickdate-item
    input {
    padding: 14px 55px 13px 17px;
  }
}

@media (max-width: 767px) {
  .ko
    .c-pickdate
    .c-pickdate__inner
    .pickdate-wrap
    .pickdate-date
    .pickdate-item
    input {
    padding: 14px 55px 12px 15px;
  }
}

.ko .c-pickdate .c-pickdate__inner .pickdate-wrap .pickdate-promo input {
  font-family: 'Noto Sans KR', sans-serif;
  letter-spacing: 0.01em;
  padding: 13px 10px 14px 17px;
}

@media (max-width: 767px) {
  .ko .c-pickdate .c-pickdate__inner .pickdate-wrap .pickdate-btn {
    margin-top: 9px;
  }
}

.ko .c-pickdate .c-pickdate__inner .pickdate-wrap .pickdate-btn .btn-submit {
  font-family: 'Noto Sans KR', sans-serif;
  padding: 14px 2px 13px;
}

.ko .c-btn01 a,
.ko .c-btn01 .link {
  font-family: 'Noto Sans KR', sans-serif;
}

@media (min-width: 768px) {
  .ko .c-btn01 a,
  .ko .c-btn01 .link {
    padding-bottom: 9px;
    cursor: pointer;
  }
}

@media only screen and (min-width: 768px) and (min-width: 1025px) {
  .ko .c-btn01 a:hover:hover:after,
  .ko .c-btn01 .link:hover:hover:after {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .ko .c-btn01 a:after,
  .ko .c-btn01 .link:after {
    width: 40px;
  }
}

.ko .c-slide01 .ttl {
  font-family: 'Noto Serif KR', serif;
  font-weight: 600;
}

.ko .c-ttl02 {
  font-family: 'Noto Serif KR', serif;
}

@media (min-width: 768px) {
  .ko .c-ttl02 {
    font-size: 48px;
    font-size: 4.8rem;
    line-height: 1.16667em;
    letter-spacing: 0.02em;
    font-weight: 600;
  }
}

@media (max-width: 767px) {
  .ko .c-ttl02 {
    font-weight: 600;
  }
}

.ko .c-grid05 .ttl {
  font-family: 'Noto Serif KR', serif;
  font-weight: 600;
}

@media (max-width: 767px) {
  .ko .c-grid05 .ttl {
    font-size: 20px;
    font-size: 2rem;
    letter-spacing: 0.02em;
    font-weight: 600;
  }
}

.ko .single-experiences .sec-single .single-ctn .single-desc h3,
.ko .single-exclusive-offers .sec-single .single-ctn .single-desc h3 {
  font-family: 'Noto Serif KR', serif;
  font-weight: 600;
  font-size: 32px;
}

.ko .c-slide02 .ttl {
  font-family: 'Noto Serif KR', serif;
  font-weight: 600;
}

.ko .c-ttl03 {
  font-family: 'Noto Serif KR', serif;
}

@media (min-width: 768px) {
  .ko .c-ttl03 {
    font-size: 32px;
    font-size: 3.2rem;
    line-height: 1.25em;
    letter-spacing: 0.02em;
    font-weight: 600;
  }
}

@media (max-width: 767px) {
  .ko .c-ttl03 {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 1.25em;
    letter-spacing: 0.02em;
    font-weight: 600;
  }
}

.ko .c-grid01 .ttl {
  font-family: 'Noto Serif KR', serif;
  font-weight: 600;
}

@font-face {
  font-family: 'Acherus Grotesque Black';
  font-weight: 900;
  font-style: normal;
  font-display: swap;
  src: url('../font/acherus_grotesque_black.otf');
}

@font-face {
  font-family: 'Acherus Grotesque Black Italic';
  font-weight: 900;
  font-style: italic;
  font-display: swap;
  src: url('../font/acherus_grotesque_blackitalic.otf');
}

@font-face {
  font-family: 'Acherus Grotesque Extra Bold';
  font-weight: 800;
  font-style: normal;
  font-display: swap;
  src: url('../font/acherus_grotesque_extrabold.otf');
}

@font-face {
  font-family: 'Acherus Grotesque Extra Bold Italic';
  font-weight: 800;
  font-style: italic;
  font-display: swap;
  src: url('../font/acherus_grotesque_extraboldItalic.otf');
}

@font-face {
  font-family: 'Acherus Grotesque Bold';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url('../font/acherus_grotesque_bold.otf');
}

@font-face {
  font-family: 'Acherus Grotesque Bold Italic';
  font-weight: 700;
  font-style: italic;
  font-display: swap;
  src: url('../font/acherus_grotesque_bolditalic.otf');
}

@font-face {
  font-family: 'Acherus Grotesque Medium';
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url('../font/acherus_grotesque_medium.otf');
}

@font-face {
  font-family: 'Acherus Grotesque Medium Italic';
  font-weight: 500;
  font-style: italic;
  font-display: swap;
  src: url('../font/acherus_grotesque_mediumitalic.otf');
}

@font-face {
  font-family: 'Acherus Grotesque Regular';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('../font/acherus_grotesque_regular.otf');
}

@font-face {
  font-family: 'Acherus Grotesque Regular Italic';
  font-weight: 400;
  font-style: italic;
  font-display: swap;
  src: url('../font/acherus_grotesque_regularitalic.otf');
}

@font-face {
  font-family: 'Acherus Grotesque Light';
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  src: url('../font/acherus_grotesque_light.otf');
}

@font-face {
  font-family: 'Acherus Grotesque Light Italic';
  font-weight: 300;
  font-style: italic;
  font-display: swap;
  src: url('../font/acherus_grotesque_lightitalic.otf');
}

@font-face {
  font-family: 'Acherus Grotesque Ultra Light';
  font-weight: 200;
  font-style: normal;
  font-display: swap;
  src: url('../font/acherus_grotesque_ultralight.otf');
}

@font-face {
  font-family: 'Acherus Grotesque Ultra Light Italic';
  font-weight: 200;
  font-style: italic;
  font-display: swap;
  src: url('../font/acherus_grotesque_ultralightitalic.otf');
}

@font-face {
  font-family: 'Acherus Grotesque Thin';
  font-weight: 100;
  font-style: normal;
  font-display: swap;
  src: url('../font/acherus_grotesque_thin.otf');
}

@font-face {
  font-family: 'Acherus Grotesque Thin Italic';
  font-weight: 100;
  font-style: italic;
  font-display: swap;
  src: url('../font/acherus_grotesque_thinitalic.otf');
}

@font-face {
  font-family: 'Canela Black';
  font-weight: 900;
  font-style: normal;
  font-display: swap;
  src: url('../font/canela-black.otf');
}

@font-face {
  font-family: 'Canela Black Italic';
  font-weight: 900;
  font-style: italic;
  font-display: swap;
  src: url('../font/canela-blackitalic.otf');
}

@font-face {
  font-family: 'Canela Bold';
  font-weight: 800;
  font-style: normal;
  font-display: swap;
  src: url('../font/canela-bold.otf');
}

@font-face {
  font-family: 'Canela Bold Italic';
  font-weight: 800;
  font-style: italic;
  font-display: swap;
  src: url('../font/canela-bolditalic.otf');
}

@font-face {
  font-family: 'Canela Medium';
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url('../font/canela-medium.otf');
}

@font-face {
  font-family: 'Canela Medium Italic';
  font-weight: 500;
  font-style: italic;
  font-display: swap;
  src: url('../font/canela-mediumitalic.otf');
}

@font-face {
  font-family: 'Canela Regular';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('../font/canela-regular.otf');
}

@font-face {
  font-family: 'Canela Regular Italic';
  font-weight: 400;
  font-style: italic;
  font-display: swap;
  src: url('../font/canela-regularitalic.otf');
}

@font-face {
  font-family: 'Canela Light';
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  src: url('../font/canela-light.otf');
}

@font-face {
  font-family: 'Canela Light Italic';
  font-weight: 300;
  font-style: italic;
  font-display: swap;
  src: url('../font/canela-lightitalic.otf');
}

@font-face {
  font-family: 'Canela Thin';
  font-weight: 100;
  font-style: normal;
  font-display: swap;
  src: url('../font/canela-thin.otf');
}

@font-face {
  font-family: 'Canela Thin Italic';
  font-weight: 100;
  font-style: italic;
  font-display: swap;
  src: url('../font/canela-thinitalic.otf');
}

#footer {
  background: rgba(0, 0, 0, 0.09);
}

@media (min-width: 768px) {
  #footer {
    padding: 39px 0 24px;
  }
}

@media (max-width: 767px) {
  #footer {
    padding: 27px 0 19px;
  }
}

.f-wcm01 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .f-wcm01 {
    padding: 0 20px;
  }
}

@media (max-width: 767px) {
  .f-wcm01 {
    padding: 0 16px;
  }
}

.f-ttl01 {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.44444em;
  letter-spacing: 0.02em;
  font-family: 'Canela Regular';
  color: #000;
}

@media only screen and (min-width: 768px) and (min-width: 1000px) and (max-width: 1200px) {
  .f-ttl01 {
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.47059em;
  }
}

@media only screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1000px) {
  .f-ttl01 {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.4375em;
  }
}

@media (max-width: 767px) {
  .f-ttl01 {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.375em;
    letter-spacing: 0.02em;
  }

  .f-ttl01.is-mar02 {
    margin-top: 4px;
  }

  .f-ttl01.is-medium {
    font-family: 'Canela Medium';
  }
}

@media (min-width: 768px) {
  .f-ttl01.is-mar {
    margin-top: 39px;
  }
}

@media (max-width: 767px) {
  .f-ttl01.is-mar {
    margin-top: 17px;
  }
}

.f-info .info-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  color: #000;
}

@media (min-width: 768px) {
  .f-info {
    margin-top: 11px;
  }

  .f-info .info-item {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.375em;
  }
}

@media only screen and (min-width: 768px) and (min-width: 1000px) and (max-width: 1200px) {
  .f-info .info-item {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.35714em;
  }
}

@media only screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1000px) {
  .f-info .info-item {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.41667em;
  }
}

@media (min-width: 768px) {
  .f-info .info-item:not(:last-child) {
    margin-bottom: 8px;
  }

  .f-info .info-item .head {
    width: 76px;
  }
}

@media only screen and (min-width: 768px) and (min-width: 1000px) and (max-width: 1200px) {
  .f-info .info-item .head {
    width: 65px;
  }
}

@media only screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1000px) {
  .f-info .info-item .head {
    width: 55px;
  }
}

@media (min-width: 768px) {
  .f-info .info-item .desc {
    flex: 1;
  }
}

@media (max-width: 767px) {
  .f-info {
    margin-top: 6px;
  }

  .f-info .info-item {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.53846em;
  }

  .f-info .info-item:not(:last-child) {
    margin-bottom: 4px;
  }

  .f-info .info-item .head {
    width: 64px;
  }

  .f-info .info-item .desc {
    flex: 1;
  }
}

.ft-wrap01 {
  border-bottom: solid 1px #c6c6c6;
}

.ft-wrap01 .col02-social {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.ft-wrap01 .col02-desc .txt {
  color: #000;
}

.ft-wrap01 .col01-info .info-item {
  color: #000;
}

.ft-wrap01 .ft-col02 {
  padding-top: 16px;
}

.ft-wrap01 .ft-col03 {
  padding-top: 16px;
}

.ft-wrap01 .ft-col03 .col03-awards {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

@media (min-width: 768px) {
  .ft-wrap01 {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
    padding-bottom: 40px;
  }

  .ft-wrap01 .col02-social {
    margin-top: 38px;
  }
}

@media only screen and (min-width: 768px) and (min-width: 1000px) and (max-width: 1200px) {
  .ft-wrap01 .col02-social {
    margin-top: 25px;
  }
}

@media only screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1000px) {
  .ft-wrap01 .col02-social {
    margin-top: 15px;
  }
}

@media (min-width: 768px) {
  .ft-wrap01 .col02-social .social-item:not(:last-child) {
    margin-right: 19px;
  }

  .ft-wrap01 .col02-desc {
    margin-top: 34px;
  }
}

@media only screen and (min-width: 768px) and (min-width: 1000px) and (max-width: 1200px) {
  .ft-wrap01 .col02-desc {
    margin-top: 25px;
  }
}

@media only screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1000px) {
  .ft-wrap01 .col02-desc {
    margin-top: 15px;
  }
}

@media (min-width: 768px) {
  .ft-wrap01 .col02-desc .txt {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.57143em;
  }
}

@media only screen and (min-width: 768px) and (min-width: 1000px) and (max-width: 1200px) {
  .ft-wrap01 .col02-desc .txt {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.53846em;
  }
}

@media only screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1000px) {
  .ft-wrap01 .col02-desc .txt {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.58333em;
  }
}

@media (min-width: 768px) {
  .ft-wrap01 .col01-info {
    margin-top: 17px;
  }

  .ft-wrap01 .col01-info .info-item {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.53846em;
  }
}

@media only screen and (min-width: 768px) and (min-width: 1000px) and (max-width: 1200px) {
  .ft-wrap01 .col01-info .info-item {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.5em;
  }
}

@media only screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1000px) {
  .ft-wrap01 .col01-info .info-item {
    font-size: 11px;
    font-size: 1.1rem;
    line-height: 1.54545em;
  }
}

@media (min-width: 768px) {
  .ft-wrap01 .col01-info .info-item:not(:last-child) {
    margin-bottom: 7px;
  }

  .ft-wrap01 .col01-check {
    margin-top: 23px;
  }

  .ft-wrap01 .ft-col01 {
    width: calc(230 / 1160 * 100%);
  }

  .ft-wrap01 .ft-col02 {
    width: calc(410 / 1160 * 100%);
    padding-top: 16px;
  }
}

@media only screen and (min-width: 768px) and (min-width: 1000px) and (max-width: 1200px) {
  .ft-wrap01 .ft-col02 {
    width: calc(420 / 1160 * 100%);
    padding-top: 13px;
  }
}

@media only screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1000px) {
  .ft-wrap01 .ft-col02 {
    width: calc(430 / 1160 * 100%);
    padding-top: 10px;
  }
}

@media (min-width: 768px) {
  .ft-wrap01 .ft-col03 {
    width: calc(390 / 1160 * 100%);
  }

  .ft-wrap01 .ft-col03 .col03-awards {
    margin-top: 11px;
  }

  .ft-wrap01 .ft-col03 .col03-awards .awards-item img {
    border-radius: 8px;
  }

  .ft-wrap01 .ft-col03 .col03-awards .awards-item:not(:last-child) {
    margin-right: 5px;
  }
}

@media (max-width: 767px) {
  .ft-wrap01 {
    padding-bottom: 10px;
  }

  .ft-wrap01 .col02-social {
    margin-top: 15px;
  }

  .ft-wrap01 .col02-social .social-item:not(:last-child) {
    margin-right: 16px;
  }

  .ft-wrap01 .col02-desc .txt {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.66667em;
  }

  .ft-wrap01 .col01-info {
    margin-top: 6px;
  }

  .ft-wrap01 .col01-info .info-item {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.5em;
  }

  .ft-wrap01 .col01-info .info-item:not(:last-child) {
    margin-bottom: 6px;
  }

  .ft-wrap01 .col01-check {
    margin-top: 10px;
  }

  .ft-wrap01 .col01-check img {
    max-width: 115px;
  }

  .ft-wrap01 .ft-col01 .col01-logo {
    text-align: center;
  }

  .ft-wrap01 .ft-col01 .col01-logo img {
    width: calc(101 / 343 * 100%);
  }

  .ft-wrap01 .ft-col03 .col03-awards {
    margin-top: 6px;
  }

  .ft-wrap01 .ft-col03 .col03-awards .awards-item {
    max-width: 59px;
  }

  .ft-wrap01 .ft-col03 .col03-awards .awards-item:not(:last-child) {
    margin-right: 7px;
  }

  .ft-wrap01 .ctnsp {
    border-top: solid 1px #c6c6c6;
    margin-top: 15px;
    padding-top: 17px;
  }
}

.ft-wrap02 .wrap02-policy .policy-link {
  text-decoration: underline;
  text-underline-offset: 1px;
}

.ft-wrap02 .wrap02-policy .policy-link .txt {
  color: #000;
}

.ft-wrap02 .wrap02-copy .copy-txt {
  color: #000;
}

@media (min-width: 768px) {
  .ft-wrap02 {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
    margin-top: 21px;
  }

  .ft-wrap02 .wrap02-policy .policy-link .txt {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

@media only screen and (min-width: 768px) and (min-width: 1000px) and (max-width: 1200px) {
  .ft-wrap02 .wrap02-policy .policy-link .txt {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

@media only screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1000px) {
  .ft-wrap02 .wrap02-policy .policy-link .txt {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

@media (min-width: 768px) {
  .ft-wrap02 .wrap02-copy .copy-txt {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

@media only screen and (min-width: 768px) and (min-width: 1000px) and (max-width: 1200px) {
  .ft-wrap02 .wrap02-copy .copy-txt {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

@media only screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1000px) {
  .ft-wrap02 .wrap02-copy .copy-txt {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

@media (max-width: 767px) {
  .ft-wrap02 {
    margin-top: 4px;
  }

  .ft-wrap02 .wrap02-policy .policy-link .txt {
    font-size: 12px;
    font-size: 1.2rem;
  }

  .ft-wrap02 .wrap02-copy {
    margin-top: -3px;
  }

  .ft-wrap02 .wrap02-copy .copy-txt {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.fixBtn {
  position: fixed;
  z-index: 999;
}

.fixBtn .fixBtn-lst .fixBtn-item .fixBtn-link {
  display: block;
  border-radius: 100%;
  overflow: hidden;
}

.fixBtn .fixBtn-lst .fixBtn-item .fixBtn-link.awards-btn {
  position: relative;
  overflow: visible;
  cursor: pointer;
}

@media only screen and (min-width: 1025px) {
  .fixBtn .fixBtn-lst .fixBtn-item .fixBtn-link.awards-btn:hover {
    opacity: 1;
  }

  .fixBtn .fixBtn-lst .fixBtn-item .fixBtn-link.awards-btn:hover .awards-tag {
    transform: translateX(0);
    width: 125px;
  }
}

.fixBtn
  .fixBtn-lst
  .fixBtn-item
  .fixBtn-link.awards-btn.hover-active
  .awards-tag {
  transform: translateX(0);
}

@media (min-width: 768px) {
  .fixBtn
    .fixBtn-lst
    .fixBtn-item
    .fixBtn-link.awards-btn.hover-active
    .awards-tag {
    width: 125px;
  }
}

@media (max-width: 767px) {
  .fixBtn
    .fixBtn-lst
    .fixBtn-item
    .fixBtn-link.awards-btn.hover-active
    .awards-tag {
    width: 118px;
  }
}

.fixBtn .fixBtn-lst .fixBtn-item .fixBtn-link.awards-btn .awards-tag {
  position: absolute;
  z-index: -1;
  right: calc(100% + 3px);
  font-family: 'Acherus Grotesque Bold';
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0em;
  font-weight: 700;
  color: #fff;
  background: #ffa800;
  white-space: nowrap;
  width: 0;
  transition: ease all 0.3s;
}

@media (min-width: 768px) {
  .fixBtn .fixBtn-lst .fixBtn-item .fixBtn-link.awards-btn .awards-tag {
    transform: translateX(30px);
    top: calc(50% - 16.5px);
    padding: 3px 9px 2px 12px;
  }
}

@media (max-width: 767px) {
  .fixBtn .fixBtn-lst .fixBtn-item .fixBtn-link.awards-btn .awards-tag {
    transform: translateX(26px);
    top: calc(50% - 13px);
    padding: 0 5px 0 9px;
  }
}

.fixBtn .fixBtn-lst .fixBtn-item .fixBtn-link.awards-btn .awards-tag .txt {
  display: block;
  width: 100%;
  overflow: hidden;
}

.fixBtn .fixBtn-lst .fixBtn-item .fixBtn-link.awards-btn .awards-tag:before {
  content: '';
  position: absolute;
  right: -6px;
  top: 0;
  width: 8px;
  height: 100%;
  background-image: url('/wp/wp-content/themes/wp-templ/assets/img/common/footer/tag-decor.png');
  background-repeat: no-repeat;
  background-color: transparent;
  background-position: center;
  background-size: 100% 100%;
}

@media (min-width: 768px) {
  .fixBtn {
    bottom: 30px;
    right: 28px;
  }

  .fixBtn .fixBtn-lst .fixBtn-item:not(:last-child) {
    margin-bottom: 12px;
  }
}

@media (max-width: 767px) {
  .fixBtn {
    bottom: 10px;
    right: 8px;
  }

  .fixBtn .fixBtn-lst .fixBtn-item {
    max-width: 46px;
  }

  .fixBtn .fixBtn-lst .fixBtn-item:not(:last-child) {
    margin-bottom: 8px;
  }
}

@media (min-width: 768px) {
  .vi .ft-wrap01 .ft-col02 {
    width: calc(430 / 1160 * 100%);
  }
}

@media only screen and (min-width: 768px) and (min-width: 1000px) and (max-width: 1200px) {
  .vi .ft-wrap01 .ft-col02 {
    width: calc(480 / 1160 * 100%);
  }
}

@media (min-width: 768px) {
  .vi .ft-wrap01 .ft-col03 {
    width: calc(390 / 1160 * 100%);
  }
}

.vi .fixBtn .fixBtn-lst .fixBtn-item .fixBtn-link.awards-btn {
  cursor: pointer;
}

@media only screen and (min-width: 1025px) {
  .vi .fixBtn .fixBtn-lst .fixBtn-item .fixBtn-link.awards-btn:hover {
    opacity: 1;
  }

  .vi
    .fixBtn
    .fixBtn-lst
    .fixBtn-item
    .fixBtn-link.awards-btn:hover
    .awards-tag {
    transform: translateX(0);
    width: 166px;
  }
}

.vi
  .fixBtn
  .fixBtn-lst
  .fixBtn-item
  .fixBtn-link.awards-btn.hover-active
  .awards-tag {
  transform: translateX(0);
}

@media (min-width: 768px) {
  .vi
    .fixBtn
    .fixBtn-lst
    .fixBtn-item
    .fixBtn-link.awards-btn.hover-active
    .awards-tag {
    width: 166px;
  }
}

@media (max-width: 767px) {
  .vi
    .fixBtn
    .fixBtn-lst
    .fixBtn-item
    .fixBtn-link.awards-btn.hover-active
    .awards-tag {
    width: 159px;
  }
}

.ko .ft-wrap01 .col01-info .info-item:not(:last-child) {
  margin-bottom: 6px;
}

@media (min-width: 768px) {
  .ko .ft-wrap01 .col01-check {
    margin-top: 13px;
  }
}

.ko .f-ttl01 {
  font-family: 'Noto Serif KR', serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

@media (max-width: 767px) {
  .ko .f-ttl01 {
    font-size: 18px;
  }
}

@media (min-width: 768px) {
  .ko .f-info .info-item .head {
    width: 61px;
  }
}

@media (max-width: 767px) {
  .ko .f-info .info-item .head {
    width: 52px;
  }
}

@media (min-width: 768px) {
  .ko .f-info .info-item .head.spec {
    width: 46px;
  }
}

@media (max-width: 767px) {
  .ko .f-info .info-item .head.spec {
    width: 40px;
  }
}

.ko .ft-wrap02 .wrap02-policy .policy-link {
  text-underline-offset: 2px;
}

.ko .fixBtn .fixBtn-lst .fixBtn-item .fixBtn-link.awards-btn {
  cursor: pointer;
}

@media only screen and (min-width: 1025px) {
  .ko .fixBtn .fixBtn-lst .fixBtn-item .fixBtn-link.awards-btn:hover {
    opacity: 1;
  }

  .ko
    .fixBtn
    .fixBtn-lst
    .fixBtn-item
    .fixBtn-link.awards-btn:hover
    .awards-tag {
    transform: translateX(0);
    width: 88px;
  }
}

.ko
  .fixBtn
  .fixBtn-lst
  .fixBtn-item
  .fixBtn-link.awards-btn.hover-active
  .awards-tag {
  transform: translateX(0);
}

@media (min-width: 768px) {
  .ko
    .fixBtn
    .fixBtn-lst
    .fixBtn-item
    .fixBtn-link.awards-btn.hover-active
    .awards-tag {
    width: 88px;
  }
}

@media (max-width: 767px) {
  .ko
    .fixBtn
    .fixBtn-lst
    .fixBtn-item
    .fixBtn-link.awards-btn.hover-active
    .awards-tag {
    width: 80px;
  }
}

.ko .fixBtn .fixBtn-lst .fixBtn-item .fixBtn-link.awards-btn .awards-tag {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0em;
  font-weight: 700;
}

.header {
  position: fixed;
  left: auto;
  top: auto;
  z-index: 1000;
  width: 100%;
  padding: 18px 10px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header .inHeader {
  margin: 0 auto;
  position: relative;
  z-index: 2000;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
}

.header .menuBox {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: end;
  -moz-align-items: end;
  -ms-align-items: end;
  -o-align-items: end;
  align-items: end;
  padding-bottom: 4px;
}

.header .menuBox .menuBox-inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.header
  .menuBox
  .menuBox-inner
  .menuBox-item.is-active
  .menuBox-item__link:before {
  width: 100%;
}

.header .menuBox .menuBox-inner .menuBox-item__link {
  position: relative;
  cursor: pointer;
}

@media only screen and (min-width: 1025px) {
  .header .menuBox .menuBox-inner .menuBox-item__link:hover {
    opacity: 1;
  }

  .header .menuBox .menuBox-inner .menuBox-item__link:hover:before {
    width: 100%;
  }
}

.header .menuBox .menuBox-inner .menuBox-item__link:before {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  background: #fff;
  bottom: -3px;
  left: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header .menuBox .menuBox-inner .txt {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 0em;
  letter-spacing: 0em;
  font-family: 'Acherus Grotesque Medium';
  color: #fff;
}

@media only screen and (min-width: 1000px) and (max-width: 1200px) {
  .header .menuBox .menuBox-inner .txt {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 0em;
    letter-spacing: 0em;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1000px) {
  .header .menuBox .menuBox-inner .txt {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 0em;
    letter-spacing: 0em;
  }
}

.header .menuLeft {
  margin-right: 3.2%;
}

@media only screen and (min-width: 1000px) and (max-width: 1200px) {
  .header .menuLeft {
    margin-right: 2.5%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1000px) {
  .header .menuLeft {
    margin-right: 1.8%;
  }
}

.header .menuLeft .menuBox-item:not(:last-child) {
  margin-right: 48px;
}

@media only screen and (min-width: 1000px) and (max-width: 1200px) {
  .header .menuLeft .menuBox-item:not(:last-child) {
    margin-right: 29px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1000px) {
  .header .menuLeft .menuBox-item:not(:last-child) {
    margin-right: 15px;
  }
}

.header .menuRight {
  margin-left: 3.2%;
}

@media only screen and (min-width: 1000px) and (max-width: 1200px) {
  .header .menuRight {
    margin-left: 2.5%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1000px) {
  .header .menuRight {
    margin-left: 1.8%;
  }
}

.header .menuRight .menuBox-item:not(:last-child) {
  margin-right: 38px;
}

@media only screen and (min-width: 1000px) and (max-width: 1200px) {
  .header .menuRight .menuBox-item:not(:last-child) {
    margin-right: 29px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1000px) {
  .header .menuRight .menuBox-item:not(:last-child) {
    margin-right: 15px;
  }
}

.header .menuRight .menuBox-item.item-lang {
  position: relative;
}

.header .menuRight .menuBox-item.item-lang .lang-link {
  position: relative;
  padding-right: 14px;
  cursor: pointer;
}

.header .menuRight .menuBox-item.item-lang .lang-link:before {
  content: '';
  position: absolute;
  right: 0;
  top: calc(50% - 1px);
  width: 9px;
  height: 5px;
  background-image: url('data:image/svg+xml,<svg width="10" height="6" viewBox="0 0 10 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1L4.99955 5L9 1" stroke="white"/></svg>');
  background-repeat: no-repeat;
  background-color: transparent;
  background-position: center;
  background-size: 100% 100%;
}

.header .menuRight .menuBox-item.item-lang .lagMenu {
  position: absolute;
  left: 50%;
  top: 28px;
  width: 63px;
  transform: translateX(-50%);
  display: none;
  background: rgba(255, 255, 255, 0.8);
}

.header .menuRight .menuBox-item.item-lang .lagMenu .lagMenu-lst {
  padding: 0 8px;
}

.header .menuRight .menuBox-item.item-lang .lagMenu .lagMenu-lst .lagMenu-item {
  text-align: center;
}

.header
  .menuRight
  .menuBox-item.item-lang
  .lagMenu
  .lagMenu-lst
  .lagMenu-item:not(:last-child) {
  border-bottom: 1px solid #1e1e1e;
}

.header
  .menuRight
  .menuBox-item.item-lang
  .lagMenu
  .lagMenu-lst
  .lagMenu-item.is-active {
  pointer-events: none;
}

.header
  .menuRight
  .menuBox-item.item-lang
  .lagMenu
  .lagMenu-lst
  .lagMenu-item.is-active
  .lagMenu-link
  .txt {
  color: #367639;
}

.header
  .menuRight
  .menuBox-item.item-lang
  .lagMenu
  .lagMenu-lst
  .lagMenu-item
  .lagMenu-link {
  display: block;
  padding: 6px 0;
  position: relative;
}

.header
  .menuRight
  .menuBox-item.item-lang
  .lagMenu
  .lagMenu-lst
  .lagMenu-item
  .lagMenu-link
  .txt {
  font-size: 16px;
  font-size: 1.6rem;
  font-family: 'Acherus Grotesque Medium';
  color: #6e6e6e;
}

.header #logo {
  position: relative;
  z-index: 1000;
  -webkit-transition: 0.3s ease all;
  -moz-transition: 0.3s ease all;
  -ms-transition: 0.3s ease all;
  -o-transition: 0.3s ease all;
  transition: 0.3s ease all;
}

.header #logo .logoNormal {
  display: block;
}

.header #logo .logoFix {
  display: none;
}

.header #logo img {
  display: block;
  width: 128px;
  -webkit-transition: 0.3s ease all;
  -moz-transition: 0.3s ease all;
  -ms-transition: 0.3s ease all;
  -o-transition: 0.3s ease all;
  transition: 0.3s ease all;
}

@media only screen and (min-width: 1000px) and (max-width: 1200px) {
  .header #logo img {
    width: 109px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1000px) {
  .header #logo img {
    width: 90px;
  }
}

.header .menuBook {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: end;
  -moz-align-items: end;
  -ms-align-items: end;
  -o-align-items: end;
  align-items: end;
  padding-bottom: 2px;
  margin-left: 2.6%;
}

@media only screen and (min-width: 1000px) and (max-width: 1200px) {
  .header .menuBook {
    margin-left: 2.2%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1000px) {
  .header .menuBook {
    margin-left: 1.8%;
  }
}

.header .menuBook .menuBook-link {
  position: relative;
  display: block;
  border: solid 1px #fff;
  padding: 1px 10px;
  cursor: pointer;
}

@media only screen and (min-width: 1000px) and (max-width: 1200px) {
  .header .menuBook .menuBook-link {
    padding: 1px 7px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1000px) {
  .header .menuBook .menuBook-link {
    padding: 1px 5px;
  }
}

@media only screen and (min-width: 1025px) {
  .header .menuBook .menuBook-link:hover:hover {
    opacity: 1;
  }

  .header .menuBook .menuBook-link:hover:hover:before {
    width: 100%;
    opacity: 1;
  }

  .header .menuBook .menuBook-link:hover:hover .txt {
    color: #0f3911;
  }
}

.header .menuBook .menuBook-link:before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #fff;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header .menuBook .menuBook-link .txt {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 0em;
  letter-spacing: 0em;
  font-family: 'Acherus Grotesque Medium';
  color: #fff;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media only screen and (min-width: 1000px) and (max-width: 1200px) {
  .header .menuBook .menuBook-link .txt {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 0em;
    letter-spacing: 0em;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1000px) {
  .header .menuBook .menuBook-link .txt {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 0em;
    letter-spacing: 0em;
  }
}

@media only screen and (max-width: 767px) {
  .header {
    padding: 18px 55px 0 16px;
  }

  .header .inHeader {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: start;
    -moz-justify-content: start;
    -ms-justify-content: start;
    -o-justify-content: start;
    justify-content: start;
  }

  .header #logo {
    flex: 1;
    order: 2;
    text-align: center;
    padding-right: 40px;
  }

  .header #logo a {
    display: inline-block;
  }

  .header #logo img {
    width: 84px;
  }

  .header .menuBook {
    order: 1;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    padding-bottom: 8px;
    margin-left: 0;
  }

  .header .menuBook .menuBook-link {
    padding: 4px 6px;
    line-height: 17px;
  }

  .header .menuBook .menuBook-link .txt {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.news-awards .header,
.fixHeader .header {
  position: fixed;
  left: 0;
  top: 0;
  padding: 8px 10px;
  background: #fff;
  border-bottom: solid 1px rgba(0, 0, 0, 0.25);
}

.news-awards .header:before,
.fixHeader .header:before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/wp/wp-content/themes/wp-templ/assets/img/common/header/headBg.png');
  background-repeat: no-repeat;
  background-position: center;
  background-color: #f7f7f7;
  background-size: 100% 100%;
  opacity: 0.15;
}

.news-awards .header .menuBox,
.fixHeader .header .menuBox {
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  padding-bottom: 0;
}

.news-awards .header .menuBox .menuBox-inner .menuBox-item__link:before,
.fixHeader .header .menuBox .menuBox-inner .menuBox-item__link:before {
  background: #0e0e0e;
}

.news-awards .header .menuBox .menuBox-inner .txt,
.fixHeader .header .menuBox .menuBox-inner .txt {
  color: #0e0e0e;
}

.news-awards .header .menuLeft,
.fixHeader .header .menuLeft {
  margin-right: 4.4%;
}

@media only screen and (min-width: 1000px) and (max-width: 1200px) {
  .news-awards .header .menuLeft,
  .fixHeader .header .menuLeft {
    margin-right: 2.5%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1000px) {
  .news-awards .header .menuLeft,
  .fixHeader .header .menuLeft {
    margin-right: 1.8%;
  }
}

.news-awards .header .menuLeft .menuBox-item:not(:last-child),
.fixHeader .header .menuLeft .menuBox-item:not(:last-child) {
  margin-right: 42px;
}

@media only screen and (min-width: 1000px) and (max-width: 1200px) {
  .news-awards .header .menuLeft .menuBox-item:not(:last-child),
  .fixHeader .header .menuLeft .menuBox-item:not(:last-child) {
    margin-right: 29px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1000px) {
  .news-awards .header .menuLeft .menuBox-item:not(:last-child),
  .fixHeader .header .menuLeft .menuBox-item:not(:last-child) {
    margin-right: 15px;
  }
}

.news-awards .header .menuRight,
.fixHeader .header .menuRight {
  margin-left: 4.4%;
}

@media only screen and (min-width: 1000px) and (max-width: 1200px) {
  .news-awards .header .menuRight,
  .fixHeader .header .menuRight {
    margin-left: 2.5%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1000px) {
  .news-awards .header .menuRight,
  .fixHeader .header .menuRight {
    margin-left: 1.8%;
  }
}

.news-awards .header .menuRight .menuBox-item:not(:last-child),
.fixHeader .header .menuRight .menuBox-item:not(:last-child) {
  margin-right: 31px;
}

@media only screen and (min-width: 1000px) and (max-width: 1200px) {
  .news-awards .header .menuRight .menuBox-item:not(:last-child),
  .fixHeader .header .menuRight .menuBox-item:not(:last-child) {
    margin-right: 29px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1000px) {
  .news-awards .header .menuRight .menuBox-item:not(:last-child),
  .fixHeader .header .menuRight .menuBox-item:not(:last-child) {
    margin-right: 15px;
  }
}

.news-awards .header .menuRight .menuBox-item.item-lang .lang-link:before,
.fixHeader .header .menuRight .menuBox-item.item-lang .lang-link:before {
  background-image: url('data:image/svg+xml,<svg width="10" height="6" viewBox="0 0 10 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 0.5L4.99955 4.5L9 0.5" stroke="black"/></svg>');
}

.news-awards .header #logo .logoNormal,
.fixHeader .header #logo .logoNormal {
  display: none;
}

.news-awards .header #logo .logoFix,
.fixHeader .header #logo .logoFix {
  display: block;
}

.news-awards .header #logo img,
.fixHeader .header #logo img {
  width: 110px;
}

@media only screen and (min-width: 1000px) and (max-width: 1200px) {
  .news-awards .header #logo img,
  .fixHeader .header #logo img {
    width: 100px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1000px) {
  .news-awards .header #logo img,
  .fixHeader .header #logo img {
    width: 90px;
  }
}

.news-awards .header .menuBook,
.fixHeader .header .menuBook {
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  padding-bottom: 0;
  margin-left: 2.6%;
}

@media only screen and (min-width: 1000px) and (max-width: 1200px) {
  .news-awards .header .menuBook,
  .fixHeader .header .menuBook {
    margin-left: 2.2%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1000px) {
  .news-awards .header .menuBook,
  .fixHeader .header .menuBook {
    margin-left: 1.8%;
  }
}

.news-awards .header .menuBook .menuBook-link,
.fixHeader .header .menuBook .menuBook-link {
  border-color: #000;
  cursor: pointer;
}

@media only screen and (min-width: 1025px) {
  .news-awards .header .menuBook .menuBook-link:hover:hover,
  .fixHeader .header .menuBook .menuBook-link:hover:hover {
    border-color: #367639;
  }

  .news-awards .header .menuBook .menuBook-link:hover:hover .txt,
  .fixHeader .header .menuBook .menuBook-link:hover:hover .txt {
    color: #fff;
  }
}

.news-awards .header .menuBook .menuBook-link:before,
.fixHeader .header .menuBook .menuBook-link:before {
  background: #367639;
}

.news-awards .header .menuBook .menuBook-link .txt,
.fixHeader .header .menuBook .menuBook-link .txt {
  color: #000;
}

@media (max-width: 767px) {
  .news-awards .header,
  .fixHeader .header {
    padding: 6px 55px 0px 16px;
  }

  .news-awards .header .menuBook,
  .fixHeader .header .menuBook {
    margin-left: 0;
    padding-bottom: 4px;
  }

  .news-awards .header #logo,
  .fixHeader .header #logo {
    padding-right: 40px;
  }

  .news-awards .header #logo img,
  .fixHeader .header #logo img {
    width: 68px;
  }

  .news-awards .hamberger,
  .fixHeader .hamberger {
    top: 24px;
  }

  .news-awards .hamberger span,
  .fixHeader .hamberger span {
    background: #1e1e1e;
  }
}

.layerMenu {
  position: fixed;
  right: -100%;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  text-align: left;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.layerMenu .overlay {
  position: absolute;
  width: 100%;
}

.layerMenu .close_layer {
  width: 23px;
  height: 23px;
  background-image: url('data:image/svg+xml,<svg width="23" height="23" viewBox="0 0 23 23" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="31.3177" height="0.803019" transform="matrix(0.708709 -0.705501 0.708709 0.705501 0 22.4375)" fill="white"/><rect width="31.3177" height="0.803019" transform="matrix(0.708709 0.705501 -0.708709 0.705501 0.804688 0)" fill="white"/></svg>');
  background-repeat: no-repeat;
  background-color: transparent;
  background-position: center;
  background-size: 100% 100%;
  margin: 16px 26px 0;
}

.layerMenu .inLayer {
  position: relative;
  height: 100%;
  padding: 18px 16px 18px;
  overflow: auto;
  flex: 1;
  background-image: url('/wp/wp-content/themes/wp-templ/assets/img/common/other/body_bg.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-color: #f7f7f7;
  background-size: cover;
}

.layerMenu .menuLogo {
  text-align: center;
}

.layerMenu .menuLogo img {
  width: 100%;
  max-width: 110px;
}

.layerMenu .gNavi {
  margin-top: 60px;
}

.layerMenu .gNavi .gNavi-item {
  display: block;
  text-align: center;
}

.layerMenu .gNavi .gNavi-item:not(:last-child) {
  margin-bottom: 49px;
}

.layerMenu .gNavi .gNavi-item .gNavi-link {
  padding: 17px 0 15px 0;
  font-size: 20px;
  font-size: 2rem;
  line-height: 0em;
  letter-spacing: 0em;
  font-family: 'Acherus Grotesque Medium';
}

.layerMenu .gNavi .gNavi-item.is-active .gNavi-link {
  color: #367639;
}

.layerMenu .gNavi .navSub {
  position: static;
  left: auto;
  top: auto;
  width: 100%;
  padding: 0;
  transform: none;
}

.layerMenu .btnBook {
  margin-top: 78px;
}

.layerMenu .btnBook .btnBook-link {
  display: block;
  background: #0f3911;
  padding: 12px 10px;
  text-align: center;
  width: 100%;
  max-width: 267px;
  margin: 0 auto;
}

.layerMenu .btnBook .btnBook-link .txt {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 0em;
  letter-spacing: 0em;
  font-family: 'Acherus Grotesque Medium';
  color: #fff;
}

.layerMenu .menuLang {
  margin-top: 60px;
}

.layerMenu .menuLang .menuLang-lst {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
}

.layerMenu .menuLang .menuLang-lst .menuLang-lst__item {
  position: relative;
}

.layerMenu .menuLang .menuLang-lst .menuLang-lst__item:not(:last-child) {
  margin-right: 37px;
}

.layerMenu .menuLang .menuLang-lst .menuLang-lst__item:not(:last-child):before {
  content: '';
  position: absolute;
  width: 8px;
  height: 1px;
  background: #bcbcbc;
  top: 15px;
  right: -26px;
}

.layerMenu .menuLang .menuLang-lst .menuLang-lst__item.active .menuLang-link {
  color: #000;
  pointer-events: none;
}

.layerMenu .menuLang .menuLang-lst .menuLang-lst__item .menuLang-link {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 0em;
  letter-spacing: 0em;
  font-family: 'Acherus Grotesque Medium';
  color: #bcbcbc;
}

.layerMenu .overlay {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.layerOn {
  overflow: hidden;
}

.layerOn .layerMenu {
  right: 0;
}

.layerOn .layerMenu .overlay {
  opacity: 1;
  pointer-events: initial;
}

.hamberger {
  position: fixed;
  right: 16px;
  top: 40px;
  z-index: 1000;
  width: 39px;
  height: 19px;
  line-height: 1;
  font-size: 0;
  text-align: center;
  cursor: pointer;
  display: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.hamberger span {
  display: inline-block;
  width: 100%;
  height: 1px;
  margin-bottom: 8px;
  background: #fff;
  -webkit-transition: 0.3s ease all;
  -moz-transition: 0.3s ease all;
  -ms-transition: 0.3s ease all;
  -o-transition: 0.3s ease all;
  transition: 0.3s ease all;
}

@media only screen and (max-width: 767px) {
  .hamberger {
    display: block;
  }
}

@media only screen and (min-width: 1200px) {
  .vi .header .menuLeft {
    margin-right: 4%;
  }
}

@media only screen and (min-width: 1200px) {
  .vi .header .menuLeft .menuBox-item:not(:last-child) {
    margin-right: 36px;
  }
}

@media only screen and (min-width: 1200px) {
  .vi .header .menuRight {
    margin-left: 4%;
  }
}

@media only screen and (min-width: 1200px) {
  .vi .header .menuRight .menuBox-item:not(:last-child) {
    margin-right: 25px;
  }
}

@media only screen and (min-width: 768px) and (min-width: 1200px) {
  .vi .header .menuBook {
    margin-left: 2.3%;
  }
}

@media (min-width: 768px) {
  .vi .header .menuBook .menuBook-link {
    padding: 1px 19px;
  }
}

@media only screen and (min-width: 768px) and (min-width: 1000px) and (max-width: 1200px) {
  .vi .header .menuBook .menuBook-link {
    padding: 1px 7px;
  }
}

@media only screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1000px) {
  .vi .header .menuBook .menuBook-link {
    padding: 1px 5px;
  }
}

@media (max-width: 767px) {
  .vi .header .menuBook .menuBook-link {
    padding: 4px 12px;
  }
}

.vi .header .menuBook .menuBook-link .txt {
  font-family: 'Noto Sans KR', sans-serif;
}

.ko .header .menuBox .menuBox-inner .txt {
  font-family: 'Noto Sans KR', sans-serif;
}

@media only screen and (min-width: 1200px) {
  .ko .header .menuLeft {
    margin-right: 5.8%;
  }
}

@media only screen and (min-width: 1200px) {
  .ko .header .menuLeft .menuBox-item:not(:last-child) {
    margin-right: 46px;
  }
}

@media only screen and (min-width: 1200px) {
  .ko .header .menuRight {
    margin-left: 7.4%;
  }
}

@media only screen and (min-width: 1200px) {
  .ko .header .menuRight .menuBox-item:not(:last-child) {
    margin-right: 61px;
  }
}

@media only screen and (min-width: 768px) and (min-width: 1200px) {
  .ko .header .menuBook {
    margin-left: 4.3%;
  }
}

@media (min-width: 768px) {
  .ko .header .menuBook .menuBook-link {
    padding: 1px 19px;
  }
}

@media only screen and (min-width: 768px) and (min-width: 1000px) and (max-width: 1200px) {
  .ko .header .menuBook .menuBook-link {
    padding: 1px 7px;
  }
}

@media only screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1000px) {
  .ko .header .menuBook .menuBook-link {
    padding: 1px 5px;
  }
}

@media (max-width: 767px) {
  .ko .header .menuBook .menuBook-link {
    padding: 4px 12px;
  }
}

.ko .header .menuBook .menuBook-link .txt {
  font-family: 'Noto Sans KR', sans-serif;
}

.ko .layerMenu .btnBook {
  margin-top: 54px;
}

.ko .layerMenu .btnBook .btnBook-link .txt {
  font-family: 'Noto Sans KR', sans-serif;
}

.ko .layerMenu .gNavi {
  margin-top: 64px;
}

.ko .layerMenu .gNavi .gNavi-item:not(:last-child) {
  margin-bottom: 53px;
}

.ko .layerMenu .gNavi .gNavi-item .gNavi-link {
  font-family: 'Noto Sans KR', sans-serif;
}

.wp-pagenavi {
  text-align: center;
  font-family: Arial;
  font-size: 14px;
}

.wp-pagenavi::after {
  content: '';
  clear: both;
  display: table;
}

.wp-pagenavi span,
.wp-pagenavi a {
  line-height: 30px;
  display: inline-block;
  margin: 0 4px;
  color: #666;
  text-align: center;
}

.wp-pagenavi a {
  cursor: pointer;
}

@media only screen and (min-width: 1025px) {
  .wp-pagenavi a:hover {
    background: #1489c3;
    color: #fff;
  }
}

.wp-pagenavi span.curren {
  border-radius: 15px;
  width: 30px;
  height: 30px;
  background: #ededed;
  background: #1489c3;
  color: #fff;
}

.wp-pagenavi .pages {
  margin-right: 15px;
}

/*# sourceMappingURL=maps/styles.min.css.map */

/* arguments inittial */
/* font style */
/* site style */
/* [ background-image ]
-------------------------------------------------*/
/* [ writing-mode ]
-------------------------------------------------*/
/* [ easy breakpoint ]
-------------------------------------------------*/
/* Common top */
.t-wcm01 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .t-wcm01 {
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  .t-wcm01 {
    padding: 0 16px;
  }
}

.t-wcm02 {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto 0 0;
}
@media (min-width: 768px) {
  .t-wcm02 {
    padding: 0 20px 0 0;
  }
}
@media only screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1440px) {
  .t-wcm02 {
    max-width: 1320px;
  }
}
@media only screen and (min-width: 768px) and (min-width: 1441px) {
  .t-wcm02 {
    max-width: 91.6666666667vw;
  }
}
@media (max-width: 767px) {
  .t-wcm02 {
    padding: 0 16px 0 0;
  }
}

.t-wcm03 {
  width: 100%;
  max-width: 1320px;
  margin: 0 0 0 auto;
}
@media (min-width: 768px) {
  .t-wcm03 {
    padding: 0 0 0 20px;
  }
}
@media only screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1440px) {
  .t-wcm03 {
    max-width: 1320px;
  }
}
@media only screen and (min-width: 768px) and (min-width: 1441px) {
  .t-wcm03 {
    max-width: 91.6666666667vw;
  }
}
@media (max-width: 767px) {
  .t-wcm03 {
    padding: 0 0 0 16px;
  }
}

.t-desc01.is-center {
  text-align: center;
}
.t-desc01 .txt {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.8666666667em;
  letter-spacing: 0em;
  width: 100%;
  max-width: 1006px;
  margin: 0 auto;
  color: #6e6e6e;
}
@media (max-width: 767px) {
  .t-desc01 .see-more {
    text-decoration: underline;
    text-underline-offset: 2px;
    color: #1E1E1E;
  }
}

.t-img01 {
  position: relative;
}
.t-img01 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
}

.custom-arrow02 {
  position: relative;
  padding-top: 80px;
}
@media (max-width: 767px) {
  .custom-arrow02 {
    padding-top: 65px;
  }
}
.custom-arrow02:before {
  content: "";
  position: absolute;
  top: 47px;
  width: calc(100% - 90px);
  height: 1px;
  background-color: #1E1E1E;
  opacity: 0.2;
  right: 0;
}
.custom-arrow02 .slick-arrow {
  position: absolute;
  top: auto;
  top: 37px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 31px;
  height: 20px;
  transform: none;
}
.custom-arrow02 .slick-arrow.slick-prev {
  background-image: url("/wp/wp-content/themes/wp-templ/assets/img/common/other/slick_prev01.svg");
  left: 0;
}
.custom-arrow02 .slick-arrow.slick-next {
  background-image: url("/wp/wp-content/themes/wp-templ/assets/img/common/other/slick_next01.svg");
  left: 43px;
}

/* Common top */
.sec-mv {
  position: relative;
  width: 100vw;
}
@media (min-width: 768px) {
  .sec-mv {
    height: 100vh;
  }
}
@media (max-width: 767px) {
  .sec-mv {
    height: calc(100vh - 120px);
  }
}
.sec-mv .mv-bg {
  width: 100%;
  height: 100%;
}
.sec-mv .mv-bg .mv-bg__lst {
  width: 100%;
  height: 100%;
}
.sec-mv .mv-bg .mv-bg__lst:not(.slick-initialized) {
  opacity: 0;
}
.sec-mv .mv-bg .mv-bg__lst .slick-track {
  display: flex !important;
}
.sec-mv .mv-bg .mv-bg__lst .slick-slide {
  height: inherit !important;
}
.sec-mv .mv-bg .mv-bg__lst .slick-slide.zoom-in {
  animation: zoomOut 10s linear 0s normal forwards;
}
.sec-mv .mv-bg .mv-bg__lst .bg-item {
  position: relative;
  height: 100%;
}
.sec-mv .mv-bg .mv-bg__lst .bg-item:before {
  content: "";
  position: relative;
  display: block;
  width: 100vw;
}
@media (min-width: 768px) {
  .sec-mv .mv-bg .mv-bg__lst .bg-item:before {
    height: 100vh;
  }
}
@media (max-width: 767px) {
  .sec-mv .mv-bg .mv-bg__lst .bg-item:before {
    height: calc(100vh - 120px);
  }
}
.sec-mv .mv-bg .mv-bg__lst .bg-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
}
.sec-mv .mv-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sec-mv .mv-scroll {
  position: absolute;
  bottom: 0;
  left: calc(50% - 23px);
}
.sec-mv .mv-scroll .scroll-link {
  position: relative;
  display: inline-block;
  padding-bottom: 27px;
}
.sec-mv .mv-scroll .scroll-link .txt {
  font-size: 12px;
  font-size: 1.2rem;
  font-family: "Acherus Grotesque Medium";
  color: #fff;
}
.sec-mv .mv-scroll .scroll-link .line {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 2px);
  width: 1px;
  height: 28px;
  overflow: hidden;
}
.sec-mv .mv-scroll .scroll-link .line:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  animation: scaleProgress 2s infinite ease-in-out;
}
.sec-mv .mv-notice {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35.1388888889%;
  background: #000000;
  padding: 18px 24px 17px;
}
@media only screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1200px) {
  .sec-mv .mv-notice {
    padding: 18px 10px 17px;
    width: 44.4444444444%;
  }
}
.sec-mv .mv-notice .mv-notice__wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.sec-mv .mv-notice .mv-notice__wrap .notice-btn {
  width: 85px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  padding-bottom: 2px;
}
.sec-mv .mv-notice .mv-notice__wrap .notice-btn .notice-btn__link {
  display: block;
  border: solid 1px #fff;
  padding: 0px 2px 1px;
  text-align: center;
  width: 100%;
}
.sec-mv .mv-notice .mv-notice__wrap .notice-btn .notice-btn__link .txt {
  font-size: 14px;
  font-size: 1.4rem;
  font-family: "Acherus Grotesque Medium";
  color: #fff;
}
.sec-mv .mv-notice .mv-notice__wrap .notice-post {
  flex: 1;
}
.sec-mv .mv-notice .mv-notice__wrap .notice-post .notice-post__lst {
  height: 100%;
}
.sec-mv .mv-notice .mv-notice__wrap .notice-post .notice-post__lst .notice-item {
  height: 100%;
}
.sec-mv .mv-notice .mv-notice__wrap .notice-post .notice-post__lst .notice-item .notice-link {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  height: 100%;
}
.sec-mv .mv-notice .mv-notice__wrap .notice-post .notice-post__lst .notice-item .notice-link .post-date {
  font-size: 12px;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.6);
  width: 106px;
  border-right: solid 1px rgba(255, 255, 255, 0.2);
  padding: 8px 0 9px 13px;
  height: 100%;
}
@media only screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1200px) {
  .sec-mv .mv-notice .mv-notice__wrap .notice-post .notice-post__lst .notice-item .notice-link .post-date {
    width: 90px;
    padding: 8px 0 9px 5px;
  }
}
.sec-mv .mv-notice .mv-notice__wrap .notice-post .notice-post__lst .notice-item .notice-link .post-ttl {
  font-size: 15px;
  font-size: 1.5rem;
  flex: 1;
  color: #fff;
  padding: 8px 0 0 24px;
  overflow: hidden;
  width: 100%;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: normal;
}
@media only screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1200px) {
  .sec-mv .mv-notice .mv-notice__wrap .notice-post .notice-post__lst .notice-item .notice-link .post-ttl {
    padding: 8px 0 0 10px;
  }
}

.sec-intro .t-desc01 .txt {
  text-align: center;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.8666666667em;
  letter-spacing: 0em;
  width: 100%;
  max-width: 1006px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .sec-intro {
    margin-top: 101px;
  }
  .sec-intro .t-desc01 {
    margin-top: 23px;
  }
  .sec-intro .c-btn01 {
    margin-top: 15px;
  }
}
@media (max-width: 767px) {
  .sec-intro {
    margin-top: 64px;
  }
  .sec-intro .t-desc01 {
    margin-top: 12px;
  }
  .sec-intro .c-btn01 {
    margin-top: 19px;
  }
}

@media (min-width: 768px) {
  .box-img01 {
    margin-top: 72px;
  }
  .box-img01 .box-inner:before {
    content: "";
    display: block;
    padding-top: 35.8461538462%;
  }
}
@media (max-width: 767px) {
  .box-img01 {
    margin-top: 40px;
  }
  .box-img01 .box-inner:before {
    content: "";
    display: block;
    padding-top: 71.5877437326%;
  }
}

.sec-villa .villa-wrap .villa-img:before {
  content: "";
  display: block;
  padding-top: 58.6834733894%;
}
@media (min-width: 768px) {
  .sec-villa {
    margin-top: 120px;
  }
  .sec-villa .villa-wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .sec-villa .villa-wrap .villa-img {
    order: 2;
    width: 54.9230769231%;
  }
  .sec-villa .villa-wrap .villa-ctn {
    order: 1;
    width: 37.6923076923%;
    padding-top: 74px;
  }
  .sec-villa .villa-wrap .villa-ctn .t-desc01 {
    margin-top: 23px;
  }
  .sec-villa .villa-wrap .villa-ctn .c-btn01 {
    margin-top: 15px;
  }
}
@media (max-width: 767px) {
  .sec-villa {
    margin-top: 80px;
  }
  .sec-villa .villa-wrap .villa-ctn {
    margin-top: 39px;
    padding-right: 16px;
  }
  .sec-villa .villa-wrap .villa-ctn .t-desc01 {
    margin-top: 13px;
  }
  .sec-villa .villa-wrap .villa-ctn .c-btn01 {
    margin-top: 19px;
  }
}

/* Villa Slide CSS được gộp vào phần sau - xóa bỏ phần trùng lặp này */

.sec-wine .wine-wrap .wine-img:before {
  content: "";
  display: block;
  padding-top: 66.2921348315%;
}
@media (min-width: 768px) {
  .sec-wine {
    margin-top: 130px;
  }
  .sec-wine .wine-wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
  }
  .sec-wine .wine-wrap .wine-img {
    width: 54.7692307692%;
  }
  .sec-wine .wine-wrap .wine-ctn {
    width: 37.6923076923%;
    padding-top: 105px;
  }
  .sec-wine .wine-wrap .wine-ctn .t-desc01 {
    margin-top: 23px;
  }
  .sec-wine .wine-wrap .wine-ctn .c-btn01 {
    margin-top: 15px;
  }
}
@media (max-width: 767px) {
  .sec-wine {
    margin-top: 80px;
  }
  .sec-wine .wine-wrap .wine-ctn {
    margin-top: 40px;
    padding-left: 16px;
  }
  .sec-wine .wine-wrap .wine-ctn .t-desc01 {
    margin-top: 13px;
  }
  .sec-wine .wine-wrap .wine-ctn .c-btn01 {
    margin-top: 19px;
  }
}

.sec-wellness .c-ttl01 .title {
  text-transform: initial;
}
.sec-wellness .wellness-btn .wellness-item .wellness-link {
  display: block;
  background: #f7f7f7;
}
.sec-wellness .wellness-btn .wellness-item .wellness-link .wellness-img {
  z-index: 1;
}
.sec-wellness .wellness-btn .wellness-item .wellness-link .wellness-ctn {
  position: relative;
  z-index: 2;
  background: #f7f7f7;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.sec-wellness .wellness-btn .wellness-item .wellness-link .wellness-ctn .txt01 {
  text-transform: uppercase;
}
.sec-wellness .wellness-btn .wellness-item .wellness-link .wellness-ctn .txt02 {
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "Acherus Grotesque Medium";
  color: #367639;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.sec-wellness .wellness-btn .wellness-item .wellness-link .wellness-ctn .txt02 span {
  position: relative;
  line-height: 0;
}
.sec-wellness .wellness-btn .wellness-item .wellness-link .wellness-ctn .txt02 span:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  margin: 0 auto;
  background: #367639;
  -webkit-transition: all 0.3s ease 0.1s;
  -moz-transition: all 0.3s ease 0.1s;
  -ms-transition: all 0.3s ease 0.1s;
  -o-transition: all 0.3s ease 0.1s;
  transition: all 0.3s ease 0.1s;
}
@media (min-width: 768px) {
  .sec-wellness {
    margin-top: 130px;
    padding-bottom: 102px;
  }
  .sec-wellness .t-desc01 {
    margin-top: 23px;
  }
  .sec-wellness .wellness-btn {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
    margin-top: 40px;
  }
  .sec-wellness .wellness-btn .wellness-item {
    width: 32.4137931034%;
  }
  .sec-wellness .wellness-btn .wellness-item:nth-child(1), .sec-wellness .wellness-btn .wellness-item:nth-child(3) {
    margin-top: 48px;
  }
  .sec-wellness .wellness-btn .wellness-item .wellness-link {
    padding: 12px 14px 0;
    cursor: pointer;
  }
}
@media only screen and (min-width: 768px) and (min-width: 1025px) {
  .sec-wellness .wellness-btn .wellness-item .wellness-link:hover:hover {
    opacity: 1;
  }
  .sec-wellness .wellness-btn .wellness-item .wellness-link:hover:hover .wellness-ctn {
    margin-top: -56px;
    padding: 28px 0 55px;
  }
  .sec-wellness .wellness-btn .wellness-item .wellness-link:hover:hover .wellness-ctn .txt02 {
    opacity: 1;
  }
  .sec-wellness .wellness-btn .wellness-item .wellness-link:hover:hover .wellness-ctn .txt02 span:before {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .sec-wellness .wellness-btn .wellness-item .wellness-link .wellness-img:before {
    content: "";
    display: block;
    padding-top: 105.1724137931%;
  }
  .sec-wellness .wellness-btn .wellness-item .wellness-link .wellness-ctn {
    padding: 28px 0 14px;
  }
  .sec-wellness .wellness-btn .wellness-item .wellness-link .wellness-ctn .txt01 {
    text-align: center;
    font-size: 24px;
    font-size: 2.4rem;
    font-family: "Canela Medium";
    text-transform: uppercase;
  }
  .sec-wellness .wellness-btn .wellness-item .wellness-link .wellness-ctn .txt02 {
    text-align: center;
    margin-top: 10px;
    height: 0;
    opacity: 0;
  }
  .sec-wellness .wellness-btn .wellness-item .wellness-link .wellness-ctn .txt02 span:before {
    bottom: -1px;
    width: 63px;
  }
}
@media (max-width: 767px) {
  .sec-wellness {
    margin-top: 80px;
    padding-bottom: 85px;
  }
  .sec-wellness .t-desc01 {
    margin-top: 13px;
  }
  .sec-wellness .wellness-btn {
    margin-top: 40px;
  }
  .sec-wellness .wellness-btn .wellness-item:not(:last-child) {
    margin-bottom: 33px;
  }
  .sec-wellness .wellness-btn .wellness-item .wellness-link {
    padding: 16px 16px 0;
  }
  .sec-wellness .wellness-btn .wellness-item .wellness-link .wellness-img:before {
    content: "";
    display: block;
    padding-top: 74.2765273312%;
  }
  .sec-wellness .wellness-btn .wellness-item .wellness-link .wellness-ctn {
    padding: 18px 0 18px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
  }
  .sec-wellness .wellness-btn .wellness-item .wellness-link .wellness-ctn .txt01 {
    font-size: 24px;
    font-size: 2.4rem;
    letter-spacing: 0.02em;
    font-family: "Canela Regular";
    color: 0;
  }
  .sec-wellness .wellness-btn .wellness-item .wellness-link .wellness-ctn .txt02 {
    text-align: center;
    margin-top: -2px;
  }
  .sec-wellness .wellness-btn .wellness-item .wellness-link .wellness-ctn .txt02 span:before {
    bottom: -6px;
    width: 100%;
  }
}

.sec-parallax {
  position: relative;
  overflow: hidden;
}
.sec-parallax .parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: 100px;
}
@media (min-width: 768px) {
  .sec-parallax {
    height: 757px;
  }
  .sec-parallax .parallax-bg {
    background-image: url("/wp/wp-content/themes/wp-templ/assets/img/top/parallax.jpg");
  }
}
@media (max-width: 767px) {
  .sec-parallax {
    height: 617px;
  }
  .sec-parallax .parallax-bg {
    background-image: url("/wp/wp-content/themes/wp-templ/assets/img/top/parallax-sp.jpg");
  }
}

@media (min-width: 768px) {
  .containBg {
    padding: 187px 0 99px;
  }
}
@media (max-width: 767px) {
  .containBg {
    padding: 80px 0 100px;
  }
}

.sec-instagram .instagram-lst {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}
.sec-instagram .instagram-lst .instagram-lst__item {
  margin-top: 16px;
}
.sec-instagram .instagram-lst .instagram-lst__item .instagram-link {
  display: block;
}
.sec-instagram .instagram-lst .instagram-lst__item .instagram-link .img-zoom:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.sec-instagram .instagram-lst .instagram-lst__item .instagram-link .img-zoom:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (min-width: 768px) {
  .sec-instagram .c-ttl01.is-line {
    padding-right: 220px;
  }
  .sec-instagram .c-ttl01.is-line .c-btn01 {
    right: 2px;
    bottom: 29px;
  }
  .sec-instagram .instagram-lst {
    margin-top: 15px;
  }
  .sec-instagram .instagram-lst .instagram-lst__item {
    width: 23.9655172414%;
    margin-top: 16px;
  }
  .sec-instagram .instagram-lst .instagram-lst__item:not(:nth-child(4n)) {
    margin-right: 1.3793103448%;
  }
  .sec-instagram .instagram-lst .instagram-lst__item .instagram-link {
    display: block;
    cursor: pointer;
  }
}
@media only screen and (min-width: 768px) and (min-width: 1025px) {
  .sec-instagram .instagram-lst .instagram-lst__item .instagram-link:hover {
    opacity: 1;
  }
  .sec-instagram .instagram-lst .instagram-lst__item .instagram-link:hover .img-zoom:after {
    opacity: 1;
  }
}
@media (min-width: 768px) {
  .sec-instagram .instagram-lst .instagram-lst__item .instagram-link .img-zoom:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
}
@media (max-width: 767px) {
  .sec-instagram .instagram-lst {
    margin-top: 24px;
  }
  .sec-instagram .instagram-lst .instagram-lst__item {
    width: 48.9795918367%;
    margin-top: 8px;
  }
  .sec-instagram .instagram-lst .instagram-lst__item:not(:nth-child(2n)) {
    margin-right: 2.0408163265%;
  }
  .sec-instagram .instagram-lst .instagram-lst__item .instagram-link {
    display: block;
  }
}

.sec-offer .c-slide01 .c-txt {
  overflow: hidden;
  width: 100%;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: normal;
  overflow: hidden;
}
@media (min-width: 768px) {
  .sec-offer {
    margin-top: 130px;
  }
  .sec-offer .c-slide01 {
    margin-top: 32px;
  }
}
@media (max-width: 767px) {
  .sec-offer {
    margin-top: 80px;
  }
  .sec-offer .c-slide01 {
    margin-top: 20px;
  }
}

.sec-trip {
  margin-top: 128px;
}
.sec-trip .trip-ttl {
  text-align: center;
}
.sec-trip .trip-slide {
  margin: 60px -8px 0;
}
.sec-trip .trip-slide .slick-track {
  display: flex !important;
}
.sec-trip .trip-slide .slick-slide {
  height: inherit !important;
}
.sec-trip .trip-slide .trip-slide__item {
  margin: 0 8px;
}
.sec-trip .trip-slide .trip-slide__item .trip-link {
  background: #fff;
  padding: 28px 28px 15px;
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
}
@media only screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1200px) {
  .sec-trip .trip-slide .trip-slide__item .trip-link {
    padding: 28px 10px 15px;
  }
}
.sec-trip .trip-slide .trip-slide__item .trip-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.sec-trip .trip-slide .trip-slide__item .trip-wrap .trip-avt {
  width: 71px;
  margin-right: 5%;
}
.sec-trip .trip-slide .trip-slide__item .trip-wrap .trip-avt img {
  border-radius: 100%;
}
.sec-trip .trip-slide .trip-slide__item .trip-wrap .trip-info {
  flex: 1;
  padding-top: 8px;
}
.sec-trip .trip-slide .trip-slide__item .trip-wrap .trip-info .name {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 2em;
  letter-spacing: 0.028em;
  font-family: "Canela Medium";
}
.sec-trip .trip-slide .trip-slide__item .trip-wrap .trip-info .star {
  font-size: 0;
  margin-top: -2px;
}
.sec-trip .trip-slide .trip-slide__item .trip-wrap .trip-info .star .staritem {
  display: inline-block;
  width: 17px;
  height: 17px;
  background-image: url('data:image/svg+xml,<svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.5 0.462891L10.4084 6.33625L16.584 6.33625L11.5878 9.96618L13.4962 15.8395L8.5 12.2096L3.50383 15.8395L5.41219 9.96618L0.416019 6.33625L6.59163 6.33625L8.5 0.462891Z" fill="%23FFB800"/></svg>');
  background-repeat: no-repeat;
  background-color: transparent;
  background-position: center;
  background-size: 100% 100%;
}
.sec-trip .trip-slide .trip-slide__item .trip-wrap .trip-info .star .staritem:not(:last-child) {
  margin-right: 4px;
}
.sec-trip .trip-slide .trip-slide__item .trippost-ttl {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.5em;
  letter-spacing: 0.02em;
  font-family: "Canela Medium";
  margin-top: 16px;
}
.sec-trip .trip-slide .trip-slide__item .trip-desc {
  margin-top: 11px;
  padding-bottom: 20px;
  border-bottom: solid 1px rgba(0, 0, 0, 0.2);
  flex: 1;
}
.sec-trip .trip-slide .trip-slide__item .trip-desc .txt {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.8666666667em;
  letter-spacing: 0em;
  color: #6e6e6e;
}
.sec-trip .trip-slide .trip-slide__item .trip-wrap02 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  margin-top: 15px;
}
.sec-trip .trip-slide .trip-slide__item .trip-wrap02 .trip-logo {
  padding-top: 3px;
}
.sec-trip .trip-slide .trip-slide__item .trip-wrap02 .trip-date .txt {
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: #6e6e6e;
}

.sec-letter {
  background: #fff;
}
.sec-letter .letter-wrap .letter-ttl {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  font-size: 18px;
  font-size: 1.8rem;
  font-family: "Acherus Grotesque Medium";
  color: #000000;
  margin-right: 24px;
  padding-top: 2px;
}
.sec-letter .letter-wrap .letter-form .letter-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.sec-letter .letter-wrap .letter-form .letter-wrap .letter-email {
  flex: 1;
}
.sec-letter .letter-wrap .letter-form .letter-wrap .letter-email input {
  display: block;
  width: 100%;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "Acherus Grotesque Medium";
}
.sec-letter .letter-wrap .letter-form .letter-wrap .letter-btn .btn-submit {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  border: solid 1px #0F3911;
}
@media (min-width: 768px) {
  .sec-letter {
    padding: 24px 0 24px;
  }
  .sec-letter .letter-wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
  .sec-letter .letter-wrap .letter-form {
    flex: 1;
  }
  .sec-letter .letter-wrap .letter-form .letter-wrap .letter-email input {
    border: solid 1px #367639;
    padding: 16px 19px;
  }
  .sec-letter .letter-wrap .letter-form .letter-wrap .letter-email input::placeholder {
    color: #C1C1C1;
  }
  .sec-letter .letter-wrap .letter-form .letter-wrap .letter-btn {
    width: 196px;
    margin-left: 23px;
  }
  .sec-letter .letter-wrap .letter-form .letter-wrap .letter-btn .btn-submit {
    color: #fff;
    font-size: 16px;
    font-size: 1.6rem;
    font-family: "Acherus Grotesque Medium";
    text-align: center;
    padding: 16px 4px;
    background: none;
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -ms-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
    cursor: pointer;
  }
}
@media only screen and (min-width: 768px) and (min-width: 1025px) {
  .sec-letter .letter-wrap .letter-form .letter-wrap .letter-btn .btn-submit:hover {
    opacity: 1;
    color: #0F3911;
  }
  .sec-letter .letter-wrap .letter-form .letter-wrap .letter-btn .btn-submit:hover:before {
    width: 0;
    opacity: 0;
  }
}
@media (min-width: 768px) {
  .sec-letter .letter-wrap .letter-form .letter-wrap .letter-btn .btn-submit:before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background: #367639;
    opacity: 1;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}
@media (max-width: 767px) {
  .sec-letter {
    padding: 20px 0 19px;
  }
  .sec-letter .letter-wrap .letter-form .letter-wrap {
    border: solid 1px #367639;
  }
  .sec-letter .letter-wrap .letter-form .letter-wrap .letter-email input {
    border: none;
    padding: 16px 23px;
  }
  .sec-letter .letter-wrap .letter-form .letter-wrap .letter-email input::placeholder {
    color: #1E1E1E;
  }
  .sec-letter .letter-wrap .letter-form .letter-wrap .letter-btn {
    width: 56px;
  }
  .sec-letter .letter-wrap .letter-form .letter-wrap .letter-btn .btn-submit {
    height: 100%;
    text-indent: -9999px;
    border: none;
    background-image: url('data:image/svg+xml,<svg width="41" height="34" viewBox="0 0 41 34" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M31.2069 15.0402L27.3319 18.9156M39.3289 6.03781C39.4515 5.99551 39.5835 5.98854 39.7098 6.01772C39.8361 6.04689 39.9517 6.11102 40.0433 6.20278C40.1349 6.29454 40.1989 6.41022 40.2279 6.53661C40.2569 6.663 40.2497 6.79499 40.2072 6.91751L32.5554 28.7874C32.5096 28.9181 32.4256 29.032 32.3143 29.1144C32.2029 29.1968 32.0694 29.2439 31.931 29.2494C31.7926 29.255 31.6557 29.2189 31.5381 29.1457C31.4205 29.0725 31.3276 28.9657 31.2715 28.839L27.1136 19.484C27.0443 19.328 26.9195 19.2032 26.7636 19.1339L17.4093 14.9743C17.2831 14.918 17.1767 14.8251 17.1038 14.7076C17.031 14.5902 16.995 14.4536 17.0006 14.3155C17.0061 14.1774 17.053 14.0441 17.135 13.9329C17.2171 13.8217 17.3307 13.7376 17.461 13.6916L39.3289 6.03781Z" stroke="black" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path opacity="0.185" d="M1 33.6403V0" stroke="%23367639"/></svg>');
    background-repeat: no-repeat;
    background-color: transparent;
    background-position: top 9px left;
    background-size: 41px 35px;
  }
}

@keyframes scaleProgress {
  0% {
    transform: translateY(-100%);
    opacity: 1;
  }
  50% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(100%);
    opacity: 0;
  }
}
@keyframes zoomOut {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
.vi .c-ttl01 .sub,
.vi .c-ttl01 .title {
  text-transform: initial;
}

/* =====================================================
   VILLA SLIDE - Slick Carousel Styles
   Tương tự Green Bay Resort style với Lahana branding
   ===================================================== */

.villa-slide {
  position: relative;
  width: 100%;
  padding: 60px 0;
  background: #fff;
  z-index: 1;
  clear: both;
}

.villa-slide .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.villa-slide .villa-slide-wrapper {
  position: relative;
  overflow: hidden;
  margin: 0 -15px;
}

/* Slider container */
.villa-slide__inner {
  margin: 0;
  padding: 0;
  list-style: none;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.villa-slide .slide-item {
  padding: 0 15px;
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  min-height: 280px;
  /* Fallback layout before Slick initializes */
  float: left;
  width: 25%;
}

/* Khi Slick được khởi tạo */
.villa-slide .slick-initialized .slide-item {
  float: none;
  width: auto;
}

/* Critical Slick styling - đảm bảo hiển thị */
.villa-slide .villa-slide__inner.slick-slider {
  margin-bottom: 0;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.villa-slide .slick-track {
  display: flex !important;
  align-items: stretch;
  opacity: 1 !important;
  visibility: visible !important;
}

.villa-slide .slick-slide {
  height: inherit !important;
  display: flex !important;
  align-items: stretch;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Fix potential Slick hiding issues */
.villa-slide .slick-list {
  overflow: visible !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.villa-slide .slick-slide > div {
  height: 100%;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Critical: Prevent villa slide from being hidden */
.villa-slide {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
  z-index: 10 !important;
}

.villa-slide .villa-slide__inner {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.villa-slide .slide-item {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.villa-slide .slick-initialized {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.villa-slide .slick-track {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.villa-slide .slick-slide {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Villa Slide - Simple */
.villa-slide {
  padding: 40px 0;
}

.villa-slide .slide-item {
  padding: 0 15px;
}

.villa-slide img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
}

.villa-slide .item-inner {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow-light);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #f8f9fa;
}

.villa-slide .item-inner:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-8px);
}

.villa-slide .item-inner img {
  width: 100%;
  height: 378px;
  object-fit: cover;
  object-position: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 12px;
  display: block; /* Đảm bảo hiển thị */
}

/* Slide Overlay */
.villa-slide .slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  padding: 30px 20px 20px;
  border-radius: 0 0 12px 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.villa-slide .item-inner:hover .slide-overlay {
  opacity: 1;
}

.villa-slide .slide-title {
  color: white;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
  line-height: 1.3;
}

.villa-slide .slide-item.zoom-in .item-inner img {
  transform: scale(1.05);
}

.villa-slide .slide-item:hover .item-inner img {
  transform: scale(1.08);
}

/* Custom Arrows cho Villa Slide */
.villa-slide .custom-arrow02 {
  position: relative;
}

.villa-slide .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  font-size: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.villa-slide .slick-arrow:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--primary-color);
  border-right: 2px solid var(--primary-color);
  transition: all 0.3s ease;
}

.villa-slide .slick-prev {
  left: -25px;
}

.villa-slide .slick-prev:before {
  transform: translate(-30%, -50%) rotate(-135deg);
}

.villa-slide .slick-next {
  right: -25px;
}

.villa-slide .slick-next:before {
  transform: translate(-70%, -50%) rotate(45deg);
}

.villa-slide .slick-arrow:hover {
  background: var(--primary-color);
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--shadow);
}

.villa-slide .slick-arrow:hover:before {
  border-color: white;
}

.villa-slide .slick-arrow:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

/* Slick Track Styles */
.villa-slide .slick-track {
  display: flex;
  align-items: stretch;
}

.villa-slide .slick-slide {
  height: auto;
}

.villa-slide .slick-slide > div {
  height: 100%;
}

.villa-slide .slide-item {
  height: 100%;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .villa-slide .slick-prev {
    left: 10px;
  }
  
  .villa-slide .slick-next {
    right: 10px;
  }
}

@media (max-width: 768px) {
  .villa-slide {
    padding: 30px 0;
  }
  
  .villa-slide .t-wcm03 {
    padding: 0 15px;
  }
  
  .villa-slide .slide-item {
    padding: 0 10px;
  }
  
  .villa-slide .item-inner img {
    height: 280px;
  }
  
  .villa-slide .slick-arrow {
    width: 40px;
    height: 40px;
  }
  
  .villa-slide .slick-arrow:before {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 480px) {
  .villa-slide {
    padding: 20px 0;
  }
  
  .villa-slide .slide-item {
    padding: 0 5px;
  }
  
  .villa-slide .item-inner img {
    height: 240px;
  }
  
  /* Hide arrows on mobile, show dots instead */
  .villa-slide .slick-arrow {
    display: none !important;
  }
  
  /* Add dots for mobile */
  .villa-slide .slick-dots {
    display: block !important;
    text-align: center;
    margin-top: 20px;
  }
  
  .villa-slide .slick-dots li {
    display: inline-block;
    margin: 0 5px;
  }
  
  .villa-slide .slick-dots li button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-border);
    border: none;
    font-size: 0;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  /* .villa-slide .slick-dots li.slick-active button {
    background: var(--primary-color);
    transform: scale(1.2);
  } */
}

/* Loading Animation cho lazy images */
.villa-slide .item-inner img[data-ll-status="loading"] {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading-shimmer 1.5s infinite;
}

@keyframes loading-shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Accessibility improvements */
.villa-slide .slick-arrow:focus-visible {
  outline: 3px solid var(--accent-color);
  outline-offset: 2px;
}

.villa-slide .slide-item:focus-within .item-inner {
  box-shadow: 0 0 0 3px var(--accent-color);
}

/* Enhanced hover states */
.villa-slide .slide-item:hover .item-inner {
  background: rgba(26, 93, 46, 0.05);
}

/*# sourceMappingURL=main.css.map */
