﻿body {
  margin: 0;
  font-family: "Hiragino Sans", "繝偵Λ繧ｮ繝手ｧ偵ざ繧ｷ繝・け";
  font-weight: 600;
}

.header-top{
  background-color: #837669;
  padding: 10px 16px;
  display: flex;
  justify-content: center; 
  align-items: center;
}

.header-top .tel a{
  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 8px 14px;
  border-radius: 999px;

  background: rgba(255,255,255,0.18);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

.header-top .tel a:hover{
  background: rgba(255,255,255,0.28);
}

.header-main {
  background: #fff;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.logo img {
  height: 70px;
}


.header-flex{
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.header-instagram{
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}

.header-instagram img{
  width: 60px;
  height: 60px;
  opacity: 0.85;
  transition: opacity 0.3s, transform 0.3s;
}

.header-instagram-label{
  font-size: 12px;
  line-height: 1;
  color: #837669;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}


.header-instagram:hover img{
  opacity: 1;
  transform: scale(1.1);
}


.menu1 nav ul {
  display: flex;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu1 nav ul li a {
  text-decoration: none;
  color: inherit;
}


.global-menu {
  background-color: #d18686; 
}

.global-menu ul {
  display: flex;
  justify-content: space-between; 
  list-style: none;
  margin: 0;
  padding: 12px 16px;
}

.global-menu a {
  color: #fff;
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}


.global-menu ul li {
  position: relative;
  padding: 0 12px;
  flex: 1;                
  display: flex;          
  justify-content: center; 
}

.global-menu ul li + li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 1.25em;
  background-color: rgba(255, 255, 255, 0.5);
}

.global-menu a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: transform 200ms ease;
}

.global-menu a:hover::after,
.global-menu a:focus-visible::after {
  transform: translateX(-50%) scaleX(1);
}

.hero-carousel{
  padding: 18px 16px 10px;
  background: linear-gradient(180deg, #fff5ee 0%, #fff 100%);
}

.carousel{
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  overflow: visible;
}

.carousel-track{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(131,118,105,0.18);
}

.carousel-slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
}

.carousel-slide.is-active{
  opacity: 1;
  visibility: visible;
}

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

.carousel-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(90,70,50,0.6);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  z-index: 2;
  transition: background .2s, transform .2s;
}

.carousel-btn:hover,
.carousel-btn:focus-visible{
  background: rgba(90,70,50,0.85);
}

.carousel-btn:active{
  transform: translateY(-50%) scale(0.96);
}

.carousel-btn-prev{
  left: 14px;
}

.carousel-btn-next{
  right: 14px;
}

.carousel-dots{
  position: static;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 26px;
}

.carousel-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(131,118,105,0.32);
  cursor: pointer;
  transition: transform .2s, background .2s;
}

.carousel-dot.is-active{
  transform: scale(1.2);
  background: #837669;
}

@media (max-width: 768px){
  .hero-carousel{
    padding: 12px 12px 8px;
  }

  .carousel-track{
    aspect-ratio: 16 / 9;
  }

  .carousel-btn{
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
}

.text {
  background-color: rgba(255, 255, 255, 0.85); 
  border-radius: 15px;                         
  padding: 30px;                               
  max-width: 900px;                            
  margin: 50px auto;                           
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);    
  color: #5a4632;

}

.home {
  position: fixed;    
  bottom: 20px;        
  right: 20px;         
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.home::before {
  content: "ホームに戻る";
  font-size: 14px;
  line-height: 1;
  color: #5a4632;
}

.home img {
  width: 100px;        
  height: auto;
  cursor: pointer;
  opacity: 0.85;      
  transition: opacity 0.3s, transform 0.3s;
}

.home img:hover {
  opacity: 1;
  transform: scale(1.1); 
}


.ig-section{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center; 
  margin: 50px 0;
  padding: 0;          
}

.ig-title{
  width: 100%;
  max-width: 1300px;
  margin: 0 0 16px 0;
}


.ig-embed-grid{
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}


.ig-embed-grid > blockquote.instagram-media{
  margin: 0 auto !important;
  width: 100% !important;
  max-width: 320px !important;  
}

@media (max-width: 768px){
  .ig-embed-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}


.access {
  max-width: 900px;
  margin: 80px auto;
  padding: 30px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.access h2 {
  margin-bottom: 20px;
  color: #5a4632;
}

.map-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%; 
  margin-bottom: 20px;
}

.map-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.access-text {
  color: #5a4632;
  line-height: 1.8;
  margin: 0;
  text-wrap: pretty;
}

.access-text + .access-text{
  margin-top: 8px;
}


.page{
  padding: 32px 16px;
  background: #faf7f4;
}
.page-inner{
  max-width: 900px;
  margin: 0 auto;
}

.page-title h1{
  margin: 0 0 8px;
  font-size: 28px;
  color: #5a4632;
}
.page-lead{
  margin: 0 0 18px;
  color: #6b5a4b;
  line-height: 1.8;
}

.card{
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  margin: 18px 0;
  border: 1px solid rgba(131,118,105,0.18);
}

.section-title{
  margin: 0 0 12px;
  font-size: 20px;
  color: #5a4632;
}


.table-wrap{
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
}


.price-table{
  width: 100%;
  min-width: 650px; 
  border-collapse: collapse;
  background: #fff;
}


.price-table thead th{
  position: sticky;
  top: 0;
  background: #837669;
  color: #fff;
  text-align: center;
  padding: 12px 10px;
  font-weight: 800;
  z-index: 1;
}


.price-table th,
.price-table td{
  border: 1px solid rgba(0,0,0,0.15);
  padding: 10px 10px;
  font-size: 15px;
}


.price-table tbody td:first-child{
  text-align: left;
  font-weight: 700;
  color: #5a4632;
  white-space: nowrap;
}


.price-table tbody td:nth-child(2),
.price-table tbody td:nth-child(3){
  text-align: center;
  white-space: nowrap;
  font-weight: 700;
  color: #333;
}


.price-table tbody tr:nth-child(even){
  background: rgba(209,134,134,0.08);
}


.price-table tbody tr:hover{
  background: rgba(209,134,134,0.16);
}

/* trimming: mobile-only table wrap (Option 2) */
@media (max-width: 768px){
  #trimming-page .table-wrap{
    overflow-x: visible;
  }

  #trimming-page .price-table{
    min-width: 0;
    width: 100%;
    table-layout: fixed;
  }

  #trimming-page .price-table th,
  #trimming-page .price-table td{
    padding: 10px 8px;
    font-size: 13px;
  }

  #trimming-page .price-table th:first-child,
  #trimming-page .price-table td:first-child{
    width: 52%;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
    line-height: 1.5;
  }

  #trimming-page .price-table th:nth-child(2),
  #trimming-page .price-table th:nth-child(3),
  #trimming-page .price-table td:nth-child(2),
  #trimming-page .price-table td:nth-child(3){
    width: 24%;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
    line-height: 1.35;
    font-size: 12px;
    text-align: center;
  }
}

.note{
  margin: 10px 0 0;
  font-size: 13px;
  color: #7a6a5d;
  line-height: 1.7;
}

.check-list{
  margin: 0;
  padding-left: 1.2em;
  color: #5a4632;
  line-height: 1.9;
}
.check-list li{
  margin: 6px 0;
}

@media (max-width: 768px){
  .page-title h1{ font-size: 22px; }
  .card{ padding: 18px; }
}


.between-image {
  display: flex;
  justify-content: center; 
  margin: 40px 0;        
}

.between-image img {
  width: 100%;
  max-width: 300px;  
  height: auto;

 
  border-radius: 0;
  box-shadow: none;
}


.page{
  padding: 32px 16px;
  background: #faf7f4; 
}

.page-inner{
  max-width: 900px;
  margin: 0 auto;
}

.breadcrumb{
  font-size: 14px;
  color: #6b5a4b;
  margin-bottom: 14px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.breadcrumb a{
  color: #6b5a4b;
  text-decoration: none;
}
.breadcrumb a:hover{
  text-decoration: underline;
}

.page-title{
  margin: 8px 0 18px;
}
.page-title h1{
  margin: 0 0 8px;
  font-size: 28px;
  color: #5a4632;
  letter-spacing: 0.02em;
}
.page-lead{
  margin: 0;
  color: #6b5a4b;
  line-height: 1.8;
  text-wrap: pretty;
}

.page-lead + .page-lead{
  margin-top: 8px;
}

.text p{
  margin: 0;
  text-wrap: pretty;
}

.text p + p{
  margin-top: 10px;
}

.puppy-sub + .puppy-sub{
  margin-top: 10px;
}

.card{
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  margin: 18px 0;
  border: 1px solid rgba(131,118,105,0.18); 
}

.section-title{
  margin: 0 0 12px;
  font-size: 20px;
  color: #5a4632;
}

.section-text{
  margin: 0 0 10px;
  color: #5a4632;
  line-height: 1.9;
}

.price-em{
  color: #b24b4b; 
}
.note{
  margin: 8px 0 0;
  font-size: 13px;
  color: #7a6a5d;
  line-height: 1.7;
}

.divider{
  height: 1px;
  background: rgba(0,0,0,0.08);
  margin: 18px 0;
}

.sub-title{
  margin: 0 0 10px;
  font-size: 16px;
  color: #5a4632;
}


.price-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.price-card{
  border-radius: 12px;
  padding: 14px;
  background: rgba(209,134,134,0.12); 
  border: 1px solid rgba(209,134,134,0.25);
  text-align: center;
}

.price-title{
  margin: 0 0 8px;
  font-size: 15px;
  color: #5a4632;
}

.price-value{
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: #5a4632;
}


.check-list{
  margin: 0;
  padding-left: 1.2em;
  color: #5a4632;
  line-height: 1.9;
}
.check-list li{
  margin: 6px 0;
}


.cta{
  display: grid;
  gap: 10px;
}

.btn-tel{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 14px;
  border-radius: 10px;
  background: #837669;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}
.btn-tel:hover{
  opacity: 0.92;
}


@media (max-width: 768px){
  .page-title h1{
    font-size: 22px;
  }
  .card{
    padding: 18px;
  }
  .price-grid{
    grid-template-columns: 1fr; 
  }
}

.puppy-empty{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.dog-image{
  max-width: 780px;
  width: 100%;
  height: auto;
}

.puppy-message{
  width: 100%;
  text-align: left;
  font-size: 34px;
  color: #5a4632;
  margin: 0;
  line-height: 1.35;
}

.puppy-message strong{
  font-weight: 800;
}

.puppy-sub{
  margin: 0;
  width: 100%;
  text-align: left;
  font-size: 18px;
  color: #5a4632;
  line-height: 1.8;
}


.sp-only{
  display: none;
}

br.sp-only{
  display: none;
}

@media (max-width: 768px){
  .puppy-image{
    max-width: 280px;
  }
  .puppy-message{
    font-size: 24px;
  }
  .dog-image{
    max-width: 100%;
  }
  .puppy-sub{
    font-size: 16px;
  }
  .sp-only{
    display: inline;
  }
  br.sp-only{
    display: inline;
  }
}



.site-footer{
  background: #837669;      
  color: #fff;
  margin-top: 0px;
}

.footer-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 26px 16px;
}


.footer-head{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.25);
}

.footer-logo{
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.footer-tel{
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
}
.footer-tel:hover{
  background: rgba(255,255,255,0.25);
}


.footer-nav{
  display: flex;
  justify-content: center;
  gap: 14px;
  padding: 16px 0 12px;
  flex-wrap: wrap;
}

.footer-nav a{
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(209,134,134,0.25); /* 縺上☆縺ｿ繝斐Φ繧ｯ */
}

.footer-nav a:hover,
.footer-nav a:focus-visible{
  background: rgba(209,134,134,0.4);
  outline: none;
}


.footer-meta{
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 10px;
  text-align: center;
}

.footer-hours{
  margin: 0 0 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.9);
}



@media (max-width: 768px){
  .footer-head{
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}


.cal-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.cal-title{
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .02em;
}

.cal-btn{
  border: none;
  background: rgba(131,118,105,0.12);
  color: #3a332c;
  width: 44px;
  height: 40px;
  border-radius: 12px;
  font-size: 22px;
  font-weight: 800;
  cursor: pointer;
  transition: .2s;
}
.cal-btn:hover{
  background: rgba(131,118,105,0.22);
}

.cal-legend{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 13px;
}

.legend-item{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.legend-dot{
  width: 12px;
  height: 12px;
  border-radius: 999px;
  display: inline-block;
}
.legend-dot.is-open{ background: rgba(131,118,105,0.18); }
.legend-dot.is-closed{ background: rgba(210,90,90,0.20); }
.legend-dot.is-today{ outline: 2px solid rgba(131,118,105,0.65); background: transparent; }

.cal-wrap{
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.cal-grid{
  display: grid;
  grid-template-columns: repeat(7, minmax(44px, 1fr));
  gap: 8px;
}

.cal-dow{
  font-size: 12px;
  text-align: center;
  opacity: .85;
  padding: 6px 0;
  font-weight: 800;
}

.cal-cell{
  border-radius: 14px;
  padding: 10px 10px 12px;
  background: rgba(131,118,105,0.10);
  min-height: 64px;
  position: relative;
}

.cal-cell.is-empty{
  background: transparent;
}

.cal-day{
  font-size: 14px;
  font-weight: 800;
}

.cal-badge{
  margin-top: 6px;
  display: inline-block;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  font-weight: 800;
}

.cal-cell.is-closed{
  background: rgba(210,90,90,0.12);
}

.cal-cell.is-closed .cal-badge{
  background: rgba(210,90,90,0.18);
  color: #6b2a2a;
}

.cal-cell.is-open .cal-badge{
  background: rgba(131,118,105,0.18);
  color: #3a332c;
}

.cal-cell.is-today{
  outline: 2px solid rgba(131,118,105,0.55);
}


@media (max-width: 600px){
  .cal-header{
    gap: 8px;
  }

  .cal-title{
    font-size: 16px;
    text-align: center;
  }

  .cal-btn{
    width: 40px;
    height: 38px;
    border-radius: 10px;
    flex: 0 0 auto;
  }

  .cal-legend{
    gap: 8px 10px;
    font-size: 12px;
    margin-bottom: 10px;
  }

  .legend-item{
    gap: 6px;
  }

  .cal-wrap{
    margin: 0 -2px;
    padding: 0 2px 6px;
  }

  .cal-grid{
    min-width: 560px;
    gap: 6px;
  }

  .cal-dow{
    font-size: 11px;
    padding: 4px 0;
  }

  .cal-cell{
    min-height: 66px;
    padding: 8px;
    border-radius: 12px;
  }

  .cal-day{
    font-size: 13px;
  }

  .cal-badge{
    margin-top: 5px;
    font-size: 10px;
    padding: 3px 7px;
    letter-spacing: .01em;
  }
}

@media (max-width: 420px){
  .cal-grid{
    min-width: 520px;
  }
}


.footer-copy-wrap{
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  align-items: center; 
  gap: 4px; 
}

.footer-copy,
.footer-policy{
  font-size: 12px; 
  color: rgba(255,255,255,0.75);  
}

.footer-policy a{
  color: inherit;
  text-decoration: none;
}

.footer-policy a:hover{
  text-decoration: underline;
}

@media (max-width: 900px){
  .text,
  .access{
    margin: 32px 12px;
    padding: 20px;
  }

  .ig-title{
    padding: 0 12px;
    box-sizing: border-box;
  }
}

@media (max-width: 768px){
  .header-top{
    padding: 8px 12px;
  }

  .header-top .tel a{
    width: 100%;
    justify-content: center;
    font-size: 13px;
    padding: 8px 10px;
    text-align: center;
  }

  .header-inner{
    padding: 12px;
  }

  .logo img{
    height: 54px;
  }

  .header-instagram img{
    width: 46px;
    height: 46px;
  }

  .header-instagram-label{
    font-size: 11px;
  }

  .global-menu ul{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    padding: 1px;
    background: rgba(255, 255, 255, 0.25);
  }

  .global-menu ul li{
    padding: 0;
    min-width: 0;
    background: #d18686;
  }

  .global-menu ul li + li::before{
    content: none;
  }

  .global-menu a{
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px 6px;
    font-size: 13px;
    box-sizing: border-box;
  }

  .text h2,
  .access h2{
    font-size: 22px;
    margin-top: 0;
  }

  .text p,
  .page-lead,
  .section-text,
  .access-text,
  .check-list li,
  .note,
  .puppy-sub{
    font-size: 15px;
    line-height: 1.9;
  }

  .home{
    right: 12px;
    bottom: 12px;
  }

  .home img{
    width: 76px;
  }
}

@media (max-width: 560px){
  .header-flex{
    gap: 8px;
  }

  .logo img{
    height: 46px;
  }

  .header-instagram img{
    width: 40px;
    height: 40px;
  }

  .global-menu ul{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .carousel-dots{
    margin-top: 14px;
  }

  .text,
  .access{
    border-radius: 12px;
    padding: 16px;
    margin: 24px 10px;
  }

  .ig-embed-grid{
    grid-template-columns: 1fr;
  }

  .puppy-message{
    font-size: 21px;
  }

  .puppy-sub{
    font-size: 15px;
  }

  .text p,
  .page-lead,
  .section-text,
  .access-text,
  .check-list li,
  .note,
  .puppy-sub{
    line-height: 1.95;
  }
}
