@charset "UTF-8";

html {
	scroll-behavior: smooth;
}

body {
	background-color: #fff;
	color: #333;
	font-family: YuMincho, "Yu Mincho","MS PMincho","ＭＳ Ｐ明朝", "Hiragino Mincho ProN","ヒラギノ明朝 ProN","serif";
}

h1,h2,h3,h4,h5,h6 {
	text-align: center;
}

h2 {
	margin: 0 0 20px;
	font-size: 2em;
}

h3 {
	margin: 0 0 20px;
	font-size: 1.5em;
}

ul {
	list-style: none;
}

a {
	display: block;
}


/*===============header===============*/
header {
	width: 100%;
	height: 100vh;
	margin: 0 0 100px;
	background-image: url("../images/top_view.jpg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	color: #fff;
	text-shadow: 0 0 5px #333, 0 0 5px #333;
}
@media screen and (max-width: 760px) {
	header {
		height: 50vh;
	}
}

header nav.globalNavi {
	width: 100%;
	height: 60px;
	padding: 0;
	background-color: rgba(66,66,66,0.8);
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
}

header nav.globalNavi h1 {

}

header nav.globalNavi h1 a {
	padding: 5px 10px;
}

header nav.globalNavi h1 a img {
	width: 130px;
}

header nav.globalNavi ul.pcMenu {
	width: 700px;
	margin: 0 5px 0 0;
	display: flex;
	justify-content: space-between;
	font-size: 18px;
}
@media screen and (max-width: 760px) {
	header nav.globalNavi ul.pcMenu{
		display: none;
	}
}

header nav.globalNavi ul li {
	
}

header nav.globalNavi ul li a{
	padding: 15px 5px;
}


/*== スマホ用メニュー(ハンバーガーメニュー)==*/
/* PC版では非表示、ブレイクポイント(今回は760px)以下で表示 */
div.hamburger-menu {
	display: none;
}

@media screen and (max-width: 760px) {
	div.hamburger-menu {
		display: block;
	}
}

div.hamburger-menu .menu-btn {
	position: fixed;
	top: 0;
	right: 10px;
	display: flex;
	height: 60px;
	width: 60px;
	justify-content: center;
	align-items: center;
	z-index: 90;
	background-color: rgba(0,0,0,0.3);
	cursor: pointer;
	border-radius: 10px;
}
div.hamburger-menu .menu-btn span,
div.hamburger-menu .menu-btn span:before,
div.hamburger-menu .menu-btn span:after {
	content: '';
	display: block;
	height: 3px;
	width: 35px;
	border-radius: 3px;
	background-color: #fff;
	position: absolute;
}
div.hamburger-menu .menu-btn span:before {
	bottom: 10px;
}
div.hamburger-menu .menu-btn span:after {
	top: 10px;
}
div.hamburger-menu #menu-btn-check:checked ~ .menu-btn span {
	background-color: rgba(255, 255, 255, 0);
}
div.hamburger-menu #menu-btn-check:checked ~ .menu-btn span::before {
	bottom: 0;
	transform: rotate(45deg);
}
div.hamburger-menu #menu-btn-check:checked ~ .menu-btn span::after {
	top: 0;
	transform: rotate(-45deg);
}
div.hamburger-menu #menu-btn-check {
	display: none;
}
div.hamburger-menu #menu-btn-check:checked ~ .menu-content {
	left: calc(100% - 220px);			/* メニュー領域の引き出し位置（0にすると左端まで） */
}
div.hamburger-menu .menu-content {
	width: 100%;
	height: 100vh;						/* autoにするとコンテンツ領域分までに */
	position: fixed;
	top: 0;
	left: 100%;
	overflow: auto;
	z-index: 80;
	padding: 0 10px;
	background-color: rgba(0,0,0,0.7);
	transition: all 0.5s;				/* メニュー領域の引き出しスピード */
}
div.hamburger-menu .menu-content ul {
	display: block;
	width: 200px;						/* メニュー領域の横幅を設定（100%にすると横幅いっぱい） */
	padding-top: 80px;
}
div.hamburger-menu .menu-content ul li {
	border-top: solid 1px #fff;
	list-style: none;
}
div.hamburger-menu .menu-content ul li:last-child {
	border-bottom: solid 1px #fff;
}
div.hamburger-menu .menu-content ul li a {
	display: block;
	font-size: 16px;
	text-decoration: none;
	color: #fff;
	font-weight: bold;
	padding: 10px 0px;
	text-align: center;
}
div.hamburger-menu .menu-content ul li a span {
	font-size: 90%;
	font-weight: normal;
}
div.hamburger-menu .menu-content ul li a:hover {
	opacity: 0.6;
}

header address {
	padding: 70px 10px 0 0;
	text-align: right;
}

header address em {
	font-size: 1.5em;
}

/* 共通購入ボタン */
.buy-cta {
text-align: center;
/* padding: 50px 0; */
margin: 50px 0;
}

.buy-btn {
	display: inline-block;
	background: linear-gradient(135deg, #2c7a2c, #4a9a4a);
	color: white !important;
	padding: 20px 50px;
	font-size: 20px;
	font-weight: bold;
	text-decoration: none;
	border-radius: 50px;
	box-shadow: 0 8px 25px rgba(44, 122, 44, 0.4);
	transition: all 0.3s ease;
}

.buy-btn:hover {
	background: linear-gradient(135deg, #4a9a4a, #2c7a2c);
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(44, 122, 44, 0.6);
}

/* スマホ対応 */
@media screen and (max-width: 760px) {
	/* .fixed-buy {
		top: 60px;
		height: 50px;
	} */
	.buy-btn {
		padding: 15px 30px;
		font-size: 18px;
	}
}

/*===============main===============*/
/*ページ内リンクでジャンプした時、ナビゲーションで見出しが隠れないようにするため、
padding-topでナビゲーションの高さを確保、その分下に下がるので同じ高さ分をネガティブマージンで指定する*/
main {
	max-width: 960px;
	padding: 110px 0 0;
	margin: -60px auto 0;
}
@media screen and (max-width: 760px) {
	main {
		width: 90%;
	}
}

/*=====main section.trouble (お悩みチェック)=====*/
main section.trouble {
	padding: 40px 30px 0;
	border: #333 1px solid;
	margin: 0 0 150px;
}
@media screen and (max-width: 760px) {
	main section.trouble {
		padding: 20px 20px 0;
	}
}

main section.trouble h2 {

}

main section.trouble p {
	margin: 0 0 60px;
}

main section.trouble div.troubleFlex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

main section.trouble div.troubleFlex img {
	width: calc((100% - 60px)/3);
	margin: 0 0 30px;
}
@media screen and (max-width: 760px) {
	main section.trouble div.troubleFlex img {
		width: calc((100% - 20px)/2);
	}
}
/*=====main section.goods (商品紹介)=====*/
/*ページ内リンクでジャンプした時、ナビゲーションで見出しが隠れないようにするため、
padding-topでナビゲーションの高さを確保、その分下に下がるので同じ高さ分をネガティブマージンで指定する*/
main section.goods {
	padding: 10px 0 0 ;
	margin: -60px 0 150px;
}

/*main section.goods {
	padding: 40px 30px 0;
	border: #333 1px solid;
	margin: 0 0 150px;
}*/
@media screen and (max-width: 760px) {
	main section.goods {
		padding: 20px 20px 0;
	}
}

main section.goods h2 {

}

main section.goods p {
	margin: 0 0 60px;
}

main section.goods div.goodsFlex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.blend-tech {
	text-align: center;
	padding: 10px 10px;
	background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(248,249,250,0.95));
	margin: 30px auto;
	max-width: 960px;
}

.blend-tech h3 {
	font-size: 1.6rem;
	color: #2c5f2d;
	margin-bottom: 15px;
	font-weight: bold;
}

.blend-tech p {
	font-size: 1.1rem;
	line-height: 1.7;
	color: #4a5d4a;
}

/* スマホ対応 */
@media screen and (max-width: 760px) {
	.blend-tech {
	padding: 25px 20px;
	margin: 20px auto;
	}
	.blend-tech h3 {
	font-size: 1.4rem;
	}
}

/* 6ハーブ紹介セクション */
.six-herbs {
	padding: 60px 30px;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	margin: 0 0 80px;
	text-align: center;
}

.six-herbs h3 {
	font-size: 2rem;
	color: #2c5f2d;
	margin-bottom: 40px;
}

.herb-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);		/* 3列レイアウト */
	grid-template-rows: repeat(2, auto);			/* 2行自動高さ */
	gap: 25px;
	max-width: 1000px;
	margin: 0 auto;
}

.herb-item {
	background: white;
	padding: 25px 15px;
	border-radius: 15px;
	box-shadow: 0 8px 25px rgba(0,0,0,0.1);
	transition: all 0.3s ease;
}

.herb-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.herb-item img {
	width: 100%;
	height: 150px;
	object-fit: cover;
	border-radius: 10px;
	margin-bottom: 15px;
}

.herb-item h4 {
	font-size: 1.3rem;
	color: #2c5f2d;
	margin-bottom: 10px;
	font-weight: bold;
}

.herb-item p {
	color: #666;
	font-size: 0.95rem;
}

/* スマホ対応：1列に */
@media screen and (max-width: 760px) {
	.herb-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.six-herbs h3 {
		font-size: 1.6rem;
	}
}

/*=====main section.review (口コミ)=====*/
/*ページ内リンクでジャンプした時、ナビゲーションで見出しが隠れないようにするため、
padding-topでナビゲーションの高さを確保、その分下に下がるので同じ高さ分をネガティブマージンで指定する*/
main section.review {
	padding: 80px 0 0 ;
	margin: -60px 0 150px;
}

main section.review h2 {
	margin-bottom: 80px;  /* h2の下に40pxの空白を追加 */
}

main section.review div.reviewWraper {
	margin: 0 0 50px;
	display: flex;
	flex-wrap: wrap;
}

main section.review div.reviewWraper div.reviewInner {
	width: 50%;
	padding: 20px 30px;
}

@media screen and (max-width: 760px) {
	main section.review div.reviewWraper {
		flex-direction: column;			/* 縦並び固定 */
		align-items: center;			/* 中央揃え */
		justify-content: center;		/* ← オプション：縦中央揃え */
		padding: 0 10px;				/* 左右余白 */
	}

/* 画像コンテナ */	
	main section.review div.reviewWraper div.reviewImg {
		width: 100%;					/* 画像：画面幅100% */
		max-width: 400px;				/* 最大幅制限 */
		order: 1;						/* 画像を1番上 */
		margin-bottom: 20px;			/* 画像下に20px空白 */
		align-self: center;				/* ← これ追加！個別中央揃え */
	}
	
	main section.review div.reviewWraper div.reviewImg img {
		width: 100%;					/* 画像自体も100% */
		height: auto;					/* 高さ自動調整 */
		border-radius: 10px;			/* 角丸 */
	}

/* テキストコンテナ */	
	main section.review div.reviewWraper div.reviewInner {
		width: 100%;					/* テキスト：画面幅100% */
		max-width: 500px;				/* テキスト幅制限 */
		padding: 20px 15px;				/* 内側余白 */
		order: 2;						/* テキストを2番目（下） */
		align-self: center;				/* ← これ追加！個別中央揃え */
	}
	
	main section.review div.reviewWraper div.reviewInner h3 {
		font-size: 1.4em;				/* h3文字サイズ調整 */
		margin-bottom: 15px;
		text-align: center;				/* 中央揃え */
	}

}

main section.review div.reviewWraper div.reviewInner h3 {

}

main section.review div.reviewWraper div.reviewInner p {
	
}

main section.review div.reviewWraper div.reviewImg {
	width: 50%;
}
@media screen and (max-width: 760px) {
	main section.review div.reviewWraper div.reviewImg {
		width: 100%;
	}
}

/*=====Aさん口コミ=====*/
main section.review div.Asan {

}

main section.review div.Asan .reviewImg {

}

main section.review div.Asan .reviewInner {

}

main section.review div.Asan .reviewImg {

}
/*=====Bさん口コミ=====*/
main section.review div.Bsan {
	flex-direction: row;
}

main section.review div.Bsan .reviewInner {

}

main section.review div.Bsan .reviewImg {

}
/*=====Cさん口コミ=====*/
main section.review div.Csan {

}

main section.review div.Csan .reviewInner {

}

main section.review div.Csan .reviewImg {

}
main section.review div:nth-of-type(odd) {
	flex-direction: row-reverse;
}

/*=====main section.access=====*/
/*ページ内リンクでジャンプした時、ナビゲーションで見出しが隠れないようにするため、
padding-topでナビゲーションの高さを確保、その分下に下がるので同じ高さ分をネガティブマージンで指定する*/

/*=====アクセス店舗情報共通=====*/
main section.access {
	padding: 60px 0 0 ;
	margin: -60px 0 150px;
}
section {
	padding: 60 0 60px 0;				/* 下60px余白 */
	max-width: 960px;					/* 最大幅960px */
	margin: auto;						/* 中央揃え */
}

@media screen and (max-width: 760px) {
	section {
		padding: 0 20px 20px 20px;		/* スマホ：左右20px・下20px */
	}
}

/*=====アクセス情報=====*/
section.access iframe {
	width: 100%;						/* 画面幅いっぱい */
	height: 300px;						/* 固定高さ300px */
	border-radius: 10px;				/* 角丸10px */
}

section.access p {
	width: 410px;						/* 幅410px中央配置 */
	margin: 0 auto;						/* 中央揃え */
	font-size: 1.3em;					/* 文字サイズUP */
	line-height: 1.6;					/* 行間調整 */
}

@media screen and (max-width: 760px) {
	section.access p {
	width: auto;						/* スマホでは幅自動調整 */
	}
}

/*=====店舗情報=====*/
section.info ul {
	list-style: none;					/* 箇条記号なし */
	padding: 0;							/* リスト内側余白なし */
}

section.info ul {
	width: 410px;						/* 幅41px中央配置 */
	margin: 0 auto;						/* 中央揃え */
}

@media screen and (max-width: 760px) {
	section.info ul {
	width: auto;						/* スマホでは幅自動調整 */
	}
}

section.info ul li {
	padding: 5px 0;						/* 上下5px内側余白 */
	font-size: 1.2em;					/* 文字サイズUP */
	line-height: 1.5;					/* 行間調整 */
}

/*===============footer===============*/

footer {
	padding: 40px 0 10px;
	margin-top: 100px;					/* 上マージン100px */
	background-color: #555353;
	text-align: center;
	color: #fff;
}

footer nav {

}

footer nav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

footer nav ul.primaryLinks {
	max-width: 960px;
	margin: 0 auto 40px;
	font-size: 1.5em;
}

footer nav ul.primaryLinks li {
	width: 20%;
	text-align: center;
}
@media screen and (max-width: 760px) {
	footer nav ul.primaryLinks li {
		width: 100%;
		line-height: 2;
	}
}

footer nav ul.secondaryLinks {
	max-width: 960px;
	margin: 0 auto 50px;
	font-size: 1.2em;
}

footer nav ul.secondaryLinks li {
	width: 50%;
	text-align: center;
}
@media screen and (max-width: 760px) {
	footer nav ul.secondaryLinks li {
		width: 100%;
		line-height: 2;
	}
}

footer nav ul.socialLinks {
	width: 320px;
	margin: 0 auto 50px;
}

footer nav ul.socialLinks li {
	width: 50px;
}

footer address {
	margin: 0 0 50px;
	font-size: 1.2em;
}

footer address em {
	font-size: 1.5em;
}

footer p {

}

footer p small {

}

footer div.toTop {
	width: 50px;
	height: 50px;
	position: fixed;
	right: 20px;
	bottom: 20px;
}

footer div.toTop img {
	filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.3));
}

