@charset "utf-8";
/* CSS Document */

/* カラーメモ
	main:#34624B (239, 237, 228)
	base:#EFEDE4 (52, 98, 75)
	accent1:#61654D (97, 101 , 77)
	accent2:#ADE4C6 (173, 228, 198)
*/

/*検証用*/
.border{
	border:1px solid #f00;
}

/*===================================================
                01．基本設定
===================================================*/
/* ===== css用変数 =====*/
:root {
    /* 色設定 */
    --base: #EFEDE4;
    --main: #34624B;
    --accent1: #61654D;
    --accent2: #ADE4C6;
	--white:#fff;

    /* font設定 */
    --font-ja: "Zen Maru Gothic", sans-serif;
    --font-en: "Poiret One", sans-serif;

    /* font-size設定（任意） */
    --font10: 10px;
    --font14: 14px;
    --font24: 24px;
    --font32: 32px;
    --font60: 60px;

    /* ロゴの共通サイズ */
    --brand-icon: clamp(50px, 8vw, 80px);
}

/* ===== デフォルト =====*/
body{
  	color: #444444;
    font-family:"Zen Maru Gothic", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(14px, 6vw, 16px);
    position: relative;
}

/* 装飾 (右上の葉っぱ) */
body::before{
    content: "";
    position: absolute; 
    top: 0;
    right: 0;
    width: clamp(210px, 30vw, 600px);
    aspect-ratio: 640 / 543;
    background: url("../image/common/decoration/leaf-right.png") top right / contain no-repeat;
    pointer-events: none;
    z-index: 1;
}

/*===================================================
                02．文字関連
===================================================*/
/*===== フォント =====*/
.en{
    font-family: var(--font-en);
    font-weight: 400;
    font-style: normal;
}


/*===== h要素 =====*/
/* 下層ページ見出し */
h1{
	font-family: "Poiret One", "Zen Maru Gothic", sans-serif;
	font-size:clamp(30px, 8vw, 48px);
	color: var(--white);
	/* アニメーション */
	transform: translateY(20px);
	opacity: 0; 
    animation: fadeUp 0.6s ease-out forwards;
    animation-delay: 0.4s; /* 線アニメ後に開始 */
}

/* セクション見出し */
h2{
	font-family: "Poiret One", "Zen Maru Gothic", sans-serif;
	padding:0 10px 10px 10px;
	border-bottom: 3px solid var(--main);
	font-size:clamp(24px, 3.5vw, 30px);
	display: inline-block;
}

/* コンテンツ見出し */
h3{
	font-size:clamp(16px, 32vw, 18px);
	color: var(--main);
	font-weight: 600;
	text-align: center;
	margin-bottom: 20px;
}

h4{
	color:var(--white);
	background-color: var(--main);
	border-radius: 999px;
	padding: 2px 10px;
	display: inline-block;
	font-weight: 300;
}

/*===== 本文 =====*/
p{
	font-family: var(--font-ja);
	font-size: clamp(14px, 3.5vw, 16px);
}


/*===== フォントサイズ =====*/
.font10{ 
	font-size: 10px; 
}
.font14{ 
	font-size: 14px; 
}
.font16{ 
	font-size: 16px; 
}
.font20{ 
	font-size: 20px; 
}
.font24{ 
	font-size: 24px; 
}
.font30{ 
	font-size: 30px; 
}
.font60{ 
	font-size: 60px; 
}
.fs05em{ 
	font-size: 0.5em; 
}
.bold{ 
	font-weight: 600; 
}

/* テキスト位置 */
.tac{ 
	text-align: center; 
}
.tar{ 
	text-align: right; 
}

/*===================================================
                色
===================================================*/
/* 背景色 */
.bg-base{
	background-color: var(--base);
}
.bg-main{
	background-color: var(--main);
}
.bg-accent1{
	background-color: var(--accent1);
}
.bg-accent2{
	background-color: var(--accent2);
}

/* 文字色 */
.t-main{
	color: var(--main); 
}
.t-white{
	color: var(--white); 
}

/*===================================================
                汎用レイアウト
===================================================*/
/* ===== 枠 ===== */
/* コンテンツ親枠 */
.inner{
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
    padding: 30px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	gap:20px;
}

/* コンテンツ中身枠 */
.contents, .contents-reverse{/* ワンカラム */
    display: flex;
	flex-direction: column;
    align-items: center;
    gap: 20px;
}
	/* レスポンシブ */
	@media (min-width:759px){
		.contents{
			flex-direction: row;/* 画像→テキストの順で横並び */
		}

		.contents-reverse{
			flex-direction: row-reverse;/* テキスト→画像の順で横並び */
		}
	}

.contents img {
    width: clamp(300px, 89vw, 450px); 
    aspect-ratio: 1.414 / 1; 
    object-fit: cover;
    display: block;
}

/*===== 余白 =====*/
/* ヘッダー領域分の余白 */
.fv-top{
	padding-top:var(--brand-icon);
}
/* セクションごとの余白 */
section{
	padding: 30px 0; 
}

/* 汎用 */
.ptb10{ 
	padding: 10px 0; 
}

.mx-auto{
	margin:0 auto
}

/*===== flex系 =====*/
.flex{ 
	display: flex; 
}
.wrap{ 
	flex-wrap: wrap; 
}
.aic{ 
	align-items: center; 
}
.jcc{ 
	justify-content: center; 
}
.jcsb{ 
	justify-content: space-between; 
}
.jcsa{ 
	justify-content: space-around;
}
.fdc{ 
	flex-direction: column; 
}
.gap10{ 
	gap: 10px; 
}
.gap20{ 
	gap: 20px; 
}
.gap30{ 
	gap: 30px; 
}
.gap40{ 
	gap: 40px; 
}


/*===== その他 =====*/
/* 絶対配置 */
.absolute{
	position: absolute; 
}
.relative{ 
	position: relative; 
}

/* レイヤー */
.z0{ 
	z-index: 0; 
}
.z1{ 
	z-index: 1; 
}
.z10{ 
	z-index: 10; 
}
.z100{
	z-index: 100; 
}
.z1000{ 
	z-index: 1000; 
}

/*===================================================
                header
===================================================*/
/* ===== 共通設定 ===== */
/* 固定ヘッダーの土台 */
.site-header{
    position: fixed;
    top: 0; left: 0; right: 0;
    width: 100%;
    z-index: 1200;               /* ヘッダー自体は前面に */
}

.header-inner{
	padding: 2px 10px;
    position: relative;
    z-index: 100;
}

/* ロゴサイズ ※ハンバーガーと連動 */
.site-logo-mobile img,
.pc-header h1 img{
	width: var(--brand-icon);
	height: auto;
}


/*+++++++++++++++++++++ モバイルバー +++++++++++++++++++++*/
/*===== ヘッダー中身 =====*/
/* ロゴ＋ハンバーガーの横並び */
.mobile-bar{
    display: flex;
    align-items: center;
    justify-content: space-between;
	}
/*=========================*/

/*===== ハンバーガー =====*/
/* ハンバーガーボタン枠 */
.hamburger{
	--bar: clamp(2px, 0.78vw + 0.65px, 3px);
	--gap: clamp(6px, 0.78vw + 0.65px, 12px);
	
	width: var(--brand-icon);		/*※ロゴと連動*/
	height: var(--brand-icon);		/*※ロゴと連動*/
	border-radius: 999px;
	background: rgba(52, 98, 75, .9);  /* てすと */
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: var(--gap);
	padding: 10px;
	cursor: pointer;
	user-select: none;
	border: 0;
	position: relative;
	z-index: 1000; /* 最前面 */
}

/* ハンバーガー3本線 */
.hamburger span{
    width: calc(var(--brand-icon) * 0.6); /* ボタンサイズに連動 */
    height: var(--bar);
    background: var(--white);
    border-radius: 2px;
    transition: transform .25s, opacity .2s;
    transform-origin: center;
}

/* ボタン変形 */
.hamburger[aria-expanded="true"]{
	background:rgba(255, 255, 255, .8);
}

.hamburger[aria-expanded="true"] span{
	background:var(--main);
}

.hamburger[aria-expanded="true"] span:nth-child(1){	
	transform: translateY(calc(var(--gap) + var(--bar))) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2){ 
	opacity: 0; 
}

.hamburger[aria-expanded="true"] span:nth-child(3){
	transform: translateY(calc(-1 * (var(--gap) + var(--bar)))) rotate(-45deg);
}

/*===== ドロワーメニュー =====*/
/* ドロワー全体 */
.drawer{
  position: fixed;
  inset: 0;
  background: var(--main);
  transform: translateY(-100%);     /* 上に隠す */
  transition: transform .35s ease;
  pointer-events: none;
  overflow-y: auto;
  z-index: 900;                     /* ヘッダー(100)より手前＝最前面に出す */
  padding-top: var(--brand-icon); 
}

	/* タブレットサイズ */
	@media (max-width:1200px) and (min-width:768px){
		.drawer{
			width: 80vw;
			top:0;
			right:0;
			left: auto;
			transform: translateX(100%); 
		}
		.drawer.is-open{
			transform: translateX(0);      /* 開いた状態で右から出現 */
		}
	}

/* ドロワーが開いたときに表示 */
.drawer.is-open + .drawer-overlay{
  opacity: 1;
  pointer-events: auto;
}

/* ドロワー内ロゴ */
.drawer .logo{
  position: absolute;
  top: 2px;
  left: 10px;
  width: var(--brand-icon);
  height: auto;
  z-index: 2;
}

/* ナビ部分 */
.drawer-nav-wrap,
.drawer .header-cta{
  position: relative;
  z-index: 2;
}

.drawer-nav-wrap{ 
	padding: 0 30px 30px; 
	display: flex;
	flex-direction: column;
	gap:2em;
}
.drawer-nav a{
	font-family: var(--font-en);
	display: block; 
}
.drawer-nav li{
  font-size: 30px;
  border-bottom: 1px dotted #fff;
  padding: 8px;
}

@media (min-width:430px){
	.drawer-nav li{ font-size: 36px }
	.header-cta{ font-size: 30px } 
}

/* CTA部分 */
.header-cta{
  font-size: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65em;
}

/* Tel・Contactボタンの余白微調整 */
.header-cta .btn-fixed{
	padding: 6px 0;
}

/* アイコンボタン */
.sns-icon a{ 
	background: var(--accent1); 
	padding: 12px; 
	border-radius: 999px; 
}

.sns-icon img{ 
	width: 1.2em; }


/* ドロワー暗幕（オーバーレイ） */
.drawer-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6); 
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
  z-index: 800;
}

/* ドロワー開閉 */
.drawer.is-open{
  transform: translateY(0);
  pointer-events: auto;
}
body.is-locked{ 
	overflow: hidden; 
}

/*===== ドロワー内装飾 =====*/
/* 右上葉っぱ */
.drawer::after{
    content: "";
    position: absolute;
    top: 0; 
	right: 0;
    width: clamp(210px, 30vw, 600px);
    aspect-ratio: 640 / 543;
    background: url("../image/common/decoration/leaf-right.png") top right / contain no-repeat;
    pointer-events: none;
    z-index: 1;
}
/* 左下葉っぱ */
.drawer::before{
    content: "";
    position:fixed;
    bottom: 0; 
	left: 0;
    width: clamp(210px, 30vw, 600px);
    aspect-ratio: 640 / 543;
    background: url("../image/common/decoration/leaf-right.png") top right / contain no-repeat;
    transform: rotate(180deg);
    pointer-events: none;
    z-index: 1;
}

/*+++++++++++++++++++++ PC表示 +++++++++++++++++++++*/
/* PCヘッダーは初期非表示、1200px以上で表示 */
.pc-header{
  display: none;
}
	@media (min-width: 1200px){
	  .mobile-bar, .drawer{ 
		  display: none !important; 
		}
	  .pc-header{ 
		  display: flex; 
		}
	}

/* ナビ部分 */
.pc-gnav{
    background: rgba(255,255,255,.9);
	padding:0 60px 10px ;
	border-radius: 999px;
	box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
	
}

.pc-gnav a{
	font-family: var(--font-en);
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #111;
  font-size: 24px;
  padding: 5px 10px;
}

.pc-gnav a::after{
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
	border-radius: 999px;
  background: var(--main);
  transform: scale(0, 1);
  transform-origin: center top;  /* 中央から左右へ伸びる */
  transition: transform .3s;
}

.pc-gnav a:hover:not(.active)::after,
.pc-gnav a:focus-visible:not(.active)::after{
  transform: scale(1, 1);
}

/* アクティブは常時下線を表示したい場合 */
.pc-gnav a.active::after{
  transform: scale(1, 1);
}

.active{ 
	border-bottom: 2px solid var(--main); 
}

.pc-gnav a.active::after{
  content: none;
}

.pc-header-cta a{
	transition: 0.35s ease;
}

.pc-header-cta a:hover{
	transform: scale(1.1);
}




/*===================================================
				footer領域
===================================================*/
/* 枠 */
.footer .inner{
	font-size: 0.9em;
	color: var(--main);
	padding-bottom:0;
	max-width: 450px;
}

/* ロゴサイズ */
.footer .logo{
	width:calc(var(--brand-icon) * 1.25) ;
}

/* グロナビ */
.footer .footer-nav li{
	margin:5px 0;
	font-weight: 600;
	list-style:circle inside;
}

.footer .footer-nav li:hover{
	list-style: disc inside;
	transform: translateX(3px);
}


.footer .sns-icon a{
	transition: 0.35s ease;
}

.footer .sns-icon a:hover{
	transform: scale(1.1);
}
/*===================================================
				その他セクションパーツ
===================================================*/
/*----- 下層fv -----*/
/* 枠 */
.fv-lower {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 20px 0 10px 0;
	text-align: center;
	background-color: var(--main);
	position: relative;
}

/* 葉っぱ装飾(左) */
.fv-lower::before{
	content: "";
	position: absolute;
	top:-30px;
	left: 0;
	width:clamp(150px, 23vw, 400px);
	aspect-ratio: 473 / 642;
	background: url("../image/common/decoration/leaf-left.png") top right / contain no-repeat;
	pointer-events: none;
    z-index: 1;  
}	

/* 縦線 */
.line{
	display: block;
	width: 1px;
	height: 0; /* 初期状態：非表示 */
	background-color: var(--white);
	animation: lineDown 0.4s ease-out forwards;
}

/* アニメーション */
@keyframes lineDown {
  0% {
    height: 0;
  }
  100% {
    height: clamp(30px, 8vw, 60px);
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*----- パンくず -----*/
.breadcrumb{
	background-color:var(--base);
	font-family: var(--font-ja);
	font-size:clamp(12px, 8vw, 14px);
	text-align: center;
	padding: 5px 0;
}

.breadcrumb li+li::before{
    content: ">";
	margin: 0 .2rem;
}


/*----- ギャラリービュー -----*/
.slider img.slider-card{
  display: block;
  width: clamp(120px, 24vw, 250px); 
  aspect-ratio: 16 / 9;
  object-fit: cover;
  height: auto;
  max-width: none;
}

/*----- CTA -----*/
/* 背景 */
.cta{
	font-family: var(--font-en);
	background: url("../image/common/bg/bg-restrant.jpeg") no-repeat center / cover;
	font-size: clamp(20px, 32vw, 24px);
	position: relative;
}

/* 半透明枠 */
.cta::before{
	content: "";
  	position: absolute;
  	inset: 0;
 	background: rgba(255, 255, 255, 0.8);
  	z-index: 0;
}

/* アイコン */
.cta-tel::before,
.cta-contact::before{
    content:"";
    display:inline-block;
    width:1.1em;
    height:1.1em;
    background-repeat:no-repeat;
    background-position:center;
    background-size:contain; 
}

.cta-tel::before{
  background-image:url("../image/common/icon/tel.svg");
}

.cta-contact::before{
  background-image:url("../image/common/icon/mail.svg");
}

.cta > .inner{
  position:relative;
  z-index:1;
}

/*===================================================
				個別パーツ
===================================================*/
/* セクション見出し */
.h3-2row{
	display: flex;
	flex-direction: column;
}

@media (min-width:759px){
	.h3-2row{
		flex-direction: row;
	}
}

/*===== 画像 =====*/
/* 楕円の写真枠 */
.ellipse{
	border-radius:37% 63% 60% 40% / 30% 34% 66% 70%;
	overflow: hidden;
}

/* 正円の写真枠 */
.circle{ 
	aspect-ratio: 1 / 1 !important;
	border-radius: 50%;
	overflow: hidden;
}

.circle img, .ellipse img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/*===== ボタン・装飾 =====*/
/* コンテンツ幅に合わせたボタン */
.btn-auto {
	display: inline-block;
    align-items: center; 
    justify-content: center;
  	border-radius: 999px;
  	color: #fff;
  	text-align: center;
    padding: 14px 24px;
	transition: 0.4s ease;
}

/* 固定幅のボタン */
.btn-fixed {
	display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em; 
  	border-radius: 999px;
  	color: #fff;
	text-align: center;
    padding: 10px 0;
    width: 100%;
    max-width: 350px;
	transition: 0.35s ease;
}

.btn-auto:hover, .btn-fixed:hover{
	transform: scale(1.1);
}

/*===== ボタン矢印 =====*/
/* 共通パーツ */
.arrow,
.arrow-reverse{
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
  line-height: 1;
}

.arrow::after,
.arrow-reverse::after{
  content:"";
  position:absolute;
  bottom:0;
  left:50%;
  width:100%;
  height:1px;
  background: currentColor;
  border-radius:999px;
  transform-origin:center;
  transform: translateX(-50%) scaleX(0.22);
  transition: transform .35s ease;
}

/* 右向き */
.arrow::before{
  content:"";
  position:absolute;
  bottom:0;
  left: calc(50% + 11%);
  width:10px;
  height:1px;
  background: currentColor;
  border-radius:9999px;
  transform-origin: left 50%;
  transform: rotate(-135deg);
  transition: left .35s ease, transform .35s ease;
}
/* 右向きhover */
.btn-auto:hover .arrow::before{
  left: 100%;
  transform: rotate(-135deg);
}

/* 左向き */
.arrow-reverse::before{
  content:"";
  position:absolute;
  bottom:0;
  left: calc(50% - 11% - 10px);
  width:10px;
  height:1px;
  background: currentColor;
  border-radius:9999px;
  transform-origin: right 50%; 
  transform: rotate(135deg);
  transition: left .35s ease, transform .35s ease;
}
/* 左向きhover */
.btn-auto:hover .arrow-reverse::before{
  left: -10px;
  transform: rotate(135deg);
}

/* 下線の拡張（共通） */
.btn-auto:hover .arrow::after,
.btn-auto:hover .arrow-reverse::after{
  transform: translateX(-50%) scaleX(1);
}

@media (min-width:759px){
	.contents-txt{
		width:65%;
	}
}

/* 犬の足跡 */
.bg-dog{
	background: url("../image/common/bg/bg-dog.jpg") top /cover;
}

/* PDFリンクのアイコン */
a[href$=".pdf"]{
	padding-right:.9em;
	background:url("../image/common/icon/pdf.svg") right center no-repeat;
	background-size: .9em;
	align-items: center;
}


/*===== サイドのCTAボタン（PCのみ） =====*/
.side-cta{ display: none; }

/* 共通スタイル（縦書きボタン） */
.side-cta a{
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: .25em;

  writing-mode: vertical-rl;
  text-orientation: mixed;

  padding: 24px 8px 24px 24px ;
  border-radius: 999px 0 0 999px;
  background-color: var(--accent1);
  color: var(--white);
  line-height: 1.2;
  text-decoration: none;

  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  transition: 0.3s ease;
}

.side-cta a:hover,
.side-cta a:focus-visible{
  transform: scale(1.1);
}

/* アイコン */
.side-cta a::before{
  content:"";
  display:inline-block;
  width: 1.2em;
  height: 1.2em;
  background-repeat:no-repeat;
  background-position:center;
  background-size:contain;
}

.side-cta .cta-top::before{
  background-image: url("../image/common/icon/page-top.svg");
}
.side-cta .cta-store::before{
  background-image: url("../image/common/icon/store.svg");
}

/* ===== PCのみ右端に固定 ===== */
@media (min-width: 1200px){
  .side-cta{
    position: fixed;
    right: 0;              /* 右端ぴったり（横はみ出しなし） */
    bottom: 12%;
    display: inline-flex;
    flex-direction: column;
    gap: 1.5em;
    z-index: 1100;
    max-height: 100vh;
    padding-right: 0;      /* 念のため */
  }
}

@media (min-width: 1200px){
	.side-cta{
		display: inline-flex;
		flex-direction: column;
		gap:1.5em;
	}
}


/*===================================================
				アニメーション
===================================================*/
main{
    opacity: 0;
    animation: fadeUp 0.6s ease-out forwards;
	animation-delay: 0.8s; /* 線アニメ後に開始 */
}

/*===================================================
				装飾
===================================================*/


