@charset "UTF-8";


/*=======================================================*/
/*					セクション毎のCSS					  */
/*======================================================*/

/*============ 共通 =========== */

/* 親要素からはみ出して画面いっぱいに */
.full {
	margin: 0 calc(50% - 50vw);
	width: 100vw;
}
@media print {
	.full {
		margin: 0;
		width: 100%;
	}
}
/*パンくず*/
.sec_pankuzu{
	padding: 0 0 15px 0;
	background-color: var(--base-color);
	position: relative;
	z-index: 1;
}

/**/
.common_end {
	padding: var(--v-space) 0 clamp(90px, 7vw, 150px) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
/*背景（各ページで変えることも可）*/
.combg-01{
	background-image: url(../img/bg_03.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.common_end p {
	font-size: clamp(15px,1.5vw,16px);
	line-height: 1.5;
	color: #fff;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
}

.bgfit{
	background-color: rgba(5, 60, 21, 0.68);
	max-width: 970px;
	padding: 55px 20px 20px 20px;
	margin: 0 auto;
}


/**/
.spot__heading03 {
	position: relative; /* 親要素を相対位置に設定 */
}
.spot__heading03 h3 {
	font-size: clamp(14px,1.5vw,16px);
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
	line-height: 1.5;
	margin-bottom: 15px;
	font-weight: 400;
	text-align: center;
	color: #fff;
	padding-top: 25px;
}
.spot__heading03 span {
	position: absolute;
	/*font-family: "WindSong", serif;*/
	font-family: "Corinthia", cursive;
	margin: 0;
	font-size: clamp(40px,5vw,60px);
	text-align: center;
	top: -0.65em; /* 調整が必要かもしれません */
	left: 50%;
	transform: translateX(-50%);
	/*transform-origin: left top;*/
	pointer-events: none;
	/*white-space: nowrap;*/
	/*text-transform: lowercase;*/
	font-weight: normal;
	color: #fff4d1;
	opacity: 0.8;
	z-index: 2;
}
@media only screen and (max-width: 868px) {
	.spot__heading03 h3 {
		text-align: justify;
	}
}
/*印刷用*/
@media print{
	.spot__heading03 h3 {
		font-size: clamp(14px,1.5vw,16px);
		text-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
		line-height: 1.5;
		font-family: 'Noto Serif JP', serif;
		margin-bottom: 15px;
		font-weight: 600;
		text-align: center;
		color: #fff;
		padding-top: 25px;
	}
}



/* =======================
   spot: フルブリード画像 × テキストカード
   ======================= */

.full_imgtext {
	position: relative;
	/*padding:  clamp(48px, 6vw, 72px) 0;*/
	padding:  clamp(35px, 5vw, 60px) 0;
	overflow-x: clip;
	overflow-x: hidden;
}

/* レイアウト：PCは画像＋カードの2エリア／SPは縦積み */
.full_imgtext .full_imgtext__grid{
	display: grid;
	grid-template-areas:
		"media"
		"card";
}

/* 画像：フルブリード（ビューポートいっぱいに突き抜け） */
.full_imgtext .full_imgtext__media{
	grid-area: media;
	position: relative;
	margin: 0 calc(50% - 50vw);
	width: 100vw;
	/*height: clamp(260px, 40vh, 800px);*/
	height: clamp(260px, 60vh, 600px);
	overflow: hidden;
	z-index: 0;
}

/* 横幅は svw で安定化（対応ブラウザのみ） */
@supports (width: 100svw){
	.full_imgtext .full_imgtext__media{
		margin: 0 calc(50% - 50svw);
		width: 100svw;
	}
}

/* 高さは svh で安定化（対応ブラウザのみ） */
@supports (height: 1svh){
	.full_imgtext .full_imgtext__media{
		height: clamp(260px, 40svh, 800px);
	}
}
/* スマホ幅（～767px）は高さを aspect-ratio で固定 */
@media only screen and (max-width: 767px){
	.full_imgtext .full_imgtext__media {
		height: auto !important;       /* vh依存をやめる */
		/*aspect-ratio: 4 / 3;*/          /* 好みで 4/3 や 21/9 に変更可 */
		aspect-ratio: 21 / 9;
	}
}

.full_imgtext .full_imgtext__media img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

/* 画像上の装飾テキスト（任意） */
/* === 文字オーバーレイ（親基準）。画像に切られない === */
.full_imgtext .full_imgtext__deco{
	position: absolute;
	/* フルブリード幅に合わせる：左右をビューポートいっぱいへ */
	left: calc(50% - 50vw);
	right: calc(50% - 50vw);
	/* 下寄せ（SPほど少し上げる） */

	/* レイヤリング */
	z-index: 1;
	pointer-events: none;

	/* タイポ */
	text-align: center;
	font-family: "Noto Serif JP", serif;
	font-size: clamp(22px, 4vw, 56px);
	line-height: 1.1;
	letter-spacing: .06em;
	color: #FFF;
	text-shadow: 0 2px 22px rgba(0,0,0,.65);

	/* 折返し挙動（スマホで細切れにならない設定） */
	white-space: normal;
	word-break: keep-all;
	overflow-wrap: normal;
	text-wrap: pretty; /* 対応ブラウザで自然な改行 */
}
@supports (width: 100svw){
	.full_imgtext .full_imgtext__deco{
		left: calc(50% - 50svw);
		right: calc(50% - 50svw);
	}
}

/* デスクトップ：カード重ねの手前で文字が埋もれないように */
@media print, screen and  (min-width: 992px){
	.full_imgtext .full_imgtext__deco{
		bottom: clamp(20px, 10vw, 100px);
	}
}
/* タブレット幅（568px$301C991px）のとき */
@media print, screen and  (min-width: 568px) and (max-width: 991px){
	.full_imgtext .full_imgtext__deco{
		bottom: 45%; /* 好きな値に調整 */
		font-size: clamp(20px, 4.5vw, 40px); /* 中間サイズ */
	}
}
/* スマホ：見切れ対策で少し上げ、文字サイズを微調整 */
@media only screen and (max-width: 567px){
	.full_imgtext .full_imgtext__deco{
		top:clamp(260px, 35vh, 800px);
		font-size: clamp(20px, 5.6vw, 32px);
		letter-spacing: .02em;
	}
}


/* カード：白・影・角丸。PCでは画像にオーバーラップ */
.full_imgtext .full_imgtext__card{
	grid-area: card;
	max-width: min(900px, 95%);
	/*margin-inline: auto;*/
	background: #ffffffd9;
	box-shadow: 0 10px 28px rgba(0,0,0,.12);
	padding: clamp(20px, 3.6vw, 36px) clamp(20px, 3.6vw, 40px);
}

.full_imgtext .full_imgtext__title{
	font-size: clamp(25px, 2.9vw, 33px);
	/*letter-spacing: .06em;*/
	margin: 0 0 .6em;
	font-family: 'Noto Serif JP', serif;
	font-weight: 400;
}
.full_imgtext .full_imgtext__lead{
	font-size: clamp(14px, 1.4vw, 15px);
	line-height: 1.4;
	text-align: justify;
	margin: 0;
}

/* ====== PC配置：画像とカードを2カラムに。カードは右寄せで重ねる ====== */
@media print, screen and  (min-width: 992px){
	.full_imgtext .full_imgtext__media{
		/*height: clamp(260px, 70vh, 800px);*/
		height: clamp(260px, 60vh, 600px);
	}
	.full_imgtext .full_imgtext__grid{
		grid-template-columns: 1fr min(50%, 800px);
		grid-template-areas: "media card";
		align-items: center;
	}

	/* カードをやや上に重ねる（オーバーラップ感） */
	.full_imgtext .full_imgtext__card{
		margin-right: clamp(20px, 5vw, 72px);
		margin-left: 0;
		/*transform: translateY(-15%);*//*少し上に*/
		transform: translateY(0%);/*真横*/
		background: #ffffff;
	}

	/* 反転レイアウト */
	.full_imgtext .full_imgtext__grid.is-reverse{
		grid-template-columns: min(50%, 800px) 1fr;
		grid-template-areas: "card media";
	}
	.full_imgtext .full_imgtext__grid.is-reverse .full_imgtext__card{
		margin-left: clamp(20px, 5vw, 72px);
		margin-right: 0;
	}
}

@media print{
	.full_imgtext .full_imgtext__media{
		height: 500px;
	}
	.full_imgtext .full_imgtext__deco {
		bottom: 15%;
	}
}

/*フッターバナー：簡素版*/
.footerbnr2 {
	padding: clamp(25px, 3vw, 50px) 0;
	position: relative;
	z-index: 1;
	background-color: #FFF;
}



/*======= TOPページ ======*/
/*ご挨拶*/
.greeting {
	padding: var(--v-space3) 0 clamp(20px, 4vw, 30px) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
.greeting-haba {
	margin: 0 auto;
	max-width: 900px;
	padding: 1% 0 0 0;
}
/*冒頭一文*/
p.grp{
	font-size: clamp(13px, 1.3vw, 14px);
	line-height: 1.3;
	margin: 0 auto 10px auto;
	width: fit-content;
	color: var(--main-color);
}

/*サブキャッチ補足文章*/
.lead-p {
	text-align: center;
	color: var(--accent-color1);
	font-size: clamp(16px, 1.6vw, 18px);
	font-weight: 400;
	margin: 5px auto 10px auto;
	line-height: 1.4;
	/*font-family: "Zen Maru Gothic", sans-serif;*/
}
@media (max-width: 568px) {
	.lead-p {
		text-align: justify;
	}
}

/**/
p.grp2{
	font-size: clamp(15px, 1.4vw, 16px);
	line-height: 1.7;
	font-weight: 400;
	text-align: justify;
}

/*お問い合わせバナー*/
.tel_bnr{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 20px;
	grid-row-gap: 10px;
}
@media only screen and (max-width: 568px) {
	.tel_bnr{
		grid-template-columns: repeat(1, 1fr);
		grid-row-gap: 10px;
	}
}




/* instaトピックス */
.topics-container2 {
	width: 50%;
	margin: 20px auto;
	padding: 0;
	box-sizing: border-box;
	max-width: 600px; /* 最大幅 */
	display: flex;
	justify-content: center;
}
.topics-box2 {
	background-color: #ffffffe5;
	border-radius: 10px;
	padding: 7px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease-in-out;
	width: 100%;
}
.topics-box2:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
@media only screen and (max-width: 868px) {
	.topics-container2 {
		width: 100%;
	}
	.topics-box2 {
		background-color: #fffffff7;
	}
}
/*印刷時の為*/
@media print{
	.topics-container2 {
		width: 50%;
		margin: 20px auto;
		padding: 0;
		box-sizing: border-box;
		max-width: 600px; /* 最大幅 */
		display: flex;
		justify-content: center;
	}
	.topics-box2 {
		background-color: #ffffffe5;
		border-radius: 10px;
		padding: 7px;
		box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
		transition: all 0.3s ease-in-out;
		width: 100%;
	}
}


/*Instagram*/
/*
.instacolor{
	background: #d6249f;
	background: -webkit-linear-gradient(45deg, #f9e36f 5%, #fd5949 45%, #d6249f 60%, #5c28eb 90%);
	background: linear-gradient(45deg, #f9e36f 5%, #fd5949 45%, #d6249f 60%, #5c28eb 90%);
}
*/
.instacolor{
  background: #d6249f;
  background: -webkit-linear-gradient(225deg, #f9e36f 5%, #fd5949 45%, #d6249f 60%, #5c28eb 90%);
  background: linear-gradient(225deg, #f9e36f 5%, #fd5949 45%, #d6249f 60%, #5c28eb 90%);
}





/*太陽薬品はこんなお店です*/
.top_sec1{
	padding: clamp(20px, 3vw, 40px) 0;
	background-color: #ffffff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
/**/
.strength-section {
	padding: 50px 1rem;
	background: #eff4f1;

	background-image: url(../img/bg_01a.png),url(../img/bg_01b.png);
	background-repeat: no-repeat,no-repeat;
	background-position: left bottom,right bottom;
	background-size: 260px,250px;
}
/* レスポンシブ対応 */
@media (max-width: 568px) {
	.strength-section {
		padding: 30px 1rem;
		background-image: url(../img/bg_01b.png);
		background-repeat: no-repeat;
		background-position: right bottom;
		background-size: 245px;
	}
}
/**/
p.empp{
	font-size: clamp(17px, 1.6vw, 20px);
	font-family: 'Noto Serif JP', serif;
	-webkit-text-stroke: 3px #eff4f1;
	text-stroke: 3px #eff4f1;
	paint-order: stroke;
}

/**/
.strength-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
	max-width: 1065px;
	margin: 0 auto 30px auto;
}
.strength-details {
	background: #ffffffe8;
	border-radius: 15px;
	padding: 1rem 1.2rem;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	position: relative;
	max-width: 280px;
	width: 100%;
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}
.strength-details h3 {
	font-family: 'Noto Serif JP', serif;
	font-size: clamp(17px, 1.7vw, 19px);
	font-weight: 600;
	color: #1d7723;
	margin: 10px 0 5px 0;
	text-align: center;
}
.strength-details p {
	font-size: clamp(14px, 1.5vw, 15px);
	color: #666;
	text-align: justify;
	line-height: 1.4;
	margin-top: 15px;
}


.strength-details.show {
	animation: fadeSlideUp 0.8s ease-out forwards;
}

/* 順番にディレイをかける */
.strength-details.show:nth-child(1) { animation-delay: 0.1s; }
.strength-details.show:nth-child(2) { animation-delay: 0.2s; }
.strength-details.show:nth-child(3) { animation-delay: 0.3s; }
.strength-details.show:nth-child(4) { animation-delay: 0.4s; }
.strength-details.show:nth-child(5) { animation-delay: 0.5s; }
.strength-details.show:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeSlideUp {
	0% {
		opacity: 0;
		transform: translateY(30px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

/* レスポンシブ対応 */
@media (max-width: 568px) {
	.strength-details {
		max-width: 100%;
	}
}

@media print {
  /* アニメーションやトランジションを無効化 */
  .strength-details {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }

  /* IntersectionObserverでclass付与されていなくても表示されるように */
  .strength-details:not(.show) {
    opacity: 1 !important;
    transform: none !important;
  }
}

.linkdiv{
	font-size: clamp(11px, 1.4vw, 14px);
	background-color: #eff4f1c7;
	padding: 5px 13px 7px 13px;
	margin: 0 auto;
	width: fit-content;
	border-radius: 5px;
}



/*おすすめの漢方薬*/
.top_sec2{
	padding: clamp(20px, 4vw, 40px) 0;
	background-color: var(--base-color);
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}
@media print, screen and (min-width: 768px) {
	.top_sec2 {
		background-image: url(../img/bg_05.png);
		background-repeat: no-repeat;
		background-position: bottom;
		background-size: cover;
	}
}



/*イチオシ健康情報*/
.promotional_sec{
	padding: 50px 0;
	background-image: url("../img/bg_05.jpg");
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: cover;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
.promotional_sec::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: #48350f85;
}

/*Check!*/
.spot_heading07 {
	position: relative; /* 親要素を相対位置に設定 */
}
.spot_heading07 span {
	position: absolute;
	font-family: "Corinthia", cursive;
	margin: 0;
	font-size: clamp(50px,10vw,80px);
	text-align: left;
	top: -20px; /* 調整が必要かもしれません */
	left: 0;
	transform-origin: left top;
	pointer-events: none;
	white-space: nowrap;
	font-weight: normal;
	color: #0085b9;
	opacity: 0.65;
	transform: rotate(-10deg);
	z-index: 3;
	-webkit-text-stroke: 5px #fff;
	text-stroke: 5px #fff;
	paint-order: stroke;
}

/* トピックスの全体デザイン */
.topics-container {
	width: 100%;
	margin: 20px auto;
	padding: 20px;
	box-sizing: border-box;
	max-width: 1200px; /* 最大幅 */
	display: flex;
	justify-content: center;
}
/* トピックスボックス */
.topics-box {
	background-color: #ffffffde;
	border-radius: 10px;
	padding: 30px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease-in-out;
	width: 100%;
	max-width: 930px;
}
.topics-box:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
/* レスポンシブデザイン: スマホなど小さい画面向け */
@media (max-width: 768px) {
	.topics-container {
		padding: 10px;
	}
	.topics-box {
		padding: 20px 15px;
	}
}
/*印刷用*/
@media print{

}

.topics-box p{
	font-size: clamp(15px, 1.5vw, 16px);
	line-height: 1.6;
	margin: 10px 0;
}
/**/
.linkdiv2{
	font-size: clamp(13px, 1.4vw, 14px);
	line-height: 1.4;
	background-color: #ffffffc7;
	padding: 5px 13px 7px 13px;
	margin: 10px 0 0 auto;
	width: fit-content;
	border-radius: 5px;
}


/*NEWS*/
.blog_sec1{
	padding: clamp(30px, 5vw, 50px) 0;
	background-color: #f4f3ef;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}

/*タイトル(共通)*/
.spot-heading01{
	font-size: clamp(40px, 4vw, 50px);
	line-height: 1;
	font-style: italic;
	text-align: center;
	font-family: "Zen Maru Gothic", "Montserrat", sans-serif;
	font-weight: 500;
}
.spot-heading01::first-letter{
	color: var(--main-color);
	font-size: clamp(40px, 4vw, 50px);
	line-height: 1;
	font-style: italic;
	text-align: center;
	font-family: "Montserrat", sans-serif;
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 500;
}
.line{
	width: 1px;
	height: auto;
	padding-top: 35px;
	background-color: #777;
	margin: 1.1% auto 0.8% auto;
}






/*======= おすすめの漢方薬ページ ======*/
.recommended_sec1 {
	padding: var(--v-space3) 0 var(--v-space) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
h3.normalh3{
	font-family: 'Noto Serif JP', serif;
	font-size: clamp(20px, 1.9vw, 27px);
	font-weight: 400;
	margin-bottom: 30px;
}

/*テキストcenter→justify*/
.tx-ctj2 {
	margin: 0px auto;
	text-align: center;
}
@media (max-width: 1068px) {
	.tx-ctj2 {
		text-align: justify;
	}
}
/*印刷時*/
@media print{
	.tx-ctj2 {
		margin: 0px auto;
		text-align: center;
	}
}


/*当店おすすめのホノミ漢方製品*/
.recommended_sec2 {
	padding: 0 0 var(--v-space) 0;
	background-color: #f7f7f7;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
@media print, screen and (min-width: 769px) {
	.recommended_sec2 {
		background-image: url(../img/bg_04.png);
		background-repeat: no-repeat;
		background-position: center bottom;
		background-size: cover;
	}
}
@media print, screen and (max-width: 768px) {
	.recommended_sec2 {
		background-image: url(../img/bg_04sp.png);
		background-repeat: no-repeat;
		background-position: center bottom;
		background-size: cover;
	}
}
/*印刷用*/
@media print{
	.recommended_sec2 {
		background-image: url(../img/bg_04.png);
		background-repeat: no-repeat;
		background-position: center bottom;
		background-size: cover;
	}
}
/**/
.spot-heading09{
	text-align: center;
	position: relative;
	top:-50px;
	display: block;
	z-index: 3;
	margin-bottom: -60px;
}
.spot-heading09 .heading-line {
	width: 1px;
	height: 100px;
	background-color: var(--main-color);
	margin: 0 auto;
}
.spot-heading09 p {
	position: relative;
	font-size: 35px;
	font-family: "Corinthia", cursive;
	line-height: 1.2;
	color: var(--accent-color1);
	margin: 10px 0 15px 0;
}
.spot-heading09 h2 {
	position: relative;
	top:-13px;
	font-size: clamp(25px, 2.4vw, 33px);
	line-height: 1.2;
	color: #444;
	font-weight: normal;
	margin-bottom: 25px;
}


/**/
.kampo-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.3em;
}
.kampo-item {
	background: #fff;
	border-radius: 8px;
	padding: 1.5em;
	box-shadow: 0 2px 6px rgba(0,0,0,0.05);
	transition: transform 0.2s ease;
}
/**/
.kampo-item h3 {
	color: var(--accent-color1);
	font-size: 1.1em;
	border-left: 4px solid var(--main-color);
	padding: 3px 3px 3px 0.6em;
	margin-bottom: 0.7em;
	background-color: var(--base-bg);
}
/* 既存の .kampo-grid, .kampo-item はそのまま使えます */

.kampo-card {
	border-top: 1px dashed #ddd;
	padding-top: 0.5em;
	margin-top: 0.5em;
}

.kampo-card:first-of-type {
	border-top: none;
	margin-top: 0;
	padding-top: 0;
}

.kampo-name {
	font-weight: 600;
	color: var(--main-color);
	font-size: 1.05em;
	margin-bottom: 0.2em;
	display: flex;
	align-items: center;
	gap: 0.4em;
}

/* 画像やアイコンを入れる場合はここで調整 */
.kampo-name img.icon {
	width: 20px;
	height: 20px;
	object-fit: contain;
}

.kampo-desc {
	color: #555;
	font-size: 0.87em;
	line-height: 1.6;
}

/* hover効果を柔らかくキープ */
.kampo-item:hover {
	transform: translateY(-3px);
	transition: transform 0.2s ease;
}



/*皮膚病の内服薬・外用薬*/
.recommended_sec3 {
	padding: 0 0 var(--v-space) 0;
	background-color: #fdfcf9;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
@media print, screen and (min-width: 768px) {
	.recommended_sec3 {
		background-image: url(../img/bg_02.png);
		background-repeat: no-repeat;
		background-position: center bottom;
		background-size: cover;
	}
}


/**/
.skin-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2em;
}
.skin-col h3 {
	font-size: 1.1em;
	border-left: 5px solid var(--accent-color1);
	padding: 3px 3px 3px 0.6em;
	margin-bottom: 1.2em;
}
.skin-col h3.h3in {
	background-color: #f9eee6a8;
}
.skin-col h3.h3out {
	background-color: #e5eef4a8;
}
.skin-card {
	background: #fff;
	border-radius: 8px;
	padding: 1em 1.2em;
	box-shadow: 0 2px 6px rgba(0,0,0,0.05);
	margin-bottom: 0.8em;
	transition: transform 0.2s ease;
}
.skin-card:hover {
	transform: translateY(-3px);
}
.skin-name {
	font-weight: 600;
	color: var(--main-color);
	font-size: 1.05em;
}
.skin-desc {
	color: #555;
	font-size: 0.93em;
	line-height: 1.6;
}

/* 左右で背景色を少し変える */
.skin-inner .skin-card {
	background-color: #f9eee6a8; /* 内服薬 → ベージュトーン */
}
.skin-outer .skin-card {
	background-color: #e5eef4a8; /* 外用薬 → ブルートーン */
}


/*その他の取り扱いメーカー*/
.recommended_sec4 {
	padding: 0 0 var(--v-space) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
.maker-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.5em;
}
.maker-item {
	background: #fff;
	border-radius: 8px;
	padding: 30px 15px;
	box-shadow: 0 2px 6px rgba(0,0,0,0.05);
	transition: transform 0.2s ease;
}
.maker-item:hover {
	transform: translateY(-3px);
}
.maker-item h3 {
	font-size: clamp(21px, 2vw, 27px);
	line-height: 1;
	text-align: center;
}
.maker-desc {
	margin-top: 20px;
	font-size: 0.93em;
	line-height: 1.5;
	font-feature-settings: 'palt' 1;
	text-align: justify;
}

/* カードごとに少し淡い色のトーンを変えると柔らかく */
.maker-item:nth-child(1) {
	background-color: #eee; /* ベネセーレ */
	background-image: url(../img/recommended_sec4_imgbg01.png);
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: cover;
}
.maker-item:nth-child(2) {
	background-color: #e7f0e8; /* クロレラ */
	background-image: url(../img/recommended_sec4_imgbg02.png);
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: cover;
}
.maker-item:nth-child(3) {
	background-color: #eef3fb; /* ニチニチ */
	background-image: url(../img/recommended_sec4_imgbg03.png);
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: cover;
}


/**/
.gr-sub1 {
	padding: var(--v-space2) 0;
	background-image: url(../img/bg_grsub1.jpg);
	background-size: cover;
	background-position: center left;
	background-repeat: no-repeat;
}
h3.heading-grsub {
	font-size: clamp(25px, 2.5vw, 31px);
	line-height: 1.3;
	font-weight: normal;
	display: block;
	/*color: #fff;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);*/
	margin-bottom: 15px;
	/*-webkit-text-stroke: 3px #c8e2f0;
	text-stroke: 3px #c8e2f0;
	paint-order: stroke;*/
}
p.subp {
	font-size: clamp(14px, 1.5vw, 17px);
	/*color: #fff;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);*/
	-webkit-text-stroke: 3px #f7f7f7;
	text-stroke: 3px #f7f7f7;
	paint-order: stroke;
	font-feature-settings: 'palt' 1;
	text-shadow:
		0 0 5px #fff,
		0 0 8px rgba(255, 255, 255, 0.9);
}
/*任意のみ表示*/
@media print, screen and (min-width: 969px) {
	.nini-969 {
		display: none;
	}
}





/*======= 店舗案内ページ ======*/
/*概要*/
.info_sec1{
	padding: var(--v-space3) 0 var(--v-space2) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}

/* 全体コンテナ */
.info_haba {
	max-width: 900px;
	margin: 70px auto 0 auto;
}
/* テーブルデザイン */
.info_container {
	display: grid;
	grid-template-columns: 1fr;
}
.info_container .item {
	border-bottom: 1px solid #adccb2;
	background-color: #ffffff85;
	padding: 15px 5px;
	display: grid;
	grid-template-columns: 9em 1fr;
	align-items: stretch;
	gap: 20px;
}
.info_container .label {
	display: flex;
	align-items: center;
	font-weight: bold;
	color: #3d6a40;
	white-space: nowrap;
	padding: 5px;
	font-size: clamp(16px, 1.6vw, 17px);
}
.info_container .content {
	display: flex;
	align-items: center;
	color: #333;
	padding: 5px;
	font-size: clamp(15px, 1.6vw, 17px);
}

/**/
@media screen and (max-width: 568px) {
	.info_container .item {
		grid-template-columns: 1fr;
		padding: 15px 1px;
		gap: 0;
	}
	.info_container .label {
		line-height: 1.6;
		font-size: 17px;
		background-color: #edf2e4d6;
	}
	.info_container .content {
		display: block;
		font-size: 17px;
	}
}

/**/
.general-item-container2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	margin: 20px auto 0 auto;
	max-width: 600px;
}
@media (max-width: 468px) {
	.general-item-container2 {
		grid-template-columns: repeat(1, 1fr);
	}
}


/*アクセス*/
.access-sec{
	padding: var(--v-space2) 0;
	background-color: #f8fbf4;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
/*カードレイアウト*/
.access_sec1_subcontainer {
	margin: 30px 0 0 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}
.access_sec1_card {
	padding: 20px;
	box-shadow: 0 2px 11px rgba(142, 142, 142, 0.1);
	border-radius: 5px;
	background-color: #fffffff0;
}

/**/
.access_sec1_card h3 {
	font-family: "Zen Kaku Gothic New", serif;
	font-size: clamp(18px, 2vw, 22px);
	font-weight: bold;
	margin-top: 5px;
	margin-bottom: 7px;
	color: var(--main-color);
	border-bottom: solid 2px #d9d9d9;
	padding-bottom: 0.2em;
	position: relative;
}
.access_sec1_card h3::after {
	position: absolute;
	content: " ";
	display: block;
	border-bottom: solid 2px var(--accent-color2);
	padding-bottom: 0.2em;
	width: 25%;
}

.access_sec1_card p {
	margin-top: 5px;
	margin-bottom: 10px;
}






