/* ====================================================================
   common.css
   全ページ共通で読み込むスタイル（reset + カラー/フォント変数 + 基本設定）
   ==================================================================== */

/* ---------- Reset ---------- */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

ul, ol {
	list-style: none;
}

button {
	font: inherit;
	color: inherit;
	background: none;
	border: none;
	cursor: pointer;
}

input, textarea, select {
	font: inherit;
}

/* ---------- カラー / フォント変数 ---------- */
:root {
	--color-pink-bg: #f9efed;
	--color-pink-icon: #e8b6b9;
	--color-pink-deep: #d99ba0;
	--color-text-dark: #4a3c3c;
	--color-text-brown: #6b4f4f;

	--font-klee: "Klee One", cursive;
	--font-noto-serif: "Noto Serif JP", serif;
	--font-noto-sans: "Noto Sans JP", sans-serif;
	--font-cormorant: "Cormorant Garamond", serif;
	--font-sirivennela: "Sirivennela", sans-serif;
}

/* ---------- ベース設定 ---------- */
body {
	font-family: var(--font-noto-sans);
	color: var(--color-text-dark);
	background: #fff;
}

main {
	position: relative;
	z-index: 1;
	background: #fff;
}

.main-section{
  max-width:1300px;
  padding: 80px 30px;
  position: relative;
  margin: auto;
}

@media(max-width: 1000px){
  
  .main-section {
    padding: 40px 30px;
  }
  
}

@media(max-width: 600px){
    .main-section {
        padding: 40px 20px;
    }
}

/* ---------- 骨アイコンの丸ボタン（see more 系リンクで共通使用） ---------- */
.bone-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #fff;
	color: var(--color-pink-deep, #d99ba0);
	font-size: 12px;
	flex: none;
}

.section-heading h2{
  font-family: var(--font-klee);
  font-size: clamp(30px, 3.5vw, 45px);
  font-weight: 600;
  line-height: 1.7;
  color: #2c0a04;
  margin-bottom: 24px;
  z-index: 1;
  position: relative;
}


@media (max-width: 1000px) {
	.section-heading h2 {
		font-size: min(5vw, 36px);
		line-height: 1.4;
	}
}
@media (max-width: 600px) {

  .section-heading h2{
    font-size: min(6vw, 46px);
  }
}

/* flower-decorate */

.top-left{
  display: block;
  width: 20vw;
  max-width: 240px;
  background: url("../img/decorate/flowers-pink.png") no-repeat;
  background-size: cover;
  aspect-ratio: 6/4;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
}

.bottom-wh-fl{
  background: url(../img/decorate/flowers-wh.png) no-repeat;
  background-size: cover;
  display: block;
  width: 20vw;
  aspect-ratio: 3 / 2;
  position: absolute;
  opacity: 0.75;
}
.bottom-left-fl{
  bottom: 0;
  left: 0;
}

.bottom-right-fl{
  bottom: 0;
  transform: scale(-1,1);
  right: 0;
}

@media(max-width: 900px){
  .bottom-wh-fl {
    width: 35vw;
  }
}
@media(max-width: 600px){
	.top-left {
		width: inherit;
		height: 90px;
	}
}

/* flower-decorate ///*/

/* cut line */
.cut-line{
  width: calc(100vw - 300px);
  display: block;
  background: url("../img/decorate/pink-cutline.png") repeat;
  background-position: center;
  background-size: contain;
  height: 15px;
  position: absolute;  
}

.cut-line-top{
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cut-line-bottom{
   bottom:0;
}

/* cut line /// */


/* --- 背景の超大型「ABOUT」文字 --- */

.section-heading-h2{
  position: relative;
}

.section-bg-text {
  position: absolute;
  top: -37%;
  left: 0;
  z-index: 0;
  font-family: var(--font-cormorant, serif);
  font-weight: 700;
  font-size: clamp(90px, 11vw, 160px);
  line-height: 1;
  letter-spacing: 0.04em;
  color: #f8ecec;
  transform: translate(-5%, -5%);
}

@media(max-width: 1000px){
	.section-bg-text,
	.section-bg-text--tint {
		left: 20px;
    font-size: min(13vw, 35rem);
	}

}

@media(max-width: 600px){
  .section-bg-text,
	.section-bg-text--tint {
    font-size: max(18vw, 60px);
  
  }
}

/* --- 背景の超大型文字（背景が白以外のセクション用：中央配置＋半透明の白文字） --- */
.section-bg-text--tint {
  position: absolute;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-cormorant, serif);
  font-weight: 700;
  font-size: clamp(90px, 11vw, 160px);
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
  user-select: none;
  inset: 0;
}

@media (max-width: 600px) {

  
  .section-bg-text{
    color: var(--color-pink-icon, #e8b6b9);
    font-size: 12px;
    letter-spacing: 3px;
    padding-left: 20px;
    position: relative;
    margin-bottom: 5px;
  }
  
  .section-bg-text::after{
    content: '\f6d3';
    display: block;
    font-weight: 900;
    font-family: "Font Awesome 6 Free";
    left: 0;
    top: 0;
    width: 12px;
    aspect-ratio: 1 / 1;
    color: var(--color-pink-icon, #e8b6b9);
    position: absolute;
    border-radius: 50%;
  }
  
      .section-bg-text--tint {
        font-size: max(18vw, 60px);
    }
  
  
}

/* ====================================================================
   SOCIAL RAIL（全ページ共通：画面右下固定のSNS・地図リンク）
   ==================================================================== */
.hero-social {
  position: fixed;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 26px 14px;
  background: var(--color-pink-bg, #f9efed);
  border-radius: 40px 0 0 40px;
  z-index: 20;
  border: 2px solid #fff;
  bottom: 20px;
  box-shadow: -3px 3px 10px #ffe7e7;
  transition: transform 0.3s ease;
}

.hero-social.is-hidden {
  transform: translateX(110%);
  pointer-events: none;
}

.hero-social-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--color-pink-icon, #e8b6b9);
	color: #fff;
	font-size: 18px;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero-social-icon:hover {
	transform: scale(1.1);
	opacity: 0.9;
}

@media (max-width: 1560px) {
	.hero-social {
		gap: 7px;
		padding: 20px 5px 20px 10px;
	}
}
@media (max-width: 900px) {
	.hero-social {
/*
		top: auto;
		bottom: 16px;
		transform: none;
		flex-direction: row;
		border-radius: 30px;
		padding: 10px 16px;
*/
    display: none;
	}
}

/* ====================================================================
   SHOP CORNER セクション（共通コンポーネント：index.php / services.php で使用）
   ==================================================================== */
.shop {
	position: relative;
	overflow: hidden;
  margin-bottom: 80px;
}

.shop-inner{
  background: #f9e8e0;
	border-radius: 60px;
  overflow: hidden;
  padding: 80px;
  width: calc(100% - 40px);
  max-width: 1260px;
}

.shop-decor {
	position: absolute;
	top: -90px;
	right: -90px;
	width: 260px;
	height: 260px;
	border-radius: 50%;
	background: radial-gradient(circle at 30% 30%, #f3d3c8, #f9e8e0 70%);
	pointer-events: none;
}

.shop-decor-bottom{
  bottom: -90px;
  top:inherit;
  right: inherit;
	left: -90px;
}

.shop-head {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 40px;
	margin-bottom: 50px;
	flex-wrap: wrap;
}

.shop-kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-cormorant, serif);
	font-style: italic;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.15em;
	color: var(--color-pink-deep, #d99ba0);
	margin-bottom: 12px;
}

.shop-kicker-dot {
	width: 8px;
	height: 8px;
	flex: none;
	border-radius: 50%;
	background: var(--color-pink-icon, #e8b6b9);
}

.shop-heading {
	font-family: var(--font-noto-serif, serif);
	font-size: clamp(26px, 3vw, 36px);
	font-weight: 700;
	color: var(--color-text-dark, #4a3c3c);
}

.shop-heading-plus {
	color: var(--color-pink-icon, #e8b6b9);
}

.shop-head-desc {
	max-width: 360px;
	font-size: 13px;
	line-height: 1.9;
	color: var(--color-text-brown, #6b4f4f);
}

.shop-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.shop-card {
	background: #fff;
	border-radius: 24px;
	padding: 30px 28px;
  box-shadow: 3px 3px 10px #e8b6b9;
}

.shop-card-head {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 16px;
}

.shop-card-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	flex: none;
	border-radius: 16px;
	background: var(--color-pink-bg, #f9efed);
	color: var(--color-pink-deep, #d99ba0);
	font-size: 20px;
}

.shop-card-title {
	font-family: var(--font-noto-serif, serif);
	font-size: 16px;
	font-weight: 600;
	color: var(--color-text-dark, #4a3c3c);
}

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

.shop-card-examples {
	margin-top: 10px;
	font-size: 12px;
	line-height: 1.8;
	color: var(--color-pink-deep, #d99ba0);
}

@media (max-width: 1000px) {
	
	.shop {
	    padding: 0 30px;
        border-radius: 40px;
    }

	.shop-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.shop-head-desc {
		max-width: 100%;
	}
  
  .shop-inner {
    width: 100%;
    border-radius: 20px;
    padding: 30px;
  }

  
  .shop-head {
    gap: 20px;
    margin-bottom: 10px;
  }
  
  .shop-kicker {
    gap: 5px;
    margin-bottom: 5px;
  }
  
  .shop-card {
    border-radius: 20px;
    padding: 20px;
  }
  
}

@media (max-width: 600px) {
	
  .shop {
    padding: 0 20px;
    margin-bottom: 50px;
  }
	.shop-card {
		padding: 26px 22px;
	}
  
  .shop-inner {
    padding: 20px;
  }
  
  .shop-card-title {
    font-size: 18px;
  }
}

/* ====================================================================
   GALLERY LIGHTBOX（共通コンポーネント：index.php / about.php で使用）
   ==================================================================== */
.gallery-lightbox {
	position: fixed;
	inset: 0;
	z-index: 200;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(30, 20, 20, 0.85);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}

.gallery-lightbox.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transition: opacity 0.3s ease;
}

.gl-stage {
	max-width: 88vw;
	max-height: 84vh;
}

.gl-stage img {
	display: block;
	max-width: 88vw;
	max-height: 84vh;
	width: auto;
	height: auto;
	border-radius: 16px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.gl-close,
.gl-nav {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	font-size: 18px;
	transition: background 0.25s ease, transform 0.25s ease;
}

.gl-close:hover,
.gl-nav:hover {
	background: rgba(255, 255, 255, 0.3);
}

.gl-close {
	top: 24px;
	right: 24px;
}

.gl-nav {
	top: 50%;
	transform: translateY(-50%);
}

.gl-nav:hover {
	transform: translateY(-50%) scale(1.08);
}

.gl-prev {
	left: 24px;
}

.gl-next {
	right: 24px;
}

.gallery-lightbox.gl-single .gl-nav {
	display: none;
}

@media (max-width: 560px) {
	.gl-close {
		top: 12px;
		right: 12px;
		width: 40px;
		height: 40px;
	}

	.gl-nav {
		width: 40px;
		height: 40px;
	}

	.gl-prev {
		left: 10px;
	}

	.gl-next {
		right: 10px;
	}
}


/* section-dec-plants plants-pink */

.section-dec-plants{
  position: absolute;
  display: block;
  width: 100%;
  aspect-ratio:200/15;
  left: 50%;
}

.plants-top{
  top: 0;
  transform: scale(1,-1) translateX(-50%);
}

.plants-bottom{
  bottom: 0;
  transform: scale(1,1) translateX(-50%);
}


.plants-pink{
  height: 80px;
  background: url("../img/decorate/flowers-pink-line.png");
  background-size: contain;
}

@media(max-width: 1100px){
	.plants-pink {
		background-size: cover;
	}
}


@media(max-width: 600px){
  
  .plants-pink {
    height: 60px;
  }
  
}



/* section-dec-plants plants-pink ///*/

/* ---------- 共通：ボタンの基本スタイル ---------- */
.about-more,
.service-more,
.news-cal-more,
.ap-access-map-btn,
.news-detail-back {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 10px;
	font-family: var(--font-cormorant, serif);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: var(--color-text-brown, #6b4f4f);
	background: var(--color-pink-bg, #f9efed);
	border-radius: 999px;
	padding: 6px 24px 6px 6px;
	transition: opacity 0.25s ease;
}


.ap-access-map-btn{
  width: fit-content; 
  font-family: var(--font-noto-sans);
  font-size: 13px;
}


.ap-access-map-btn i{
  background: #fff;
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  text-align: center;
  aspect-ratio: 1 / 1;
  color: #e8b6b9;
}

.about-more:hover,
.service-more:hover,
.news-cal-more:hover,
.ap-access-map-btn:hover,
.news-detail-back:hover {
	opacity: 0.75;
}

/* ---------- 共通：ボタンhover演出（.menu-links a::after と同じ、肉球が右から上へ跳ねる動き） ---------- */
.about-more,
.service-more,
.news-cal-more,
.footer-contact-btn,
.ap-access-map-btn,
.sp-note-btn,
.news-detail-back,
.a-pagination-link {
	position: relative;
}

.about-more::after,
.service-more::after,
.news-cal-more::after,
.footer-contact-btn::after,
.ap-access-map-btn::after,
.sp-note-btn::after,
.news-detail-back::after,
.a-pagination-link::after {
	content: "\f1b0";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	position: absolute;
	top: 50%;
	right: -20px;
	font-size: 13px;
	color: #d97369;
	opacity: 0;
	pointer-events: none;
	transform: translateY(-50%) translate(0, 0) scale(0.6) rotate(35deg);
	transition: opacity 0.5s ease, transform 0.5s;
}

.about-more:hover::after,
.service-more:hover::after,
.news-cal-more:hover::after,
.footer-contact-btn:hover::after,
.ap-access-map-btn:hover::after,
.sp-note-btn:hover::after,
.news-detail-back:hover::after,
.a-pagination-link:hover::after {
	opacity: 1;
	transform: translateY(-50%) translate(-15px, -11px) scale(1) rotate(15deg);
}


.br-600{
  display: none;
}

@media(max-width: 600px){
  
  .br-600{
    display: block;
  }
  
}