@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(22px, 2vw, 27px);
	line-height: 1.2em;
	font-weight: 600;
	text-align: center;
	color: var(--main-color);
	font-family: 'Noto Serif JP', serif;
}
.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: 3%;
	background-color: #999;
	margin: 1.1% auto;
}
@media only screen and (max-width: 767px) {
	.line {
		width: 1px;
		height: auto;
		padding-top: 8%;
		background-color: #999;
		margin: 1.3% 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;
}
/**/
.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: #681a38cc;
	padding: 5px;
	font-size: clamp(14px, 1.3vw, 16px);
	font-family: Arial, sans-serif;
	flex-grow: 1; /* ボックスのサイズを自動調整 */
	min-width: 150px; /* ボックスの最小幅を設定 */
	box-sizing: border-box;
	text-align: center; /* 水平方向の中央揃え */
	color: #fff;
	font-family: 'Noto Serif JP', serif;
}
.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; /* 水平方向の中央揃え */
	font-family: 'Noto Serif JP', serif;
}
/*-----------------------------------------------*/
/*よく使うデザイン*/
/*-----------------------------------------------*/
/*印刷には表示されない*/
@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 15px;
	margin: 10px auto;
	box-sizing: border-box;
	outline: 1px solid var(--accent-color2);
	outline-offset: -0.4rem;
}
/**/
.kukuri p{
	font-family: 'Noto Serif JP', serif;
	font-size: clamp(14px, 1.4vw, 16px);
	line-height: 1.4;
}
/**/
.kukuri2{
	font-family: 'Noto Serif JP', serif;
	color: #fff;
	border: 1px dotted #8e8e8e;
	padding: 15px 20px;
	margin: 20px 4%;
}
/**/
.kukuri2 p{
	font-size: clamp(13px, 1.3vw, 15px);
	line-height: 1.4;
}
.kbg01{
	background-color: rgba(255, 255, 255, 0.8);
}
.kbg02{
	background-color: #673568;
	background-image: url("../img/bg_01.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(17px, 1.8vw, 19px);
	font-weight: 700;
	margin: 5px auto 20px 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;
	}
}







/*=======  ======*/
/*ご挨拶*/
.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;
}
/*小英文字*/
p.sentxt{
	font-size: clamp(11px, 1.2vw, 12px);
	line-height: 1.3;
	margin: 0 auto 10px auto;
	color: #444;
	font-family: 'Noto Serif JP', serif;
	letter-spacing: 0.25em;
	text-align: center;
}
/**/
p.grp2{
	font-size: clamp(14px, 1.5vw, 17px);
	line-height: 1.7;
	font-family: 'Noto Serif JP', serif;
	font-weight: 400;
	margin-top: 0.7em;
	text-align: justify;
	/*-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);
	}
}




/*着物クリーニング cleaning*/
.sec1 {
	padding: var(--v-space3) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
/**/
p.grp3{
	font-size: clamp(15px, 1.6vw, 17px);
	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;
}



/*画面半分体裁デザインのところ*/
/**/
.owner_sec{
	padding: 0;
	background-color: var(--main-color);
}
/*半分*/
.owner_sec-container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 0px;
	grid-row-gap: 0px;
	align-items: center;
}
/*左カラム　画像用*/
.owner_sec-container-item1 {
	grid-area: 1 / 1 / 2 / 2;
	background-size: cover;
	background-repeat: no-repeat;
	height: 100%;
}
/*右カラム　文字用*/
.owner_sec-container-item2 {
	grid-area: 1 / 2 / 2 / 3;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 50px 70px;
}

/*可変対応*/
@media only screen and (max-width: 868px) {
	.owner_sec-container {
		display: grid;
		grid-template-columns: 1fr;
		grid-template-rows: repeat(1, 400px 1fr);
		grid-column-gap: 0px;
		grid-row-gap: 0px;
	}
	.owner_sec-container-item1 { grid-area: 1 / 1 / 2 / 2; min-height: 400px; }
	.owner_sec-container-item2 { grid-area: 2 / 1 / 3 / 2; padding: 50px 30px; }
}

/*画像の選定*/
.owner_sec-bg01{
	background-image: url(../img/owner_sec_img01.jpg);
	background-position: center;
}

.owner_sec-bg02{
	background-image: url(../img/bg_01.png);
	background-position: center left;
}


/**/
.box-h {
	position: relative;
	padding: 0.2em 0.55em 0.35em 0.55em;
	margin: 15px 0;
	top: 0;
	background: rgba(0, 0, 0, 0.2);
}
.box-h:before{ 
	position: absolute;
	top: 0;
	left: 0;
	content:'';
	width: 10px;
	height: 100%;
	display: inline-block;
	box-sizing: border-box;
	border-left: dotted 2px #8685e2;
	border-top: dotted 2px #8685e2;
	border-bottom: dotted 2px #8685e2;
}
.box-h:after{ 
	position: absolute;
	top: 0;
	right: 0;
	content:'';
	width: 10px;
	height: 100%;
	display: inline-block;
	box-sizing: border-box;
	border-right: dotted 2px #8685e2;
	border-top: dotted 2px #8685e2;
	border-bottom: dotted 2px #8685e2;
}

.box-h p{
	color: #fff;
	font-size: clamp(16px, 1.7vw, 18px);
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
}
p.exp-p3 {
	font-size: clamp(12px, 1.5vw, 14px);
	text-align: justify;
	line-height: 1.7;
	margin: 0 0 15px 0;
	color: #eee;
}

/**/
.sec2 {
	padding: var(--v-space3) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}

/*動画*/
.vid_contents {
	/*width: 250px;*/
	width: 100%;
	height: auto;
	text-align: center;
	margin: auto;
	display: block;
	border-radius: 8px;
}

/* instaトピックス */
.topics-container2 {
	/*width: 50%;*//*全体幅じゃないときはいらない*/
	margin: 20px auto;
	padding: 0;
	box-sizing: border-box;
	max-width: 500px; /* 最大幅 */
	display: flex;
	justify-content: center;
}
.topics-box2 {
	background-color: #ffffffe5;
	border-radius: 10px;
	padding: 15px;
	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;
		padding: 10px;
	}
}
/*印刷時の為*/
@media print{
	.topics-container2 {
		width: 50%;
		margin: 20px auto;
		padding: 0;
		box-sizing: border-box;
		max-width: 500px; /* 最大幅 */
		display: flex;
		justify-content: center;
	}
	.topics-box2 {
		background-color: #ffffffe5;
		border-radius: 10px;
		padding: 15px;
		box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
		transition: all 0.3s ease-in-out;
		width: 100%;
	}
}


/*取扱い品目・サービス services*/
.sec3{
	padding: var(--v-space) 0;
}
/* 印刷時は固定背景を出力する */
@media print{
	.sec3{
		background-image: url(../img/bg_04.jpg);
	}
}
/**/
.each-page__heading01 {
	position: relative; /* 親要素を相対位置に設定 */
	margin-top: 50px;
}

.each-page__heading01 h2 {
	color: #fff;
	font-size: clamp(25px,2.7vw,29px);
	font-family: 'Noto Serif JP', serif;
	text-align: center;
	line-height: 1.2;
	font-weight: 400;
	position: relative;
	z-index: 1;
	opacity: 0.9;
	margin-bottom: 5px;
	text-shadow: #000 1px 0 10px;
}
.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.5;
	/*transform: rotate(-10deg);*/
	text-shadow: #000 1px 0 10px;
	left: 50%;/*中央配置*/
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}
/*テーブル*/
table.tbl03 {
	margin: 10px 0 5px 0;
	color: #fff;
	box-sizing: border-box;
	font-family: 'Noto Serif JP', serif;
}
table.tbl03 tr th {
	text-align: left;
	font-size: clamp(15px, 1.6vw, 17px);
	line-height: 1.4;
	padding: 7px;
	border-bottom: 1px solid #4d4d4d;
	width: 10em;
	background: rgba(0, 0, 0, 0.4);
}
table.tbl03 tr td {
	text-align: left;
	font-size: clamp(14px, 1.6vw, 16px);
	line-height: 1.4;
	padding: 7px;
	border-bottom: 1px solid #4d4d4d;
	background: rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
	table.tbl03 tr th {
		width: 8em;
	}
}


/*---項目追加20250616-------------------------*/
/*着物の仕立て、帯・小物類の販売*/
.sec5 {
	padding: var(--v-space) 0 clamp(120px, 9vw, 170px) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
	background-image: url(../img/bg_07.png);
	background-repeat: no-repeat;
	background-position: bottom;
	background-size: cover;
}


/*catchphrase*/
.catchphrase{
	padding: 0 0 50px 0;
	background-image: url(../img/bg_03.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
/**/
.wrap {
	text-align: center;
}
.vertical {
	writing-mode: vertical-rl;
	display: inline-block;
	text-align: initial;
}
.vertical h2 {
	margin: 0;
	color: #575057;
}








/*------------------------------------------------*/


/*ご料金*/
.sec4 {
	padding: var(--v-space) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}

/*テーブル価格入*/
table.ttypeA {
	margin: 10px 0;
	box-sizing: border-box;
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
}
table.ttypeA tr th {
	text-align: left;
	font-size: clamp(17px, 1.6vw, 22px);
	line-height: 1.4;
	/*padding: 10px 5px;*/
	border-bottom: 1px solid #8c7257;
	box-sizing: border-box;

	padding: 10px 5px 10px 35px;
	background: url(../img/icon02.png) no-repeat 3px center;
	background-size: auto;
	background-size: 30px;
}
table.ttypeA tr td {
	text-align: right;
	font-size: clamp(16px, 1.6vw, 20px);
	line-height: 1.4;
	padding: 10px 5px;
	border-bottom: 1px solid #8c7257;
	box-sizing: border-box;
}
table.ttypeA tr td:nth-of-type(1) {
	width: 5em;
	font-size: clamp(20px, 1.9vw, 25px);/*数字*/
	color: var(--main-color);
}
table.ttypeA tr td:nth-of-type(2) {
	width: 1em;
	font-size: clamp(20px, 1.9vw, 25px);/*～*/
	color: var(--main-color);
}
/**/
.indent99{
	text-indent: -0.55em;
	padding-left: 1.15em;
}





/*------------------------------------------------*/
/*セクションの間イメージ画像*/
.sec-adimg{
	padding: 0px;
	background-color: var(--base-color);
}
.sec-adimg-container {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 5px;
	grid-row-gap: 0px;
}
.sec-adimg-container-item1 { grid-area: 1 / 1 / 2 / 2; }
.sec-adimg-container-item2 { grid-area: 1 / 2 / 2 / 3; }
.sec-adimg-container-item3 { grid-area: 1 / 3 / 2 / 4; }
.sec-adimg-container-item4 { grid-area: 1 / 4 / 2 / 5; }
.sec-adimg-container-item5 { grid-area: 1 / 5 / 2 / 6; }

@media (max-width: 568px) {
	.sec-adimg-container {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		grid-template-rows: 1fr;
		grid-column-gap: 5px;
		grid-row-gap: 0px;
	}
	
	.sec-adimg-container-item1 { display: none; }
	.sec-adimg-container-item2 { grid-area: 1 / 1 / 2 / 2; }
	.sec-adimg-container-item3 { grid-area: 1 / 2 / 2 / 3; }
	.sec-adimg-container-item4 { grid-area: 1 / 3 / 2 / 4; }
	.sec-adimg-container-item5 { display: none; }
}
/*------------------------------------------------*/

/*よくある質問*/
.faq-sec {
	padding: var(--v-space) 0;
	background-color: #f9f9f9;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
	/*background-image: url(../img/bg_03.png);
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: cover;*/
}

/**/
div.faq-in{
	padding: 10px 0 0 0;
	font-family: 'Noto Serif JP', serif;
}
/*枠付きデザイン*/

.onecours{
	background-color: rgba(255, 255, 255, 0.75);
	padding: 12px 25px 20px 25px;
	box-shadow: 3px 5px 5px 0px rgba(191, 191, 191, 0.15);
	border-radius: 7px;
	margin: 15px 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-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: rgba(255, 255, 255, 0.8);
	padding: 40px;
	border: 1px solid #e1e1e1;
}
@media (max-width: 568px) {
	.bg_b {
		padding: 20px;
		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 dashed #b0b0b0;
	padding: 15px 13px 15px 41px;
	width: 9em;
	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 dashed #b0b0b0;
	padding: 15px 13px;
	box-sizing: border-box;
	width: calc((100% - 9em) / 1);
	font-size: clamp(15px, 1.6vw, 18px);
}

@media screen and (max-width: 568px) {
	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(244, 244, 244, 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{

}

/*アクセス*/
.access_sec1 {
	padding: var(--v-space) 0 50px 0;
	position: relative;
	z-index: 1;
	margin-bottom: 0px;
	background-color: #fff;
}
/* アクセス部分のテーブル */
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) {
	line-height: 1.3;
	font-weight: bold;
	border-bottom: 1px dashed #999;
	padding: 7px 5px 5px 5px;
	width: 9em;
	color: #000;
	box-sizing: border-box;
}
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 3px 5px;
		width: 100%;
		background-color: #cccccc3d;
	}
	table.actab tr td:nth-of-type(2) {
		display: block;
		padding: 8px 5px;
		width: 99%;
	}
}
/*アイコン*/
.f-awesome_icon01 {
	font-size: 1.2em;
	color: #828282;
	margin: 0 10px 7px 5px;
	display: inline-block;
	vertical-align: middle;
}




/*--------------------------------------------------------*/

/*blog_sec1*/
.blog_sec1 {
	padding: clamp(30px, 4vw, 50px) 0 var(--v-space3) 0;
	background-color: #fff;
	background-image: url("../img/bg_05.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}



