@charset "UTF-8";


/*=======================================================*/
/*      		セクション毎のCSS   			  		  */
/*======================================================*/


/*======= 共通 ======*/


/* タグ */
.kakomi01 span {
	padding: 3px 10px 2px 10px;
	margin: 4px 3px;
	background-color: #e8f4f3;
	border: 1px solid var(--accent-color1);
	border-radius: 5px;
	text-align: center;
	display: inline-block;
	font-size: clamp(14px, 1.3vw, 14px);
}

/*======= TOP ======*/
/*ご挨拶*/
.greeting {
	padding: clamp(40px, 6vw, 90px) 0 var(--v-space) ;
	background-color: var(--base-color);
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}
.greeting-haba{
	max-width: 950px;
	margin: 0 auto;
	padding: 2% 0 0 0;
}
.top-card__item{
	display: grid;
	grid-template-columns: 0.59fr 2fr;
	gap:5px;
}
@media (max-width: 568px) {
	.top-card__item{
		display: grid;
		grid-template-columns: 1fr;
		gap:5px;
	}
	.img-width-sp{
		width: 200px;
	}
}
.top-card__item div{
	/*子要素のそれぞれのdivの高さを揃える記述*/
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 2;
	/* margin-bottom: 20px; */
	/*ここまで*/

}
.top-card__item p{
	text-align: center;
	font-size: 12px;
}
.top-card__item img{
	margin: 0 auto;
}


/*TELバナー*/
.tel_bnr{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 10px;
	grid-row-gap: 10px;
}
@media (max-width: 568px) {
	.tel_bnr{
		grid-template-columns: repeat(1, 1fr);
	}
}


/* 吹き出し */
.chat-container {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 30px;
	align-items: center;
	max-width: 900px;
	margin: 0 auto 5rem auto;
	padding: 1rem;
}

.chat-photo {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	object-fit: cover;
	margin: 0 auto;
}

.chat-bubble {
	position: relative;
	background: #f0f0f0;
	padding: 1rem 1.2rem;
	border-radius: 1rem;
	max-width: 100%;
	font-size: 1rem;
	line-height: 1.5;
}

.chat-bubble::before {
	content: "";
	border: 15px solid transparent;
	border-top-color: #f0f0f0; /* （◯）とカラーを合わせる */
	position: absolute;
	top: 30px; /* 三角部分の高さ */
	left: -15px; /* 三角部分の位置 */
}

@media only screen and (max-width: 567px) {
	.chat-container {
		display: grid;
		grid-template-columns: 1fr;
		gap: 30px;
		align-items: center;
		max-width: 900px;
		margin: 0 auto 3rem auto;
		padding: 1rem;
	}
	.chat-bubble::before {
		content: '';
		position: absolute;
		left: 45%;
		top: -30px;
		display: block;
		width: 0;
		height: 0;
		border-top-color: #ffffff00;
		border-right: 15px solid transparent;
		border-bottom: 15px solid #f0f0f0;
		border-left: 15px solid transparent;
	}
}



/*======= 当店おすすめのホノミ漢方製品 ======*/
.sec1 {
	padding: var(--v-space2) 0 var(--v-space);
	background-color: #FFF;
	background-image: url(../img/bg_01.jpg);
	background-size: cover;
	background-position: center;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}
@media only screen and (max-width: 568px) {
	.sec1 {
		background-image: url(../img/bg_01_sp.jpg);
	}
}

/* ホノミ漢方カード一覧 */
.honmi-card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap:10px;
}

.honmi-card {

	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 3;

	background-color: #fffefc;
	border: 1px solid #dddacd;
	border-radius: 12px;
	padding: 20px;
	text-align: center;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
	transition: transform 0.2s ease;

	margin: 10px;
}

.honmi-card:hover {
	transform: translateY(-4px);
}

.honmi-card .icon {
	width: 100px;
	height: auto;
	margin: 0 auto 0px auto;
}

.honmi-card h4 {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 0px;
	color: var(--main-color);
	font-family: "Noto Serif JP", serif;
}

.honmi-card p {
	font-size: 14px;
	color: #444;
	line-height: 1.5;
	text-align: center;
}
.honmi-card p.tx-l {
	font-size: 14px;
	color: #444;
	line-height: 1.5;
	letter-spacing: -0.1em;
	text-align: left;
	text-align: justify;
}


@media only screen and (max-width: 567px) {
	.honmi-card-grid {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
		gap:5px;
	}
	.honmi-card {

		display: grid;
		grid-template-rows: subgrid;
		grid-row: span 3;

		background-color: #fffefc;
		border: 1px solid #dddacd;
		border-radius: 12px;
		padding: 10px;
		text-align: center;
		box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
		transition: transform 0.2s ease;

		margin: 2px;
	}
	.honmi-card .icon {
		width: 70px;
		height: auto;
		margin: 0 auto 0px auto;
	}
	.honmi-card h4 {
		font-size: 15px;
	}
	.honmi-card p {
		font-size: 13px;
		text-align: left;		
		text-align: justify;/*文字両端ぞろえ*/
	}
	.honmi-card p.tx-l {
		font-size: 13px;
		letter-spacing: -0.05em;
	}
}

/* テキストボックス */
.sec1_btn {
	font-family: 'Mukta', sans-serif;
	font-size: 18px;
	color: #8e3948;
	text-transform: uppercase;
	text-decoration: none;
	display: inline-block;
	padding: 15px 30px;
	background: #d2c3a5;
}

.sec1_btn.btn--go-icon {
	position: relative;
	text-align: center;
}

.sec1_btn.btn--go-icon::after {
	content: 'Go';
	text-align: center;
	line-height: 40px;
	text-transform: uppercase;
	color: #ece9de;
	display: block;
	width: 40px;
	height: 40px;
	margin-top: -20px;
	margin-right: -20px;
	background: #8e3948;
	border-radius: 50%;
	position: absolute;
	z-index: 1;
	top: 50%;
	right: 0;
}

.ticket {
	display: inline-block;
	width: calc(100% - 30px);
	
	padding: 15px;
	position: relative;
	top: 0;
	z-index: 1;
	/* transform: rotate(2deg) scale(0.98); */
}

.ticket::before,
.ticket::after {
	content: '';
	display: block;
	position: absolute;
}

.ticket::after {
	background: #ece9de;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.ticket:hover::before {
	box-shadow: 0 24px 2px rgba(55,55,55,0.1), 0 9px 15px rgba(55,55,55,0.2);
}

.ticket__inner {
	padding: 40px 30px 33px;
	border: 1px solid #8e3948;
	border-top: none;
	overflow: hidden;
	position: relative;
	z-index: 3;
}

.ticket__inner::before {
	content: '';
	display: block;
	width: 100px;
	height: 100px;
	margin-left: -52px;
	border-radius: 50%;
	border: 1px solid #8e3948;
	position: absolute;
	z-index: 1;
	top: -50px;
	left: 50%;
}

.ticket--has-btn .ticket__inner {
	padding-bottom: 80px;
	pointer-events: none;
}

.ticket__border::before,
.ticket__border::after {
	content: '';
	display: block;
	height: 1px;
	background: #8e3948;
	position: absolute;
	z-index: 1;
	top: 0;
}

.ticket__border::before {
	margin-right: 50px;
	left: 0;
	right: 50%;
}

.ticket__border::after {
	margin-left: 50px;
	right: 0;
	left: 50%;
}

.ticket__title {
	
	position: relative;
	z-index: 3;
	font-family: 'Mukta', sans-serif;
	font-size: clamp(25px,4vw,30px);
	text-transform: uppercase;
	line-height: 1;
	color: var(--main-color);
	margin: 0 0 18px;
}
.ticket__title .bg-fit {
	background-color: #ece9ded3;
	display: inline;
}

.ticket__title strong {
	font-family: 'Dancing Script', script;
	font-size: 125%;
	color: #8e3949ab;
	text-transform: none;
	display: block;
	margin-top: -3px;
}

.ticket__text {
	font-size: 16px;
	line-height: 1.4;
}

.ticket__btn {
	font-size: 20px;
	font-weight: bold;
	margin: -61px -15px -15px;
	display: block;
	z-index: 2;
}

.ticket__btn.btn--go-icon::after {
	font-size: 20px;
	line-height: 40px;
	width: 40px;
	height: 40px;
	position: relative;
	margin-left: 9px;
	display: inline-block;
	transition: background 0.15s ease-in-out, color 0.15s ease-in-out;
}

.ticket__btn:hover.btn--go-icon::after,
.ticket__btn:focus.btn--go-icon::after {
	color: #8e3948;
	background: #fff;
}


/*======= 症例別医薬品 ======*/
.sec2 {
	padding: var(--v-space2) 0 var(--v-space);
	background-color: #FFF;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

/* 画像とテキスト */
.sec2__imgtext {
	padding:clamp(45px, 7vw, 60px) 0;		
	border: solid 1px var(--main-color);
	border-radius: 10px;
	padding: 1.5em;
}


.sec2__imgtext-container {
	display: flex;
	flex-direction: column;
	gap: clamp(0px, 2vw, 35px);	/* テンプレ初期値 */

	/*gap: clamp(25px, 6vw, 35px);*/
}


.sec2__img img{
	margin: 0 auto;	
	/* aspect-ratio: 400 / 150; */
	object-fit: cover;
}
@media print, screen and (min-width: 1000px) {
	.sec2__imgtext-container {
		flex-direction: row;
	}

	.sec2__imgtext-container.reverse {
		flex-direction: row-reverse;
	}

	.sec2__imgtext-container > .sec2__text {
		flex: 1;
		min-width: 17em;
	}

	.sec2__imgtext-container > .sec2__img {
		/*flex: 2;*/	/* テンプレ初期値 */
		flex: 0.5;
		/* min-width: 250px; */
	}
	.sec2__img img{
		margin: 0 auto;	
		aspect-ratio: 4 / 3;
		object-fit: cover;
	}
}

.sec2__txt-bg{
	background-color: #f0f0f0;
	padding: 5px 15px;
	font-size: 14px;
}

/* リスト */
.sec2_list {
	margin: 1em 0;
	list-style: none;
	font-size: 1rem;
	color: #3b2f2f;
	border-radius: 4px;
}

.sec2_list li {
	position: relative;
	padding-left: 1.4em;
	line-height: 1.7;
	padding-bottom: 0.4em;
}

.sec2_list li::before {
	content: "●";
	position: absolute;
	left: 0;
	color: var(--accent-color1);
	font-size: 0.9em;
	top: 0.1em;
}

.sec2_tag{
	padding: 0px 10px 0px 10px;
	margin: 0px 8px;
	background-color: #e8f4f3;
	border: 1px solid var(--accent-color1);
	border-radius: 5px;
	text-align: center;
	display: inline-block;
	font-size: 13px;
}

/*======= 子宝相談 ======*/
.sec3 {
	padding: var(--v-space2) 0 var(--v-space);
	background-color: #f3f3f3;
	background-image: url(../img/bg_02.jpg);
	background-size: 100%;
	background-repeat: repeat;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}
@media only screen and (max-width: 568px) {
	.sec3 {
		background-image: url(../img/bg_02_sp.jpg);
	}
}

.sec4 {
	padding: var(--v-space) 0;
	background-color: #FFF;	
	background-image: url(../img/bg_03.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}
@media only screen and (max-width: 568px) {
	.sec4 {
		background-image: url(../img/bg_03_sp.jpg);
		background-size: cover;
		background-position: center;
	}
}

/* タイトル */
.sec4-heading01{
	font-size: clamp(25px, 2.5vw, 30px);
	line-height: 1.3;
	font-weight: normal;
	font-family: 'Noto Serif JP', serif;
	display: block;
	color: #000;
	text-shadow:
		0 0 2px rgba(255, 255, 255, 0.8),
		0 0 4px rgba(255, 255, 255, 0.8),
		0 0 6px rgba(255, 255, 255, 0.8);
	margin-bottom: 20px;
}
.sec4-txt{
	font-size: 16px;
	color: #000;
	text-shadow:
		0 0 2px rgba(255, 255, 255, 0.8),
		0 0 4px rgba(255, 255, 255, 0.8),
		0 0 6px rgba(255, 255, 255, 0.8);
}

/*======= FAQ ======*/
.faq_sec1 {
	padding: var(--v-space) 0;
	background-color: #FFF;
	
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}
.faq-item {
	display: grid;
	grid-template-columns: 1.5em 1fr;
	column-gap: 10px;
	row-gap: 5px;
}

.faq-label {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: bold;
	font-size: 110%;
	line-height: 1.5;
	border-radius: 3px;
	width: 1.5em;
	text-align: center;
	align-self: start;	/* lavelを上揃えに */
}

.faq-label.q {
	background-color: var(--main-color);
}

.faq-label.a {
	background-color: var(--accent-color1);
}

.faq-question,
.faq-answer {
	margin: 0;
	line-height: 1.6;
	text-align: justify;
}
.faq-question{
	font-weight: bold;
}

hr.faqHr{
	height: 0px;
	border: 1px dashed var(--accent-color2);
	margin: 20px auto;
}



/*======= 会社案内ページ ======*/

/*会社案内*/
.info_sec1{
	padding: var(--v-space) 0;
	background-color: #FFF;
	background-image: url(../img/bg_04.jpg);
	background-size: cover;
	background-position: top bottom;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}
@media only screen and (max-width: 568px) {
	.info_sec1 {
		background-image: url(../img/bg_04_sp.jpg);
	}
}



/* 概要部分のテーブル */
.info1 {
	font-weight: bold;
	border-bottom: 1px dashed #999;
	color: var(--txt-color);
	padding: 5px;
	/* width: 5.25em; */
	width: 170px;
}
.info2 {
	border-bottom: 1px dashed #999;
	padding: 5px;
	/* width: 400px; */
}
@media screen and (max-width: 568px) {
	.info1 {
		display: block;
		padding: 8px 2px 2px 2px;
		width: 100%;
		border-bottom: 1px solid rgba(255,255,255,0);
	}
	.info2 {
		display: block;
		padding: 2px;
		width: 99%;
	}
}

.b-hours {
	display: flex;				/* 横並びにする */
	align-items: center;			/* 高さを揃える */
	white-space: nowrap;
	margin-bottom: 2px;
}

.day {
	background-color: #a3b18a50;		/* day だけ別背景色 */
	/* font-weight: bold; */
	padding: 2px 6px;
	font-size: 14px;
	min-width: 140px;				/* 横幅を固定（全行で共通） */
	box-sizing: border-box;			/* paddingを含めた幅にする */
}

.time {
	color: #555;
	font-size: 16px;
	margin-left: 0.5em;		/* dayとの余白 */
}

/* 写真用コンテナ */
/* 会社案内写真コンテナ */
.info-photo-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}
.info-photo-container div{
	/*子要素のそれぞれのdivの高さを揃える記述*/
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 3;
	gap:0px;
}
.info-photo-container h3{
	text-align: center;
	font-size: 17px;
	color:var(--main-color);
}
.info-photo-container p{
	inline-size: fit-content;
	margin-inline: auto;
	color: #444;
	font-size: 14px;
	line-height: 1.2;
}

.info-photo-container img{
	aspect-ratio: 11 / 7;
	object-fit: cover;
	width: 100%;
	max-width: 0 auto;
	margin: 0 auto;
	border-radius: 13px;
}

@media only screen and (max-width: 767px) {
	.info-photo-container {
		grid-template-columns: repeat(1, 1fr);
	}
}


/*会社概要*/
.bg_b {
	background: rgba(255, 255, 255, 0.9);
	padding: 40px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bg_b:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 568px) {
	.bg_b {
		padding: 20px;
	}
}



.access_sec1{
	padding: var(--v-space) 0;
	background-color: #FFF;
	
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

/* アクセス部分のテーブル */
.access1 {
	font-weight: bold;
	border-bottom: 1px dashed #999;
	padding: 5px;
	width: 5.25em;
}
.access2 {
	border-bottom: 1px dashed #999;
	padding: 5px;
	width: 400px;
}
@media screen and (max-width: 568px) {
	.access1 {
		display: block;
		padding: 8px 2px 2px 2px;
		width: 100%;
		border-bottom: 1px solid rgba(255,255,255,0);
	}
	.access2 {
		display: block;
		padding: 2px;
		width: 99%;
	}
}



