@charset "UTF-8";


/*=======================================================*/
/*					セクション毎のCSS					  */
/*======================================================*/

/*============ 共通 =========== */
/*タイトル(共通)*/
.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;
	color:var(--main-color);
}
.spot-heading02{
	font-size: clamp(25px, 2.7vw, 35px);
	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;
	color:var(--main-color);
}
.spot-heading02+p{
	margin-top: 0.5em;
	margin-bottom: 1em;
	font-size: clamp(16px,2vw,20px);
	font-weight: bold;
	text-align: center;
	margin-inline: auto;
	font-family: 'YakuHanJPs','Noto Sans Japanese',sans-serif,"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "MS Pゴシック", "MS PGothic", Arial,Helvetica, Verdana;
	color:var(--accent-color2);
}
@media only screen and (max-width: 767px) {
	.spot-heading02+p{
		text-align: left;
	}
	/*<br>のブレイクポイント*/
	.br768{
		display:none;
	}
}
.line{
	width: 1px;
	height: auto;
	padding-top: 5.8%;
	background-color: var(--main-color);
	/* margin: 1.9607% auto; */
	margin: 1.1% auto;	/*今回のみ*/
}
.line2{
	width: 1px;
	height: auto;
	padding-top: 5.8%;
	background-color: #FFF;
	margin: 1.9607% auto;
}
.hline {
	display: inline-block;
	width: 40px; /* 横棒の長さ（調整可） */
	height: 1px; /* 横棒の太さ（調整可） */
	background-color: #2d2d2d; /* 横棒の色 */
	vertical-align: middle;
	margin: 0 0.5em; /* 文章と横棒の間隔 */
}
/**/
.spot__heading03 {
	position: relative; /* 親要素を相対位置に設定 */
}
.spot__heading03 h3 {
	width: fit-content;
	font-size: clamp(19px, 5vw, 30px);
	font-family: 'Noto Serif JP', serif;
	text-align: left;
	padding-left: clamp(10px,7vw,70px);
	/*padding-right: 10px;*/
	margin-left: 0;
	margin-right: 0;
	position: relative;
	z-index: 1;
	opacity: 0.9;
	margin-bottom: 0.5vw;
}
.spot__heading03 span {
	position: absolute;
	font-family: "WindSong", serif;
	margin: 0;
	font-size: clamp(40px,10vw,60px);
	text-align: left;
	top: -20px; /* 調整が必要かもしれません */
	left: 0;
	transform-origin: left top;
	pointer-events: none;
	white-space: nowrap;
	/*text-transform: lowercase;*/
	font-weight: normal;
	color: var(--accent-color1);
	opacity: 0.3;
	transform: rotate(-8deg);
	z-index: 2;
}
.spot__heading03 p {
	font-family: 'Noto Serif JP', serif;
	font-size: clamp(14px,1.4vw,16px);
	line-height: 1.4;
	text-align: left;
	/*padding-left: clamp(10px,7vw,70px);*/
	margin-left: 0;
	margin-right: 0;
	position: relative;
	z-index: 1;
	margin-bottom: 0.5vw;
}

/*＼　／でタイトルを囲む*/
/*heading04の文字が小さいVer*/
.spot__heading04 {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: clamp(14px, 2vw, 18px);
	text-align: center;
	border: 0;
	color: #444;
	margin-bottom: 10px;
}

.spot__heading04::before,
.spot__heading04::after {
	content: '';
	width: 1px;
	height: 50px;
	background-color: #e7838a;
}

.spot__heading04::before {
	margin-right: 20px;
	transform: rotate(-35deg)
}
.spot__heading04::after {
	margin-left: 20px;
	transform: rotate(35deg)
}

@media only screen and (max-width: 568px) {
	.spot__heading04::before,.spot__heading04::after {
		content: '';
		width: 1px;
		height: 60px;
		background-color: #e7838a;
	}
}
/**/
.spot_photo{
	padding: 5px;
	background-color: #FFF;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* ソフトシャドウ */
	transition: all 0.3s ease;
	border-top-left-radius: 20%;
	border-bottom-right-radius: 20%;
}
.spot_photo img{
	border-top-left-radius: 20%;
	border-bottom-right-radius: 20%;
}
.spot_photo:hover {
	transform: scale(1.03);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.spot_photo02{
	margin:0 auto;
	position: relative;
}
.spot_photo02::before,
.spot_photo02::after {
	content: "";
	width: 100px;
	height: 100px;
	position: absolute;
}
.spot_photo02::before {
	border-top: 2px solid var(--main-color);
	border-left: 2px solid var(--accent-color1);
	top:-10px;
	left:-10px;
}
.spot_photo02::after {
	border-right: 2px solid var(--main-color);
	border-bottom: 2px solid var(--accent-color1);
	bottom:-10px;
	right:-10px;
}


.spot_photo03 img{
	border-top-left-radius: 500px;
	border-bottom-right-radius: 500px;
}
@media only screen and (max-width: 568px) {
	.spot_photo03 img{
		border-top-left-radius: 200px;
		border-bottom-right-radius: 200px;
	}
}

.entry_bk{
	padding: 0;
	position: relative;
	z-index: 1;
}
.nav_bk{
	background-color: var(--main-color);
}

/*パンくず*/
.sec_pankuzu{
	padding: 0 0 15px 0;
	background-color: var(--base-color);
	position: relative;
	z-index: 1;
}

/* タグ */
.kakomi01 span {
	padding: 3px 7px 2px 7px;
	margin: 0px 0px 5px;
	background-color: var(--main-color);
	border: 1px solid #eee;
	color:#FFF;
	border-radius: 5px;
	text-align: center;
	display: inline-block;
	font-size: clamp(12px, 1.3vw, 12px);
}
.kakomi02{
	padding: 3px 20px 2px 20px;
	margin: 4px 1px 10px;
	background-color: #e7838a;
	border: 1px solid #aeaeae;
	border-radius: 10px;
	text-align: center;
	display: inline-block;
	font-size: clamp(14px, 1.3vw, 14px);
}

/* タグ（左右が揃う）  */
.kakomi-tag01 {
	display: flex;
	flex-wrap: wrap; /* 子要素を折り返す */
	gap: 10px;
	width: 100%;
	justify-content: space-between; /* 左右のボックスを揃える */
}
.kakomi-tag01 p {
	background-color: var(--main-color);
	padding: 5px;
	font-size: clamp(14px, 1.3vw, 14px);
	font-family: Arial, sans-serif;
	flex-grow: 1; /* ボックスのサイズを自動調整 */
	min-width: 150px; /* ボックスの最小幅を設定 */
	box-sizing: border-box;
	text-align: center; /* 水平方向の中央揃え */
}
.kakomi-tag01 .end{		/* などを末尾につけたい場合に */
	background-color:transparent;
	padding: 5px;
	font-size: clamp(14px, 1.3vw, 14px);
	font-family: Arial, sans-serif;
	width: 20px;
	min-width: 40px; /* ボックスの最小幅を設定 */
	box-sizing: border-box;
	text-align: right; /* 水平方向の中央揃え */
}
/*-----------------------------------------------*/
/*よく使うデザイン*/
/*-----------------------------------------------*/
/*印刷には表示されない*/
@media print{
	.print_none{
		display: none;
	}
}
/*調整*/
.adjus{
	padding-top: 15px;
}
/*テキストcenter→justify*/
.tx-ctj {
	margin: 0px auto;
	text-align: center;
}
@media (max-width: 968px) {
	.tx-ctj {
		text-align: justify;
	}
}
/*印刷時*/
@media print{
	.tx-ctj {
		margin: 0px auto;
		text-align: center;
	}
}
/*文字シャドウ*/
.tx-sha {
	text-shadow: #000 1px 0 10px;
}
/**/
.kukuri{
	border: 1px solid #aaa;
	padding: 20px 20px;
	margin: 25px auto;
	box-sizing: border-box;
	outline: 1px solid var(--accent-color2);
	outline-offset: -0.4rem;
}
/**/
.kukuri p{
	font-size: clamp(15px, 1.5vw, 16px);
	line-height: 1.4;
}
/**/
.kukuri2{
	border: 1px dotted #8e8e8e;
	padding: 15px 20px;
	margin: 15px auto;
}
/**/
.kukuri2 p{
	font-size: clamp(13px, 1.3vw, 15px);
	line-height: 1.4;
}
.kbg01{
	background-color: rgba(255, 255, 255, 0.8);
}
.kbg02{
	background-image: url("../img/bg_04.png");
	background-repeat: no-repeat;
	background-position: top;
	background-size: cover;
}
/**/
.lead-copy {
	text-align: center;
	font-size: clamp(20px, 2vw, 30px);
	font-weight: 700;
	background: linear-gradient(to right, #063286, #3bb084);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin: 1.5rem auto;
	/*max-width: 720px;*/
	line-height: 1.4;
}
/*サブキャッチ補足文章*/
.lead-p {
	text-align: center;
	color: var(--accent-color2);
	font-size: clamp(15px, 1.6vw, 18px);
	font-weight: 700;
	margin: 5px auto 25px auto;
	line-height: 1.4;
	font-family: 'Noto Serif JP', serif;
}
@media (max-width: 568px) {
	.lead-p {
		text-align: justify;
	}
}
/*======= 共通 ======*/
/*header*/
.mr20{
	margin-right: 20px;
}
@media only screen and (max-width: 1024px) {
	.mr20{
		margin-right: 0px;
	}
}
/*印刷用*/
@media print{
	.mr20{
		margin-right: 20px;
	}
}







/*======= TOPページ ======*/
/*ご挨拶*/
.greeting {
	padding: var(--v-space3) 0 clamp(20px, 5vw, 50px) 0;
	background-color: var(--base-color);
}
/*冒頭一文*/
p.grp{
	font-size: clamp(13px, 1.3vw, 14px);
	line-height: 1.3;
	margin: 0 auto 10px auto;
	width: fit-content;
	color: #666;
	font-family: 'Noto Serif JP', serif;
}

/**/
.each-page__heading01 {
	position: relative; /* 親要素を相対位置に設定 */
	margin-top: 50px;
}

.each-page__heading01 h2 {
	/*width: fit-content;*/
	font-size: clamp(25px,2.7vw,27px);
	font-family: 'Noto Serif JP', serif;
	text-align: center;
	line-height: 1.2;
	font-style: italic;
	font-weight: 400;
	position: relative;
	z-index: 1;
	opacity: 0.9;
	margin-bottom: 15px;
}
.each-page__heading01 h2::after {
	content: "";
	width: 3em;
	height: .2em;
	border-radius: .1em;
	background-color: #425c82;
	position: absolute;
	bottom: -15px;
	left: calc(50% - 3em / 2);
}
.each-page__heading01 h2.disno::after{
	display: none;/*下線無くしたい場合*/
}
.each-page__heading01 span {
	position: absolute;
	font-family: "WindSong", serif;
	margin: 0 auto;
	font-size: clamp(50px,10vw,70px);
	text-align: center;
	top: -1.1em;

	transform-origin: center top;
	pointer-events: none;
	white-space: nowrap;
	text-transform: lowercase;
	font-weight: normal;
	color: #8ba867;
	opacity: 0.3;
	/*transform: rotate(-10deg);*/

	left: 50%;/*中央配置*/
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}


/**/
p.grp2{
	font-size: clamp(14px, 1.5vw, 17px);
	line-height: 1.7;
	font-family: 'Noto Serif JP', serif;
	font-weight: 400 !important;
	margin-top: 1em;
	/*-webkit-text-stroke: 3px #fff;
	text-stroke: 3px #fff;
	paint-order: stroke;*/
}

/*TELバナー*/
.tel_bnr {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
}
/*
.tel_bnr .img {
	flex: 1 1 calc((100% - 32px) / 3);
	max-width: calc((100% - 32px) / 3);
}
*/
.tel_bnr .img {
	flex: 1 1 calc((100% - 16px) / 2);
	max-width: calc((100% - 16px) / 2);
}
.tel_bnr img {
	width: 100%;
	height: auto;
	display: block;
}

/* 968px以下 → 2つ＋1つ折り返し */
/*
@media (max-width: 968px) {
	.tel_bnr .img {
		flex: 1 1 calc((100% - 16px) / 2);
		max-width: calc((100% - 16px) / 2);
	}
}
*/
/* 568px以下 → 1列3段 */
@media (max-width: 668px) {
	.tel_bnr .img {
		flex: 1 1 100%;
		max-width: 100%;
	}
}
/*印刷時の為*/
@media print{
	.tel_bnr .img {
		flex: 1 1 calc((100% - 16px) / 2);
		max-width: calc((100% - 16px) / 2);
	}
}

/**/
.sec1 {
	padding: clamp(20px, 5vw, 50px) 0 var(--v-space3) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}

/**/
p.grp3{
	font-size: clamp(14px, 1.5vw, 15px);
	line-height: 1.6;
	font-family: 'Noto Serif JP', serif;
	font-weight: 400;
	-webkit-text-stroke: 3px #fff;
	text-stroke: 3px #fff;
	paint-order: stroke;
}
/**/
.general-item-container5 {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 10px;
	margin: 20px 0;
}
@media (max-width: 768px) {
	.general-item-container5 {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (max-width: 568px) {
	.general-item-container5 {
		grid-template-columns: repeat(2, 1fr);
	}
}
/*印刷時の為*/
@media print{
	.general-item-container5 {
		display: grid;
		grid-template-columns: repeat(5, 1fr);
		gap: 10px;
		margin: 20px 0;
	}
}


/*各ページ遷移バナー*/
.topbnr_sec{
	padding: 50px 0 50px 0;
	position: relative;
	z-index: 1;
	background-color: #fdfffa;
	background-size: 6px 6px;
	background-image: repeating-linear-gradient(0deg, #e9f5d6, #e9f5d6 1px, #fdfffa 1px, #fdfffa);
}

.topbnr_sec-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 10px;
	grid-row-gap: 10px;
}

@media only screen and (max-width: 568px) {
	.topbnr_sec-container {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: 2fr;
		grid-column-gap: 10px;
		grid-row-gap: 10px;
	}
}







/*======= 取扱商品ページ ======*/
/**/
.products-sec1 {
	padding: var(--v-space3) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
/*商品紹介*/
.products-sec2 {
	padding: var(--v-space2) 0;
	background-color: #c5dee34a;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
/*7つだけど４つにした*/
.general-item-container7 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
	margin: 20px 0;
}
@media (max-width: 768px) {
	.general-item-container7 {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (max-width: 568px) {
	.general-item-container7 {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 468px) {
	.general-item-container7 {
		grid-template-columns: repeat(1, 1fr);
	}
}
/*印刷用*/
@media print{
	.general-item-container7 {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 10px;
		margin: 20px 0;
	}
}
/**/
.general-item7{
	background-color: #ffffff7d;
	border-radius: 7px;
	padding: 10px;
}
.general-item7 img{
	width: 70%;
	margin: 0 auto;
}
@media only screen and (max-width: 768px) {
	.general-item7 img{
		width: 60%;
	}
}
.general-item7 h4{
	font-family: 'Noto Serif JP', serif;
	font-size: clamp(16px, 1.7vw, 19px);
	line-height: 1.1;
	text-align: center;
	margin: 10px auto;
	border-top: 1px solid #7D9D86;
	border-bottom: 1px solid #7D9D86;
	padding: 4px 0 5px 0;
}
.general-item7 p{
	font-size: clamp(14px, 1.5vw, 15px);
	line-height: 1.4;
	text-align: justify;
	padding: 5px 0;
}

/*関連サービス*/
.products-sec3 {
	padding: var(--v-space2) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
/* トピックスの全体デザイン */
.topics-container {
	box-sizing: border-box;
	width: 100%;
	margin: 0 auto;
	box-sizing: border-box;
	max-width: 1200px; /* 最大幅 */
	display: flex;
	justify-content: center;
}
/* トピックスボックス */
.topics-box {
	box-sizing: border-box;
	border-radius: 7px;
	padding: 35px 30px 30px 30px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease-in-out;
	width: 100%;
	max-width: 1000px;
	background: #ffffff26 url("../img/bg_03.png") left bottom / cover no-repeat;
}
.topics-box:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
	.topics-box {
		padding: 35px 20px 30px 20px;
	}
}
/*印刷用*/
@media print{
	.topics-box {
		box-sizing: border-box;
		border-radius: 7px;
		padding: 35px 30px 30px 30px;
		box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
		transition: all 0.3s ease-in-out;
		width: 100%;
		max-width: 1000px;
		background: #ffffff26 url("../img/bg_03.png") left bottom / cover no-repeat;
	}
}

/* タイトル */
.topics-title {
	font-family: 'Noto Serif JP', serif;
	font-size: clamp(21px, 2vw, 27px);
	margin-bottom: 15px;
	font-weight: 600;
	color: #8c68a6;
	line-height: 1.3;
	/*text-transform: uppercase;*/
	letter-spacing: 1px;
	text-align: center;
}

/*リスト 今回用*/
ul.list099{
	font-family: 'Noto Serif JP', serif;
	list-style: disc;
	/*list-style-position: inside;*/
	/*margin-left: 25px;*/
	line-height: 1.2;
	margin: 1em auto;
	max-width: 700px
}
ul.list099 li{
	font-size: clamp(16px, 1.8vw, 19px);
	/*border-bottom: 1px dotted #999;*/
	/*text-indent: -1em;
	padding-left: 1em;*/
	padding-top: 5px;
	padding-bottom: 5px;
	margin-left: 20px;
}
ul.list099 li::marker{
	font-size: 110%;
	font-weight: bold;
	color: var(--accent-color2);
}
@media (max-width: 768px) {
	ul.list099{
		max-width: 99%
	}
}
/*印刷用*/
@media print{
	ul.list099{
		font-family: 'Noto Serif JP', serif;
		list-style: disc;
		list-style-position: inside;
		/*margin-left: 25px;*/
		line-height: 1.2;
		margin: 1em auto;
		max-width: 700px
	}
}



/*手元供養のご提案*/
.products-sec4 {
	padding: var(--v-space2) 0 var(--v-space) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
	background-image: url("../img/bg_04.png");
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: cover;
}

/*外部サイトリンクボタン*/
.btn099 a {
	background-color: #d2c1df3b;
	border: 1px var(--accent-color2) solid;
	font-size: clamp(13px, 1.4vw, 16px);
}
.btn099 a:hover {
	background-color: #75568f;
}
.btn099 a:hover::before {
	border: 1px solid #f2f2f2;
}
.btn099 a:hover::after {
	border-color: #f2f2f2 #f2f2f2 transparent transparent;
}





/*======= よくある質問ページ ======*/
/*よくある質問*/
.faq-sec {
	padding: var(--v-space3) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
	background-image: url("../img/bg_01.png");
	background-position: top center;
	background-repeat: repeat;
}

/**/
div.faq-in{
	padding: 10px 0 0 0;
	font-family: 'Noto Serif JP', serif;
}
/*枠付きデザイン*/

.onecours{
	background-color: rgba(255, 255, 255, 0.85);
	padding: 12px 25px 20px 25px;
	/*box-shadow: 3px 5px 5px 0px rgba(0, 0, 0, 0.15);*/
	border-radius: 7px;
	margin: 25px 0;
}
.onecours:first-child{
	margin: 0px;
}

/**/
div.faq-in p {
	margin-top: 5px;
	line-height: 1.4;
	font-size: clamp(15px, 1.6vw, 17px);
	text-align: justify;
	text-indent: -1.35em;
	padding-left: 1.35em;
	display: block;
	color: #555;
}
div.faq-in p.b {
	font-weight: 600;
	line-height: 1.3;
	padding-bottom: 7px;
	border-bottom: 1px dotted #7b7b7b;
	color: #222;
}
div.faq-in p::first-letter {
	color: #a89447;
	font-weight: 600;
	font-size: 120%;
}
div.faq-in p.b::first-letter {
	color: var(--main-color);
}





/*======= 店舗案内 info ======*/
.info-sec1 {
	padding: var(--v-space3) 0 var(--v-space) 0;
	position: relative;
	z-index: 1;
	background-color: #fff;
	background-image: url(../img/bg_02.png);
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: cover;
}
/**/
.bg_b {
	background: #e6ece28f;
	padding: 50px;
	margin: 0 7%;
	outline: 2px solid #fff;
	outline-offset: -0.8rem;
}
@media (max-width: 568px) {
	.bg_b {
		padding: 25px;
		margin: 0;
	}
}
/* 概要部分のテーブル */
table.inftb{
	box-sizing: border-box;
	font-family: 'Noto Serif JP', serif;
}
table.inftb tr {
	box-sizing: border-box;
}
table.inftb tr td:nth-of-type(1) {
	font-weight: 600;
	border-bottom: 1px solid #b9b9b9;
	padding: 15px 13px 15px 41px;
	width: 13em;
	box-sizing: border-box;
	background: url(../img/icon01.png) no-repeat 7px center;
	background-size: 27px;
	font-size: clamp(17px, 1.8vw, 19px);
	line-height: 1.2;
}
table.inftb tr td:nth-of-type(2)  {
	border-bottom: 1px solid #b9b9b9;
	padding: 15px 13px;
	box-sizing: border-box;
	width: calc((100% - 15em) / 1);
	font-size: clamp(15px, 1.6vw, 18px);
}

@media screen and (max-width: 768px) {
	table.inftb tr td:nth-of-type(1) {
		display: block;
		padding: 10px 5px 10px 41px;
		width: 100%;
		border-bottom: 1px solid rgba(255,255,255,0);
		background-color: rgba(255, 255, 255, 0.8);
	}
	table.inftb tr td:nth-of-type(2)  {
		display: block;
		border-bottom: none;
		padding: 10px 5px 15px 5px;
		width: 100%;
		text-align: justify;
	}
}
/*印刷用*/
@media print{
	table.inftb tr td:nth-of-type(1) {
		font-weight: 600;
		border-bottom: 1px solid #d7d7d7;
		padding: 15px 13px 15px 41px;
		width: 13em;
		box-sizing: border-box;
		background: url(../img/icon01.png) no-repeat 7px center;
		background-size: 27px;
		font-size: clamp(17px, 1.8vw, 18px);
		line-height: 1.2;
	}
	table.inftb tr td:nth-of-type(2)  {
		border-bottom: 1px solid #d7d7d7;
		padding: 15px 13px;
		box-sizing: border-box;
		width: calc((100% - 15em) / 1);
		font-size: clamp(15px, 1.6vw, 17px);
	}
}

/*アクセス*/
.access_sec1 {
	padding: var(--v-space3) 0 50px 0;
	position: relative;
	z-index: 1;
	margin-bottom: 0px;
	background-color: #e9f5d6;
	background-size: 6px 6px;
	background-image: repeating-linear-gradient(0deg, #e9f5d6, #e9f5d6 1px, #fdfffa 1px, #fdfffa);
}
/* アクセス部分のテーブル */
table.actab {
	font-family: 'Noto Serif JP', serif;
	box-sizing: border-box;
}
table.actab tr {
	box-sizing: border-box;
}
table.actab tr td:nth-of-type(1) {
	font-size: clamp(19px, 1.9vw, 20px);
	line-height: 1.3;
	font-weight: bold;
	border-bottom: 1px dashed #999;
	padding: 7px 5px;
	width: 9em;
	color: #000;
	box-sizing: border-box;
	vertical-align: middle;
}
table.actab tr td:nth-of-type(2) {
	border-bottom: 1px dashed #999;
	padding: 7px 5px;
	box-sizing: border-box;
}
@media screen and (max-width: 568px) {
	table.actab tr td:nth-of-type(1) {
		display: block;
		padding: 5px 5px;
		width: 100%;
		background-color: #becc9f3d;
	}
	table.actab tr td:nth-of-type(2) {
		display: block;
		padding: 8px 5px;
		width: 99%;
	}
}
/*アイコン*/
.f-awesome_icon01 {
	font-size: 1.2em;
	color: var(--main-color);
	margin: 0 10px 0 0;
	display: inline-block;
}
.f-awesome_icon02 {
	font-size: 1.2em;
	color: var(--main-color);
	margin: 0 8px 0 -3px;
	display: inline-block;
}



