/* ====================================================================
   index.css
   トップページ（index.php）専用スタイル：ヒーロー（スライドショー）エリア
   ==================================================================== */

.hero {
	position: relative;
	padding: 0 6.5% 0;
	background: #fff;
}

.hero-frame {
	position: relative;
	width: 100%;
	height: calc(100vh - 200px); /* header(130px) を引いた上で下部に少し余白を残す */
    min-height: 550px;
	border-radius: 100px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.hero-slider,
.hero-frame .vegas-container,
.hero-frame .vegas-slide,
.hero-frame .vegas-slide-inner {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

/* --- copy overlay (tategaki) --- */
.hero-copy {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	align-items: flex-start;
	gap: 10px;
	z-index: 4;
}

.hero-copy-line {
	writing-mode: vertical-rl;
	text-orientation: upright;
	background: #fff;
	font-family: var(--font-klee);
	font-weight: 600;
	color: var(--color-text-dark);
	padding: 20px 0 0px;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
	letter-spacing: 0.12em;
	border-radius: 6px;
}

.hero-copy p {
  font-size: min(40px, 2.5vw);
  
}

/* --- dogs illustration --- */
.hero-dogs {
	position: absolute;
	left: 20px;
	bottom: -10px;
	width: 26%;
	min-width: 220px;
	z-index: 5;
	filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.18));
  
}



/* ==================== Responsive ==================== */

@media (min-width: 1561px) {
  .hero-frame {
    height: calc(100vh - 135px);
  }
  
  .hero-dogs {
    bottom: 0;
    left: 30px;
  }
  
  .news-cal-curve {
    top: -70px;
    height: 70px;
  }
  
}


@media (max-width: 1560px) {


	.site-header {
		height: 115px;
	}
	
	.hero-copy p {
		font-size: max(25px, 2.2vw);
	}
}

@media (max-width: 1200px) {
  
	.site-header {
    height: 105px;
  }
  
  .hero {
    padding: 0 30px 0;
  }

}

@media (max-width: 900px) {
	.hero-copy-line--sub {
		font-size: 16px;
	}
	.hero-copy-line--main {
		font-size: 22px;
	}
	.hero-dogs {
		width: 33%;
		min-width: 150px;
	}
}

@media (max-width: 786px) {
	.hero {
		padding: 0 20px;
	}

	.site-header {
    height: 95px;
  }


  .site-logo img {
    height: 50px;
  }

}
@media (max-width: 600px) {
	.hero {
		padding: 0 20px 40px;
	}
	.hero-frame {
		height: auto;
		aspect-ratio: 4 / 5;
		border-radius: 40px;
    min-height: 500px;
	}
	.hero-copy {
		left: 50%;
		gap: 6px;
    top: calc(50% - 20px);
	}
  
	.hero-copy-line {
		padding: 10px 1px 0;
	}
	.hero-dogs {
		width: 52%;
    bottom: 0;
		min-width: 130px;
		left: 2%;
	}
  
  .site-logo img {
    height: 45px;
  }
  
  .site-header {
    height: 90px;
  }
  
}

/* ====================================================================
   about.css
   トップページ（index.php）「About」セクション
   構図: 左側の文章 + 右側の超大型丸写真（about-content を display:flex で並列）
   ==================================================================== */

.about {
	position: relative;
	background: #fff;
}

.about-inner {
	position: relative;
	padding-bottom: 120px; /* 左下の肉球トレイル分の余白 */
}


/* --- 文字カラムと写真カラムを横並びにする --- */
.about-content {
	position: relative;
	z-index: 2;
	display: grid;
  grid-template-columns: repeat(2, 1fr);
	align-items: flex-start;
	gap: clamp(24px, 5vw, 70px);
}

/* --- 左側テキスト --- */
.about-text {
	max-width: 100%;
	padding-top: 54px;
  position: relative;
}

.about-desc {
	font-size: 14px;
	line-height: 2;
	color: var(--color-text-brown, #6b4f4f);
	margin-bottom: 16px;
}


/* --- 右側：超大型丸写真 + 小犬イラストのカラム --- */
div.about-photo {
	position: relative;
}

.about-photo-wrap {
	position: relative;
	z-index: 2;
	width: 100%;
	aspect-ratio: 1 / 1;
}

img.about-photo {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: #fff;
	object-fit: cover;
	box-sizing: border-box; 
  z-index: 1;
  box-shadow: 3px 3px 10px #e8b6b9;
  position: relative;
}


.about-photo-ring {
  position: relative;
}

.ring-circle {
  position: absolute;
  left: -5%;
  width: 100%;
  aspect-ratio: 1/1;
  background: #f9efed;
  border-radius: 50%;
  top: 5%;
  z-index: 0;
}

.about-photo-decor {
  position: absolute;
  z-index: 4;
  top: -5%;
  right: 0;
  width: 20%;
  min-width: 70px;
}

/* --- 二つのエリアを跨ぐ小犬イラスト --- */
.draw-dog{
  position: absolute;
  z-index: 0;
  right: -100px;
  bottom: 0;
  width: 60%;
  min-width: 130px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  transform: translateY(75%);
}



.about-dog img{
  transform: rotate(-10deg);
  filter: drop-shadow(0 12px 16px rgba(0, 0, 0, 0.15));
}

/* --- 左下の肉球トレイル（右上→左下に散らす） --- */

.dog-paws{
  position: absolute;
}

.about-paw-trail {
	z-index: 1;
	width: 150px;
	height: 375px;
}

.about-paw-trail img {
	position: absolute;
	width: 24px;
	height: auto;
	opacity: 0;
	animation: aboutPawStep 5s ease-in-out infinite;
}

.about-dog {
  position: relative;
}

.about-dog .dog-paws{
  transform: rotate(90deg) translate(70px, 260px);
  top: 0;
  left: 0;
}

.about-paw-trail img:nth-child(1) { left: 0;   top: 0;   animation-delay: 0s; }
.about-paw-trail img:nth-child(2) { left: 60px; top: 71px; animation-delay: 0.35s; }
.about-paw-trail img:nth-child(3) { left: 79px; top: 142px; animation-delay: 0.7s; }
.about-paw-trail img:nth-child(4) { left: 41px; top: 214px; animation-delay: 1.05s; }
.about-paw-trail img:nth-child(5) { left: 109px; top: 281px; animation-delay: 1.4s; }
.about-paw-trail img:nth-child(6) { left: 79px; top: 345px; animation-delay: 1.75s; }

@keyframes aboutPawStep {
	0% {
		opacity: 0;
		transform: translateY(5px) scale(0.75) rotate(-45deg) scaleY(-1);
	}
	10% {
		opacity: 0.75;
		transform: translateY(0) scale(1) rotate(-45deg) scaleY(-1);
	}
	40% {
		opacity: 0.75;
		transform: translateY(0) scale(1) rotate(-45deg) scaleY(-1);
	}
	100% {
		opacity: 0;
		transform: translateY(-3px) scale(1) rotate(-45deg) scaleY(-1);
	}
}

/* ==================== Responsive ====================
   文字エリア → 小犬イラスト＋丸写真 → 肉球アニメーション の順に積む
*/
@media (max-width: 1100px) {
	.draw-dog {
		width: 20vw;
		bottom: 2.5vw;
	}
}
@media (min-width: 1001px) {
  
  .draw-dog-sp{
    display: none;
  }
  
}
@media (max-width: 1000px) {
	.about-content {
		grid-template-columns: repeat(1, 1fr);
	}
  
  .about-photo-wrap {
    width: 100%;
    min-width: 300px;
    margin: auto;
  }

	.draw-dog-pc {
		display: none;
	}

  
  .draw-dog-sp .dog-paws{
    position: relative;
    transform: translateX(-20%);
    left: 50%;
  }
  
  .draw-dog-sp .about-paw-trail {
    transform: rotate(-30deg);
    height: fit-content;
  }
  
  .more-btn-box{
    display: flex;
    width: 100%;
    justify-content: flex-end;
  }

  .about-photo-ring {
    display: none;
  }
  
  .draw-dog-sp{
    display: block;
    position: relative;
    transform: inherit;
  }
  
  .draw-dog-sp .about-dog {
    left: 0;
    width: 100%;
    top: 0;
  }

  
  .ring-circle {
    z-index: 1;
  }
  
  .about-inner {
    padding-bottom: 100px;
  }
  
  .about-dog img {
    transform: rotate(0deg);
    filter: inherit;
  }
  
}

@media (max-width: 900px) {
	.about {
		padding: 30px 0 ;
	}

	.about-inner {
		padding-bottom: 0;
    padding-left: 20px;
    padding-right: 20px;
	}

	.about-content {
		flex-direction: column;
		align-items: center;
		gap: 26px;
	}
	.about-text {
		flex: none;
		max-width: 100%;
		width: 100%;
		padding-top: 0;
	}

	div.about-photo {
		flex: none;
		width: 100%;
		margin: 0 auto;
	}

	.about-photo-decor {
		display: none;
	}

	.about-paw-trail {
		position: relative;
		margin: 20px auto 0;
	}
  
  .ring-circle{
    width: 90%;
    right: 5%;
    left: inherit;
  }
  
  .about-photo-wrap {
    aspect-ratio: inherit;
  }
  
  .draw-dog-sp .dog-paws {
    display: none;
  }
  
}

@media (max-width: 560px) {
	
	.about-desc {
		font-size: 13px;
	}
}





.services {
	position: relative;
	background: #f8ecec;
  border-radius: 150px;
  padding-bottom: 20px;
  overflow: hidden;
}

/* --- 内側コンテンツ --- */
.services-inner {
	position: relative;
	z-index: 1;
}

.services-heading {
	position: relative;
	text-align: center;
	height: clamp(90px, 12vw, 150px);
	margin-bottom: 40px;
}

.services-heading-main {
	position: relative;
	z-index: 2;
	font-family: var(--font-noto-serif, serif);
	font-size: clamp(22px, 2.6vw, 32px);
	font-weight: 600;
	letter-spacing: 0.14em;
	color: var(--color-text-dark, #4a3c3c);
  left: 50%;
  top: 50%; 
  transform: translate(-50%, -50%);
}

/* --- 4項目のグリッド --- */
.services-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: clamp(30px, 6vw, 80px);
	row-gap: 50px;
	width: 88%;
	max-width: 980px;
	margin: 0 auto;
}

.service-item {
	position: relative;
}

.service-circle {
  position: relative;
  z-index: 1;
  width: 80%;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-dog {
  position: relative;
  z-index: 0;
  width: 80%;
}

.service-dog img{
  filter: drop-shadow(0 12px 16px rgba(0, 0, 0, 0.15));
}



.service-dog::before {
  content: '';
  display: block;
  background: #fff;
  border-radius: 50%;
  width: 100%;
  aspect-ratio: 1 / 1;
  position: absolute;
  bottom: -15%;
  z-index: -1;
  box-shadow: 3px 3px 10px #e8b6b9;
}

.service-label {
  position: relative;
  z-index: 2;
  background: var(--color-pink-deep, #ffbdc2);
  color: #fff;
  font-size: 33px;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  border-radius: 999px;
  font-family: var(--font-klee);
  padding: 5px 30px;
  width: 100%;
  text-align: center;
  overflow: hidden;
}




.service-bk{
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0.5;
  background: url("../img/bk/blocks-pink.png") repeat;
  background-size: auto;
}





.service-card {
	position: relative;
	z-index: 0;
	margin-top: -55px;
	border-radius: 20px;
	padding: 34px 22px 20px;
	text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


.service-card::before {
  position: absolute;
  content: '';
  display: block;
  width: calc(100% + 40px);
  left: 50%;
  height: 100%;
  transform: translate(-50%, -50%);
  background: #fff;
  z-index: -1;
  top: 50%;
  border-radius: 5px;
  box-shadow: 3px 3px 10px #e8b6b9;
}


.service-desc {
	font-size: 13px;
	line-height: 1.9;
	color: var(--color-text-brown, #6b4f4f);
	margin-bottom: 14px;
}



/* ==================== Responsive ==================== */
@media (max-width: 1160px) {
	.service-desc {
        margin-top: 10px;
        padding-left: 20px;
        padding-right: 20px;
	}

	.service-card::before {
		width: 100%;
	}

	.services-grid {
		width: 100%;
		column-gap: 30px;
	}

	.service-label {
		font-size: 30px;
		padding: 5px 20px;
		line-height: 1.35;
		width: 300px;
		letter-spacing: 0.02rem;;
	}

	.service-card {
		margin-top: -80px;
		padding: 34px 0 20px;
	}

}

@media (max-width: 1000px) {

  .service-circle {
    aspect-ratio: inherit; 
  }
  
  .service-more{
    margin-top: 0;
  }
  
  .service-desc {
    min-height: 75px;
    padding-left: 0;
    padding-right: 0;
  }
  
  .service-card{
    background: #fff;
    padding: 35px 20px 20px;
    margin-top: 0;
    border-radius: 5px;
    top: -27px;
  }
  
  .service-card::before {
    display: none;
  }
  
  .services-grid {
      gap: 20px;
  }
}

@media (max-width: 768px) {
  .services-grid {
      grid-template-columns: repeat(1, 1fr);
  }
  
  .service-desc {
    min-height: inherit;
  }
  
   .service-label {
    font-size: max(5vw, 25px);
    width: 80%;
    min-width: 300px;;
  }
  
  
  .service-card {
    top: -22px;
  }
  
  .service-card {
    padding: 25px 20px 20px;
  }
  
}

@media (max-width: 600px) {
	.services {
		border-radius: 40px;
	}
  
  .services-heading {
    margin-bottom: 20px;
}
  

	.services-grid {
		width: 100%;
	}

	.services-decor-item {
		opacity: 0.35;
		width: 54px !important;
	}
  
  
  .service-label {
    font-size: 25px;
    width: 240px;
    min-width: inherit;
  }
}

/* ====================================================================
   REASONS セクション
   ==================================================================== */
.reason {
	position: relative;
	background: #fff;
}

.reason-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-top: 50px;
	position: relative;
	z-index: 1;
}

.reason-card {
	background: #fffbfb;
/*	border: 1px solid var(--color-pink-icon, #e8b6b9);*/
	border-radius: 24px;
	padding: 40px 24px 30px;
	text-align: center;
}

.reason-card {
    border-radius: 24px;
    padding: 20px 20px 30px;
    text-align: center;
    box-shadow: 3px 3px 10px #e8b6b9;
    background: #fff;
}

.reason-card-num {
  font-family: var(--font-cormorant, serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-style: italic;
  width: 39px;
  margin: auto;
  background: #e8b6b9;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  color: #fff;
  padding-bottom: 3px;
  margin-bottom: 5px;
}

.reason-card-icon {
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: 2px 2px 5px #e8b6b996;
}

.reason-card-title {
	font-family: var(--font-noto-serif, serif);
	font-size: 17px;
	font-weight: 600;
	line-height: 1.6;
	color: var(--color-text-dark, #4a3c3c);
	margin-bottom: 14px;
}

.reason-card-desc {
	font-size: 13px;
	line-height: 1.9;
	color: var(--color-text-brown, #6b4f4f);
  text-align: left;
}

@media (max-width: 1000px) {
	.reason-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
  
  .reason-card {
    border-radius: 20px;
  }
}

@media (max-width: 560px) {
	.reason-grid {
		grid-template-columns: 1fr;
		gap: 18px;
		margin-top: 30px;
	}

	.reason-card {
		padding: 32px 20px 26px;
	}
}

/* ====================================================================
   GALLERY セクション（右→左に無限ループする横スクロール写真帯）
   ==================================================================== */
.gallery-strip {
	position: relative;
	background: #fff;
	padding: 30px 0 0;
}

.gallery-track {
  padding-bottom: 30px;
  overflow: hidden;
}

.gallery-track-inner {
	display: flex;
	align-items: center;
	width: max-content;
	gap: clamp(28px, 6vw, 70px);
	animation: galleryScroll 42s linear infinite;
  padding-bottom: 3%;
}

.gallery-track:hover .gallery-track-inner {
	/* animation-play-state: paused; */
}

.gallery-item {
  position: relative;
  flex: none;
  width: clamp(150px, 20vw, 400px);
  aspect-ratio: 1 / 1;
}

.gallery-item:nth-child(even) {
	margin-top: 120px;
}


.gallery-item:hover{
  opacity: 0.75;
}

.gallery-item-decor {
	position: absolute;
	z-index: 0;
	right: -10%;
	bottom: -10%;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: var(--color-pink-bg, #f9efed);
}

.gallery-item img {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}

@keyframes galleryScroll {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}



/* ---------- ギャラリーとフッターの継ぎ目に重ねるスタッフイラスト ---------- */
.footer-bridge-staffs {
  position: relative;
  bottom: 0;
  display: block;
  margin: 0 auto;
  z-index: 2;
}

.footer-bridge-staffs img{
  width: 50vw;
  max-width: 650px;
  margin: auto;
}

.footer-bridge-staffs::before {
  position: absolute;
  content: '';
  display: block;
  background: url("../img/bk/pink-curve-footer.png") center no-repeat;
  background-size: cover;
  width: 100%;
  aspect-ratio: 18/1;
  z-index: -1;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}


@media (prefers-reduced-motion: reduce) {
	.gallery-track-inner {
		animation: none;
	}
}

/* ====================================================================
   Q&A セクション
   ==================================================================== */
.qa {
	position: relative;
	background: #f8ecec;
	border-radius: 150px;
	overflow: hidden;
	padding: 20px 0;
}

.qa-heading {
	text-align: center;
	position: relative;
	z-index: 1;
	margin-bottom: 40px;
}

.qa-list {
	position: relative;
	z-index: 1;
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.qa-item {
	border-radius: 20px;
/*	box-shadow: 0 8px 20px rgba(107, 79, 79, 0.06);*/
	overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 3px 3px 10px #e8b6b9;
}

.qa-question {
	display: flex;
	align-items: center;
	gap: 14px;
	list-style: none;
	cursor: pointer;
	font-size: 15px;
	font-weight: 600;
	color: var(--color-text-dark, #4a3c3c);
/*	background: #f9efed;*/
	background: #fff;
	padding: 22px 26px;
}

.qa-mark {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: none;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--color-pink-icon, #e8b6b9);
	color: #fff;
	font-family: var(--font-cormorant, serif);
	font-weight: 700;
	font-size: 15px;
}

.qa-mark--a {
	background: var(--color-text-dark, #4a3c3c);
	margin-top: 2px;
}

.qa-chevron {
	margin-left: auto;
	font-size: 13px;
	color: var(--color-pink-deep, #d99ba0);
	transition: transform 0.3s ease;
}

.qa-question.is-open .qa-chevron {
	transform: rotate(180deg);
}

.qa-answer {
	display: none;
	padding: 22px 26px;
	border-top: 1px solid #f1e2df;
	background: #fff;
}

.qa-answer-inner {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.qa-answer-body {
	flex: 1;
	min-width: 0;
}

.qa-answer-body--with-photo {
	display: flex;
	align-items: flex-start;
	gap: 20px;
}

.qa-answer-text {
	flex: 1.4;
	min-width: 0;
}

.qa-answer-photo {
	flex: 1;
	min-width: 0;
	display: flex;
	justify-content: flex-end;
}

.qa-answer-photo img {
	width: 100%;
	max-width: 320px;
	height: auto;
	border-radius: 16px;
	box-shadow: 0 8px 20px rgba(107, 79, 79, 0.1);
}

.qa-answer-body p {
	font-size: 13.5px;
	line-height: 1.9;
	color: var(--color-text-brown, #6b4f4f);
}

.qa-answer-body p + p {
	margin-top: 8px;
}

.qa-answer-body strong,
.qa-link {
	color: var(--color-pink-deep, #d99ba0);
}

.qa-link {
	text-decoration: underline;
	text-underline-offset: 2px;
}

.qa-link:hover {
	opacity: 0.75;
}

.qa-answer-list {
	margin-top: 10px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.qa-answer-list li {
	position: relative;
	padding-left: 16px;
	font-size: 13px;
	line-height: 1.8;
	color: var(--color-text-brown, #6b4f4f);
}

.qa-answer-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--color-pink-icon, #e8b6b9);
}

/* ---------- お支払い方法テーブル（services.phpから移設） ---------- */
.sp-price-table {
	position: relative;
	z-index: 1;
	max-width: 640px;
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 26px rgba(107, 79, 79, 0.06);
	border: 1px solid #e8b6b9;
	margin-top: 12px;
	margin-bottom: 12px;
}

.sp-price-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.sp-price-row + .sp-price-row {
	border-top: 1px solid #f1e2df;
}

.sp-price-row > div {
	padding: 16px 22px;
	font-size: 14px;
	color: var(--color-text-dark, #4a3c3c);
}

.sp-price-row > div:first-child {
	border-right: 1px dashed rgba(232, 182, 185, 0.7);
}

.sp-price-table--pay .sp-price-row > div:first-child {
	background: var(--color-pink-icon, #e8b6b9);
	color: #fff;
	font-weight: 600;
	display: flex;
	align-items: center;
	border-right: none;
}

.sp-price-table--pay .sp-price-row > div:last-child {
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 14px 18px;
}

.sp-price-table--pay .sp-price-row img {
	max-height: 40px;
	width: auto;
	max-width: 100%;
}

@media (max-width: 600px) {
  
  .qa {
    border-radius: 50px;
  }
  

	.qa-question {
		font-size: 14px;
	}

	.qa-answer-body--with-photo {
		flex-direction: column;
	}

	.qa-answer-photo {
		justify-content: center;
	}

	.qa-answer-photo img {
		max-width: 180px;
		margin: 0 auto;
	}
}
