@charset "UTF-8";


/*=======================================================*/
/*      		セクション毎のCSS   			  		  */
/*======================================================*/


/*======= 共通 ======*/

/* 親要素からはみ出して画面いっぱいに */
.full {
	margin: 0 calc(50% - 50vw);
	width: 100vw;
}



/*======= TOP ======*/
/*ご挨拶*/
.greeting {
	padding: 0 0 clamp(30px, 4vw, 70px) 0;
	background-color: var(--base-color);
	position: relative;
	z-index: 1;
/*
	padding: clamp(40px, 6vw, 90px) 0 var(--v-space);
	background-color: var(--base-color);
	position: relative; 
	z-index: 1;  */
}

.greeting-spot {
	color: var(--accent-color1);
	font-size: 1.2em;
}

/**/
.tx-wrap {
	background: rgb(255, 255, 255, 0.9);
	height: auto;
	width: fit-content;
	margin: 0 auto;
	position: relative;
	top: -1.5em;
	z-index: 5;
	display: block;
	box-shadow: 0px 3px 3px 0px rgba(83, 83, 83, 0.25);
}
.tx-wrap div.wrap-cont {
	padding: 20px;
	border: 2px solid #f25111;
    background-color: #fff;
}
@media screen and (max-width: 568px) {
	.tx-wrap {
		top: -2em;
	}
}
/*冒頭一文*/
p.grp{
	line-height: 1.3;
	margin: 0 auto;
	width: fit-content;
}
/**/
.lead-copy {
	text-align: center;
	font-size: clamp(20px, 2vw, 30px);
	font-weight: 700;
	background: linear-gradient(to right, #df0000, #ff9900);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin: 0 auto 1.5rem auto;
	/*max-width: 720px;*/
	line-height: 1.4;
}
/**/
p.grp3{
	font-size: clamp(14px, 1.5vw, 17px);
	line-height: 1.7;
	font-family: "Zen Kaku Gothic New", "ヒラギノ角ゴ ProN W3", "MS PGothic", "Meiryo", sans-serif;
	font-weight: 400 !important;
	margin-top: 1em;
	/*-webkit-text-stroke: 3px #fff;
	text-stroke: 3px #fff;
	paint-order: stroke;*/
}
/**/

/*======= コンテンツ ======*/

/*======= ABOUT ======*/
/*section1*/
.sec1 {
	padding: var(--v-space) 0;
    background-color: #FFF;
    background-image: url(../img/bg_01a.jpg), url(../img/bg_01b.jpg);
    background-repeat: no-repeat, no-repeat ;
    background-position: top center, bottom center ;
    background-size: 100%, 100%;
}

/*======= MENU ======*/
/*section2*/
.sec2 {
	padding: var(--v-space) 0;
	background-color: #FFF;
	/*
	background-image: url(../img/bg_03.png);
	background-size:cover;
	background-position: bottom;
	position: relative; /* sectionの位置を相対的にする*/ 
	*/
	z-index: 1; /* 背景画像より上に表示 */ 
}

/* カード全体のグリッド */
.sec2-card__item {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}
@media only screen and (max-width: 968px) {
	.sec2-card__item {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media only screen and (max-width: 568px) {
	.sec2-card__item {
		grid-template-columns: repeat(2, 1fr);
	}
}
/* 各カードの中身 */
.sec2-card__item > div {
	display: flex;
	flex-direction: column;
	align-items: center;
}
/* 画像部分 */
.sec2-card__item figure {
	margin: 0;
	text-align: center;
}
/* タイトル */
.sec2-card__item h4 {
	text-align: center;
	margin: 10px 0 0;
}
/* 説明文 */
.sec2-card__item p {
	font-size: 14px;
	line-height: 1.5;
	text-align: center;
}


/* カード全体のグリッド */
.sec2-card__item4 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
}
@media only screen and (max-width: 968px) {
	.sec2-card__item4 {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media only screen and (max-width: 568px) {
	.sec2-card__item4 {
		grid-template-columns: repeat(2, 1fr);
	}
}
/* 各カードの中身 */
.sec2-card__item4 > div {
	display: flex;
	flex-direction: column;
	align-items: center;
}
/* 画像部分 */
.sec2-card__item4 figure {
	margin: 0;
	text-align: center;
}
/* タイトル */
.sec2-card__item4 h4 {
	text-align: center;
	margin: 10px 0 0;
}
/* 説明文 */
.sec2-card__item4 p {
	font-size: 14px;
	line-height: 1.5;
	text-align: center;
}


/* カード全体のグリッド */
.sec2-card__item2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}
@media only screen and (max-width: 968px) {
	.sec2-card__item2 {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media only screen and (max-width: 568px) {
	.sec2-card__item2 {
		grid-template-columns: repeat(2, 1fr);
	}
}
/* 各カードの中身 */
.sec2-card__item2 > div {
	display: flex;
	flex-direction: column;
	align-items: center;
}
/* 画像部分 */
.sec2-card__item2 figure {
	margin: 0;
	text-align: center;
}
/* タイトル */
.sec2-card__item2 h4 {
	text-align: center;
	margin: 10px 0 0;
}
/* 説明文 */
.sec2-card__item2 p {
	font-size: 14px;
	line-height: 1.5;
	text-align: center;
}

/* 画像を包む figure に position を与える */
.sec2-card__item2 figure,
.sec2-card__item4 figure {
	position: relative;
	margin: 0;
	width: 100%;
}

/* 下部の白帯テキスト */
.sec2-card__item2 figcaption,
.sec2-card__item4 figcaption {
	position: absolute;
	bottom: 0;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.85);
	color: #000;
	text-align: center;
	padding: 8px 0;
	box-sizing: border-box;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif, 'Noto Serif JP';
    font-weight: bold;
}

/*======= FLOW ======*/

/*section3*/
.sec3 {
	padding: var(--v-space) 0;
    background-color: var(--base-color);
	background-image: url(../img/bg_03.png);
	background-size: clamp(50px,6vw,80px);
	background-repeat: repeat;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

/*======= FAQ ======*/
.faq_sec1 {
	padding: var(--v-space) 0;
	background-color: #FFF;
	
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}
div.faq2 p.b {
	font-weight: bold;
	color: #444;
}
div.faq2 p.b::first-letter {
	color: var(--main-color);
	font-size: 130%;
}
div.faq2 p {
	margin-top: 5px;
	line-height: 1.4;
	text-align: left;
	text-indent: -1.4em;
	padding-left: 1.4em;
	display: block;
}
div.faq2 p::first-letter {
	color: var(--accent-color1);
	font-size: 130%;
	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: rgba(0, 0, 0, 0.8);
	background-size: cover;
	background-position: bottom;
	position: relative;
	z-index: 1;
}
/* 概要・アクセス部分のテーブル */
.info1 {
	font-weight: bold;
	border-bottom: 1px dashed var(--accent-color2);
	padding: 5px;
	width: 5.25em;
}
.info2 {
	border-bottom: 1px dashed var(--accent-color2);
	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%;
	}
}

.info-sec1-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 5px 5px;
}

@media (min-width: 568px) {
	.info-sec1-container {
		grid-template-columns: repeat(6, 1fr);
	}
}

/*会社概要*/
.bg_b{
	background: rgba(99,66,53, 0.6);
	padding:40px;
	border-radius: 20px;
}
@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; /* 背景画像より上に表示 */ 
}



/*======= リスト ======*/
@media (max-width: 1024px) {
	ul.sidelist2 li {
		font-size: 13px;
		padding: 5px 4px;
	}
}

ul.sidelist2 li {
    box-sizing: border-box;
    list-style-type: none;
    float: left;
    --widthA: calc(100% - 10px);
    --widthB: calc(var(--widthA) / 2);
    width: var(--widthB);
    margin: 2.5px 5px 2.5px 0;
    text-align: left;
    text-decoration: none;
    font-size: 15px;
    padding: 5px;
	color: --txt-color;
    border: dashed 1px var(--main-color);
    background: #fff;
}

 .mb-20 {
	margin-bottom: 20px !important;
 }

 .cleafix {
	content: '';
    display: block;
    clear: both;
    padding-top: 20px;
 }


/*======= 電話 ======*/
 .sec3-heading {
    display: flex
;
    justify-content: center;
    align-items: center;
    font-size: clamp(14px, 1vw, 18px);
    text-align: center;
    border: 0;
    color: var(--txt-color);
    margin: 10px;
}

.sec3-heading::before {
    margin-right: 30px;
    transform: rotate(-35deg);
    content: '';
    width: 1px;
    height: 40px;
    background-color: var(--main-color);
}

.sec3-heading::after {
    margin-left: 30px;
    transform: rotate(35deg);
    content: '';
    width: 1px;
    height: 40px;
    background-color: var(--main-color);
}

a.btn_01 {
    display: block;
    text-align: center;
    text-decoration: none;
    position: relative;
    width: 200px;
    margin: 0 auto;
    padding: 1rem 4rem;
    font-weight: bold;
    color: #fff;
    background: var(--main-color);
    transition: 0.3s ease-in-out;
}

a.btn_01::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    border: 1px solid var(--accent-color1);
    transition: 0.2s;
}

/*======= 調整 ======*/
.l-c {
	display: flex;
	flex-direction: column;
	align-items: center;
}

/*-----------*/
.spot-heading01 {
    font-size: clamp(40px, 6vw, 60px);
    font-style: italic;
    text-align: center;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.spot-heading02 {
    font-size: clamp(22px, 2.7vw, 30px);
    line-height: 1em;
    font-weight: 700;
    text-align: center;
    font-family: 'YakuHanJPs', 'Noto Sans Japanese', sans-serif, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "MS Pゴシック", "MS PGothic", Arial, Helvetica, Verdana;
}


/*漢方用*/
  .small-grid-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: stretch;
  }

  .small-grid-item {
    flex: 0 0 50%; /* 画像幅を常に50%に固定 */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f8f8; /* 任意 */
  }

  .small-grid-container.single {
    justify-content: center; /* 1枚の時も中央寄せ */
  }


/*2025-04-13*/

/*======= ご挨拶 ======*/



/*店舗外観カード*/
.three-card__item{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap:10px;
}
@media only screen and (max-width: 968px) {
	.three-card__item{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
}
@media only screen and (max-width: 568px) {
	.three-card__item{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
}
.three-card__item div{
	/*子要素のそれぞれのdivの高さを揃える記述*/
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 1;
	/*ここまで*/

	padding: 0px;
	background-color: var(--base-color);
	border-radius: 10px;
	box-sizing: border-box;
	border: solid 1px var(--main-color);
}
.three-card__item H4{
	padding: 5px 0;
	font-size: clamp(16px,1.5vw,20px);
	font-weight: bold;
	line-height: 1.3;
	text-align: center;
	border-bottom: 2px dotted var(--main-color);
}
.three-card__item p{
	display: inline-block;
    font-size: 15px;
    line-height: 1.5;
}




/*画像2つ同じサイズでの並び*/
.two-card__item{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap:10px;
}
@media only screen and (max-width: 968px) {
	.two-card__item{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
}
@media only screen and (max-width: 568px) {
	.two-card__item{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
}
.two-card__item div{
	/*子要素のそれぞれのdivの高さを揃える記述*/
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 1;
	/*ここまで*/

	/*

	padding: 20px;
	background-color: var(--base-color);
	*/
	border-radius: 10px;
	box-sizing: border-box;
	/*
	border: solid 1px var(--main-color);
	*/
}
.two-card__item div img{
	width:100%;
}


.two-card__item H4{
	padding: 5px 0;
	font-size: clamp(16px,1.5vw,20px);
	font-weight: bold;
	line-height: 1.3;
	text-align: center;
	border-bottom: 2px dotted var(--main-color);
}
.two-card__item p{
	display: inline-block;
    font-size: 15px;
    line-height: 1.5;
}


/*全体*/
p.right{
	text-align:right;
}

p.small{
	font-size:13px;
}



/*======= エキス剤とは ======*/
/*section1*/
.sec1a {
	padding: var(--v-space) 0;
    background-color: #FFF;
}

/*エキス剤とは カード 4枚*/
.four-card__item{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap:10px;
}



@media only screen and (max-width: 968px) {
	.four-card__item{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
}
@media only screen and (max-width: 568px) {
	.four-card__item{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
}

.four-card__item2 div{
	padding:10px;
}



.four-card__item div{
	/*子要素のそれぞれのdivの高さを揃える記述*/
	display: grid;
	grid-template-rows: subgrid;

		
	grid-row: span 1;
	/*ここまで*/

	
	
	/*

	background-color: var(--base-color);
	*/
	border-radius: 10px;
	box-sizing: border-box;
	
	/*
	border:1px solid var(--accent-color1);
	*/
}


.four-card__itemA div{
	grid-row: span 2;
}

.four-card__item H4{
	padding: 5px 0;
	font-size: clamp(16px,1.5vw,20px);
	font-weight: bold;
	line-height: 1.3;
	text-align: center;
	border-bottom: 2px dotted var(--main-color);
}
.four-card__item p{
	display: inline-block;
    font-size: 15px;
    line-height: 1.5;
}


.four-card__item3 div{
	grid-row: span 3;
}
/*-------------------------------------*/
/*-------------------------------------*/
/*-------------------------------------*/
/* 全体のコンテナ */
.pcTwo-Para-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* PCでは3列 */
  gap: 20px;
  padding: 20px;
  box-sizing: border-box;
}


.pcTwo-Para-card h4{
    padding: 5px 0;
    font-size: clamp(16px, 1.5vw, 20px);
    font-weight: bold;
    line-height: 1.3;
    text-align: center;
    border-bottom: 2px dotted var(--main-color);
}


/* カードのスタイル */
.card {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  text-align: left;
  width: 100%; /* カードの幅を親要素に合わせる */
  box-sizing: border-box;
  max-width: 400px; /* カードの最大幅を固定（必要に応じて調整） */
  margin: 0 auto; /* 中央揃え */
  border: 1px solid var(--accent-color1);
}

/* カード内のテキスト */
.card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.card p {
  font-size: 1rem;
  margin-bottom: 10px;
}

/* 画像コンテナ */
.image-container {
  display: flex;
  justify-content: center; /* 画像が1枚の場合は中央揃え */
  gap: 10px; /* 画像が2枚の場合の間隔 */
  flex-wrap: nowrap; /* 横並びを維持 */
  width: 100%; /* 画像コンテナの幅をカードに合わせる */
  overflow: hidden; /* はみ出しを防ぐ */
}

/* 画像のスタイル */
.image-container figure {
  margin: 0;
  flex: 0 0 auto;
}

.image-container img {
  width: 100%;
  max-width: 175px; /* 画像サイズを統一（1枚でも2枚でも同じサイズ） */
  height: auto;
  object-fit: cover;
  margin-bottom:10px;
}

/* 画像が1枚の場合の中央揃え */
.image-container figure:only-child {
  flex: 0 0 auto;
}

/* タブレット（768px以下） */
@media (max-width: 768px) {
  .pcTwo-Para-card {
    grid-template-columns: repeat(2, 1fr); /* タブレットでは2列 */
  }

  /* 画像の横並びを維持 */
  .image-container {
    flex-wrap: nowrap;
  }

  .card {
    max-width: 100%; /* タブレットでは幅を広げる */
  }
}

/* スマホ（576px以下） */
@media (max-width: 576px) {
  .pcTwo-Para-card {
    grid-template-columns: 1fr; /* スマホでは1列（ブロック表示） */
  }

  /* 画像の横並びを維持 */
  .image-container {
    flex-wrap: nowrap;
  }

  /* スマホでは画像サイズを調整 */
  .image-container img {
    max-width: 150px; /* スマホでは画像を小さく（1枚でも2枚でも同じ） */
  }

  .card {
    max-width: 100%; /* スマホでは幅を広げる */
  }
}



/*余談ですが、歴史の一端を・・・*/
.linkWaku{
	border:1px solid var(--accent-color2);
	width:80%;
	margin:0 auto;
	padding:10px;
	text-align:center;
}

.linkWaku:hover {
	background-color:#eee;
}


/*======= 煎じ薬とは ======*/
.secA {
    padding: var(--v-space) 0;
    background-color: #FFF;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../img/bg_02.jpg);
    background-size: cover;
    background-position: bottom;
    position: relative;
    z-index: 1;
}

.four-card__item .cnt{
	margin:0 auto;
}

/*Herbal 生薬とは*/
.two-card__item p{
	margin:0 auto;
}


.four-card__item2 div{
	border:1px solid var(--accent-color1);
}

.four-card__item2 div img{
	margin:0 auto;
}


/*フォントカラー 全共通*/
span.cl{
	color:#f25111;
}
/*ページ内テキストからのリンクの色*/
a.cl:link, a.cl:visited {
    color: #8a5743; /* 任意の色（例: 青） */
	text-decoration:underline;
}



/*======= 動物生薬とは ======*/
.secB {
    padding: var(--v-space) 0;
    background-color: #FFF;
    background-image: url(../img/bg_01a.jpg), url(../img/bg_01b.jpg);
    background-repeat: no-repeat, no-repeat;
    background-position: top center, bottom center;
    background-size: 100%, 100%;
}

@media screen and (max-width: 568px) { 
	img.sp-none{
		display:none;
	}
}


/*======= こんな生薬とは ======*/
/*section1*/
.secC {
	padding: var(--v-space) 0;
    background-color: #FFF;
}




/*===========動画=============*/
.secMv1 {
	padding: var(--v-space) 0;
    background-color: #FFF;
    background-image: url(../img/bg_01a.jpg), url(../img/bg_01b.jpg);
    background-repeat: no-repeat, no-repeat ;
    background-position: top center, bottom center ;
    background-size: 100%, 100%;
}

.secMv2 {
	padding: var(--v-space) 0;
    background-color: #FFF;
}


/*オマーン産*/
p.cnt{
	margin:0 auto !important;
	text-align:center;
}
