@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  background: #fefefe;
  color: #333;
}

/* ナビゲーション */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}
.header__logo {
  font-size: 28px;
  font-weight: 700;
  color: #ff6b9d;
  display: flex;
  align-items: center;
  gap: 8px;
}
.header__logo::before {
  content: "🐾";
  font-size: 32px;
}
.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  /* 子要素はフルクラス名で記述しても、ネスト内で正しく出力されます */
  /* .header__hamburger.active .header__hamburger-line:nth-child(n) */
}
.header__hamburger .header__hamburger-line {
  width: 28px;
  height: 3px;
  background: linear-gradient(135deg, #ff6b9d, #ffa500);
  border-radius: 3px;
  transition: all 0.3s;
}
.header__hamburger.active .header__hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}
.header__hamburger.active .header__hamburger-line:nth-child(2) {
  opacity: 0;
}
.header__hamburger.active .header__hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}
.header__nav {
  display: flex;
  gap: 40px;
  list-style: none;
  /* .header__nav-link */
}
.header__nav-link {
  color: #555;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}
.header__nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #ff6b9d, #ffa500);
  transition: width 0.3s;
}
.header__nav-link:hover {
  color: #ff6b9d;
}
.header__nav-link:hover::after {
  width: 100%;
}

/* ヒーローセクション */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, #fff5e6 0%, #ffe6f0 50%, #e6f7ff 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "🐾";
  position: absolute;
  font-size: 200px;
  opacity: 0.1;
  top: -50px;
  right: -50px;
  animation: float 6s ease-in-out infinite;
}
.hero::after {
  content: "🐾";
  position: absolute;
  font-size: 150px;
  opacity: 0.1;
  bottom: -30px;
  left: -30px;
  animation: float 8s ease-in-out infinite;
}
.hero__content {
  position: relative;
  z-index: 1;
}
.hero__title {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ff6b9d;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
.hero__subtitle {
  font-size: 20px;
  color: #666;
  margin-bottom: 40px;
  letter-spacing: 2px;
}
.hero__button {
  padding: 16px 48px;
  background: linear-gradient(135deg, #ff6b9d, #ffa500);
  border: none;
  border-radius: 50px;
  color: white;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}
.hero__button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(255, 107, 157, 0.4);
}

/* keyframes はルートに */
@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(10deg);
  }
}
/* セクション共通 */
.section {
  padding: 100px 10%;
  max-width: 1400px;
  margin: 0 auto;
}
.section__title {
  font-size: 42px;
  text-align: center;
  margin-bottom: 60px;
  color: #ff6b9d;
  position: relative;
  display: inline-block;
  width: 100%;
}
.section__title::after {
  content: "🐾";
  display: block;
  font-size: 24px;
  margin-top: 10px;
}

/* ペット一覧セクション */
.pets {
  background: #fff;
}
.pets__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}
.pets__card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.pets__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(255, 107, 157, 0.2);
}
.pets__card-image {
  height: 300px;
  background: linear-gradient(135deg, #ffe6f0, #e6f7ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  position: relative;
  overflow: hidden;
}
.pets__card-image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
  animation: shine 3s infinite;
}
.pets__card-info {
  padding: 24px;
}
.pets__card-name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #333;
}
.pets__card-details {
  font-size: 14px;
  color: #888;
  margin-bottom: 12px;
}
.pets__card-price {
  font-size: 28px;
  font-weight: 700;
  color: #ff6b9d;
  margin-bottom: 16px;
}
.pets__card-button {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #ff6b9d, #ffa500);
  border: none;
  border-radius: 10px;
  color: white;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.3s;
}
.pets__card-button:hover {
  transform: scale(1.05);
}

@keyframes shine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
/* トリミングセクション */
.trimming {
  background: linear-gradient(135deg, #fff5e6 0%, #ffe6f0 100%);
}
.trimming__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.trimming__image {
  background: linear-gradient(135deg, #ffeef8, #e6f7ff);
  height: 400px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.trimming__text-title {
  font-size: 32px;
  margin-bottom: 20px;
  color: #ff6b9d;
}
.trimming__text-description {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 15px;
}
.trimming__menu {
  list-style: none;
  margin-top: 30px;
}
.trimming__menu-item {
  padding: 15px;
  background: white;
  margin-bottom: 10px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.trimming__menu-name {
  font-weight: 600;
  color: #333;
}
.trimming__menu-price {
  font-weight: 700;
  color: #ff6b9d;
}

/* ホテルセクション */
.hotel {
  background: #fff;
}
.hotel__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hotel__image {
  background: linear-gradient(135deg, #e6f7ff, #ffeef8);
  height: 400px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.hotel__text-title {
  font-size: 32px;
  margin-bottom: 20px;
  color: #ff6b9d;
}
.hotel__text-description {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 15px;
}
.hotel__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}
.hotel__feature {
  padding: 20px;
  background: linear-gradient(135deg, #fff5e6, #ffe6f0);
  border-radius: 15px;
  text-align: center;
}
.hotel__feature-icon {
  font-size: 48px;
  margin-bottom: 10px;
}
.hotel__feature-text {
  font-size: 14px;
  font-weight: 600;
  color: #555;
}

/* ブログセクション */
.blog {
  background: linear-gradient(135deg, #e6f7ff 0%, #fff5e6 100%);
}
.blog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}
.blog__card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.blog__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(255, 165, 0, 0.2);
}
.blog__card-image {
  height: 220px;
  background: linear-gradient(135deg, #ffe6f0, #fff5e6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}
.blog__card-content {
  padding: 24px;
}
.blog__card-date {
  font-size: 13px;
  color: #999;
  margin-bottom: 12px;
}
.blog__card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #333;
  line-height: 1.4;
}
.blog__card-excerpt {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
}
.blog__card-tag {
  display: inline-block;
  padding: 6px 14px;
  background: linear-gradient(135deg, #ff6b9d, #ffa500);
  color: white;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

/* アクセスセクション */
.access {
  background: #fff;
}
.access__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.access__map {
  background: linear-gradient(135deg, #e6f7ff, #ffe6f0);
  height: 400px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #999;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.access__info-title {
  font-size: 32px;
  margin-bottom: 30px;
  color: #ff6b9d;
}
.access__info-item {
  margin-bottom: 20px;
  padding: 20px;
  background: linear-gradient(135deg, #fff5e6, #ffe6f0);
  border-radius: 15px;
}
.access__info-label {
  font-size: 14px;
  font-weight: 700;
  color: #ff6b9d;
  margin-bottom: 8px;
}
.access__info-text {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* フッター */
.footer {
  background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
  padding: 60px 10%;
  color: #fff;
}
.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
.footer__section-title {
  font-size: 20px;
  margin-bottom: 20px;
  color: #ff6b9d;
}
.footer__section-text, .footer__section-link {
  color: #bbb;
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
  transition: color 0.3s;
}
.footer__section-link:hover {
  color: #ff6b9d;
}
.footer__social {
  display: flex;
  gap: 16px;
}
.footer__social-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ff6b9d, #ffa500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  cursor: pointer;
}
.footer__social-icon:hover {
  transform: translateY(-3px);
}
.footer__bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid #444;
  color: #888;
}

/* レスポンシブ */
@media (max-width: 500px) {
  .hero__title {
    font-size: 42px;
  }
  .hero__subtitle {
    font-size: 16px;
  }
  .header__hamburger {
    display: flex;
  }
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 80%;
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
  }
  .header__nav.active {
    right: 0;
  }
  .header__nav-link {
    font-size: 20px;
  }
  .header__nav-link::after {
    display: none;
  }
  .trimming__content,
  .hotel__content,
  .access__content {
    grid-template-columns: 1fr;
  }
  .hotel__features {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 60px 5%;
  }
  .section__title {
    font-size: 32px;
  }
  .trimming__image,
  .hotel__image,
  .access__map {
    height: 300px;
  }
}/*# sourceMappingURL=style.css.map */