/*
Theme Name: suzu
Theme URI: https://pet-cottage-suzu.com/
Author: HINA ONO
Author URI: https://interesting-stories.net/
Description: Habitacion Pet cottage SUZU 専用オリジナルテーマ
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: suzu
*/

/* =========================
 Common
========================= */
:root {
  --base: #FAF8F6;
  --accent: #DEA6BD;
  --sub: #7A8C7B;
  --text: #333333;
}
body {
  font-family: 'M PLUS 1', sans-serif;
}
.brSP{display:none;}
.brPC{display:block;}
@media (max-width: 768px) {
.brSP{display:block;}
.brPC{display:none;}
}

.section-title {
  font-weight: 500;
  font-size: clamp(22px, 3vw, 32px);
  color: var(--text);
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  letter-spacing: 1px;
}
.section-title::after {
  content: "";
  display: block;
  width: 80px;      
  height: 20px;    
  margin: 6px auto 0;
  background: url("https://pet-cottage-suzu.com/wp-content/uploads/2026/02/mmjo-12.png") 
no-repeat center / contain;
}

.btn-primary {
  display: inline-block;
  padding: 12px 28px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background: #c98aa4;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}



/* =========================
   Header
========================= */
.site-header {
  position: fixed;
  width: 100%;
  background: #fff;
  padding: 20px 0;
  z-index: 1000;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.site-logo a {
 font-family: 'M PLUS 1', sans-serif;
font-size: clamp(16px, 2.5vw, 24px);
  text-decoration: none;
  color: #000;
}

.menu-list {
  display: flex;
  gap: 30px;
  list-style: none;
}

.menu-list a {
  text-decoration: none;
  color: #000;
}

/* ハンバーガー */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: #000;
}
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 1000;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}


/* =========================
   Mobile Header
========================= */
@media (max-width: 768px) {
  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .menu-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    background: #fff;
    padding-top: 80px;
    flex-direction: column;
    gap: 24px;
    transition: right 0.3s ease;
    z-index: 1001;
  }

  .hamburger {
    display: flex;
    margin-left: auto; 
    z-index: 1100;
  }
  .menu-list.active {
    right: 0;
  }

}


/* =========================
   Hero
========================= */
.hero {
  padding: 120px 20px 60px; 
}

.hero-slider {
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px; 
}

.hero-track {
  display: flex;
  transition: transform 0.6s ease;
}

.hero-slide {
  min-width: 100%;
}

.hero-slide img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}

.hero-dots {
  text-align: center;
  margin-top: 20px;
}

.hero-dots button {
  width: 26px;
  height: 26px;
  margin: 0 8px;
  border: none;
  background: url("https://pet-cottage-suzu.com/wp-content/uploads/2026/02/01dfa-12-1.png") no-repeat center / contain;
  cursor: pointer;
  opacity: 0.5;
  transition: 0.3s ease;
}

.hero-dots button.active {
  opacity: 1;
  transform: scale(1.2); 
}

.hero-slider {
  position: relative;
}

.hero-caption {
  position: absolute;
  left: 60px;
  bottom: 60px;
  z-index: 20;
}

.hero-caption h1 {
  font-family:  'Marck Script', cursive;
font-weight:400;
font-size: clamp(28px, 6vw, 64px);
  color: #fff;
  line-height: 1.2;
  text-shadow: 0 4px 15px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateX(-40px);
  animation: fadeSlide 1.5s ease forwards;
}

@keyframes fadeSlide {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* =========================
   Responsive (Mobile)
========================= */
@media screen and (max-width: 768px) {
  .hero {
    padding: 100px 16px 40px;
  }
  .hero-slider {
    border-radius: 16px;
  }
  .hero-slide img {
    height: 320px;  
  }
  .hero-caption {
    left: 24px;
    bottom: 24px;
  }
  .hero-caption h1 {
    line-height: 1.3;
margin-bottom:45px;
  }
}