@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, 30px);
	line-height: 1em;
	font-weight: 700;
	text-align: center;
	font-family: "Zen Kaku Gothic New", serif;
	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%;
	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: "Zen Kaku Gothic New", 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;
	font-weight: 400;
}
.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: "Zen Kaku Gothic New", 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_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: #fff;
	border: 1px solid var(--main-color);
	color: var(--main-color);
	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(--main-color);
	font-size: clamp(15px, 1.6vw, 18px);
	font-weight: 600;
	margin: 5px auto 25px auto;
	line-height: 1.4;
	font-family: "Zen Kaku Gothic New", 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;
	}
}

/*今回*/
.f-fzg{
	font-family: "Zen Kaku Gothic New", serif;
}


/**/
.each-page__heading01 {
	position: relative; /* 親要素を相対位置に設定 */
	margin-top: clamp(35px,3vw,50px);
	margin-bottom: 30px;
}

.each-page__heading01 h2 {
	/*width: fit-content;*/
	font-size: clamp(25px,2.7vw,30px);
	font-family: "Zen Kaku Gothic New", serif;
	text-align: center;
	line-height: 1.2;
	font-weight: 400;
	position: relative;
	z-index: 1;
	opacity: 0.9;
	margin-bottom: 15px;
}
.each-page__heading01 h2::after {
	content: "";
	width: 3em;
	height: 5px;
	background: linear-gradient(to right, #1B4875, #429DA8, #A9D3D6);
	/*background-color: var(--main-color);*/
	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(25px,5vw,60px);
	text-align: center;
	top: -1.1em;

	transform-origin: center top;
	pointer-events: none;
	white-space: nowrap;
	/*text-transform: lowercase;*/
	font-weight: normal;
	color: #66B4BD;
	opacity: 0.4;
	/*transform: rotate(-10deg);*/

	left: 50%;/*中央配置*/
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}




/*======= TOPページ ======*/
/*ご挨拶*/
.greeting {
	padding: var(--v-space3) 0;
	background-color: var(--base-color);
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
/*冒頭一文*/
p.grp{
	font-size: clamp(13px, 1.3vw, 14px);
	line-height: 1.3;
	margin: 0 auto 10px auto;
	width: fit-content;
	color: #666;
}
/**/
p.grp2{
	font-size: clamp(14px, 1.5vw, 17px);
	line-height: 1.7;
	font-family: "Zen Kaku Gothic New", serif;
	font-weight: 400 !important;
	margin-top: 1em;
	/*-webkit-text-stroke: 3px #fff;
	text-stroke: 3px #fff;
	paint-order: stroke;*/
}
/**/
.newsbg {
	background: rgba(255, 255, 255, 0.7);
	padding: 20px 40px 20px 40px;
	border: 3px double #A1AFC185;
	border-radius: 8px;
	margin: 30px 0;
}
.news-list {
	list-style: none outside;
	margin: 0;
	padding: 0;
}
.news-list .liitem {
	display: flex;
	flex-wrap: wrap;
	text-decoration: none;
	color: #333;
	border-bottom: 1px dashed #CCC;
	padding: 10px 10px;
	font-family: "Zen Kaku Gothic New", serif;
}
.news-list .liitem .date {
	margin: 0;
	min-width: 120px;
	font-size: 16px;
	color: var(--main-color);
	padding: 0 20px 0 0;
	font-weight: 600;
}
.news-list .liitem .title {
	margin: 0;
	width: 100%;
	font-weight: 600;
}
@media screen and (max-width: 767px) {
	.newsbg {
		padding: 20px;
	}
	.news-list .liitem {
		flex-wrap: wrap;
	}
}
@media screen and (max-width: 767px) {
	.news-list .liitem .date {
		min-width: 100px;
		display: block;
	}
}
/*印刷用*/
@media print{
	.newsbg {
		background: rgba(255, 255, 255, 0.7);
		padding: 20px 40px 20px 40px;
		border: 3px double #A1AFC185;
		border-radius: 8px;
		margin: 30px 0;
	}
	.news-list .liitem {
		display: flex;
		flex-wrap: wrap;
		text-decoration: none;
		color: #333;
		border-bottom: 1px dashed #CCC;
		padding: 10px 10px;
		font-family: "Zen Kaku Gothic New", serif;
	}
	.news-list .liitem .date {
		margin: 0;
		min-width: 120px;
		font-size: 16px;
		color: var(--main-color);
		padding: 0 20px 0 0;
		font-weight: 600;
	}
}


/*各ページ遷移バナー*/
.topbnr_sec-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 20px;
	grid-row-gap: 20px;
	margin: 30px 0;
}
@media only screen and (max-width: 768px) {
	.topbnr_sec-container {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media only screen and (max-width: 568px) {
	.topbnr_sec-container {
		grid-template-columns: repeat(1, 1fr);
	}
}
/*印刷用*/
@media print{
	.topbnr_sec-container {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		grid-template-rows: 1fr;
		grid-column-gap: 20px;
		grid-row-gap: 20px;
		margin: 30px 0;
	}
}

.topbnr_sec-container article{
	padding: 15px;
	border-radius: 8px;
	background-color: #fff;
	box-shadow: 0 8px 18px rgba(121, 121, 121, 0.1);
}



/**/
p.fuz-tit{
	margin: 5px auto 0 auto;
	padding: 5px 10px 0 10px;
	font-family: "Zen Kaku Gothic New", serif;
	font-size: clamp(16px, 1.5vw, 18px);
	font-weight: 500;
	line-height: 1.4;
	text-align: center;
}
p.fuz2{
	margin: 0 auto;
	padding: 5px 10px 10px 10px;

	font-family: "Zen Kaku Gothic New", serif;
	font-size: clamp(13px, 1.5vw, 15px);
	font-weight: 300;
	line-height: 1.4;
}
/**/
.sec1 {
	padding: var(--v-space2) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
	background-image: url(../img/bg_04.png);
	background-repeat: no-repeat;
	background-position: left top;
	background-size: revert;
}
@media only screen and (max-width: 567px) {
	.sec1 {
		padding: var(--v-space2) 0;
		background-color: #fff;
		position: relative; /* sectionの位置を相対的にする*/
		z-index: 1; /* 背景画像より上に表示 */
		background-image: url(../img/bg_04.png);
		background-repeat: no-repeat;
		background-position: left top;
		background-size: 300%;
	}
}
/**/
p.grp3{
	font-size: clamp(14px, 1.5vw, 16px);
	line-height: 1.6;
	font-family: "Zen Kaku Gothic New", serif;
	font-weight: 400;
	-webkit-text-stroke: 3px #fff;
	text-stroke: 3px #fff;
	paint-order: stroke;
	text-align: justify;
}
.ac2-dark{
	color: #958175;
}


/*端まで写真の背景色を突き抜ける装飾*/
/* 左に写真があるとき */
.spot_photo {
	position: relative;
	z-index: 1;
}
.spot_photo::after {
	content: "";
	position: absolute;
	top: 2rem;
	bottom: -1.5rem;
	left: calc(-1 * (100vw - 100%)/2); /* 左端まで */
	right: -1.5rem; /* 常に2rem右に広げる */
	background-color: #d2e6e670;
	/*box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	border-radius: 0 15px 15px 0;*/
	z-index: -1;
}
@media only screen and (max-width: 567px) {
	.spot_photo::after {
		content: "";
		top: 1rem;
		bottom: -1rem;
		right: -1rem; /* 常に2rem右に広げる */
	}
}





/*======= 診療内容ページ ======*/
/*診療内容*/
.services-sec1 {
	padding: var(--v-space3) 0 var(--v-space2) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}

/* ▼ セクションマージン */
.treatment-section {
	margin-top: 70px;
}

/* ▼ 凡例（カテゴリの色説明） */
.legend {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin-bottom: 1.5em;
	font-size: 0.9rem;
	font-family: "Zen Kaku Gothic New", serif;
}
.legend-item {
	padding: 6px 12px 8px 12px;
	border-radius: 4px;
	font-weight: bold;
}

/* ▼ 凡例カラー（濃色バージョン） */
.legend-item.category-prevent {
	background-color: #66B4BD; /* メインカラー */
	color: #fff;
}
.legend-item.category-treatment {
	background-color: #1B4875; /* アクセント濃紺 */
	color: #fff;
}
.legend-item.category-equipment {
	background-color: #8195B1; /* グレーブルー */
	color: #fff;
}
.legend-item.category-support {
	background-color: #BCA79B; /* ピンクベージュ */
	color: #fff;
}
.legend-item.category-other {
	background-color: #A58DCB; /* 薄紫系 */
	color: #fff;
}

/* ▼ カードグリッド */
.treatment-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 30px;
}

/* ▼ カード共通スタイル */
.treatment-card {
	padding: 1em;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	color: #000; /* 全カード共通で黒文字 */
}

/* ▼ カテゴリ別カード背景（淡色バージョン） */
.treatment-card.category-prevent {
	background-color: #66B4BD29; /* 薄いティファニーブルー */
	border: 1px solid #8fc2c8;
}
.treatment-card.category-treatment {
	background-color: #26619b29; /* 薄い濃紺 */
	border: 1px solid #8aafd5;
}
.treatment-card.category-equipment {
	background-color: #e4e8ef; /* 薄いグレーブルー */
	border: 1px solid #bdbdbd;
}
.treatment-card.category-support {
	background-color: #eaddd7a3; /* 薄いピンクベージュ */
	border: 1px solid #d3c0b7;
}
.treatment-card.category-other {
	background-color: #f0e6f9; /* 薄い紫系 */
	border: 1px solid #d8c6e8;
}

/* ▼ ホバーアニメーション */
.treatment-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

/* ▼ テキストデザイン */
.treatment-card h3{
	font-family: "Zen Kaku Gothic New", serif;
	font-size: clamp(13px, 1.4vw, 17px);
	line-height: 1.3;
	text-align: center;
	margin: 5px auto 10px auto;
	border-top: 1px solid var(--accent-color3);
	border-bottom: 1px solid var(--accent-color3);
	padding: 4px 0 5px 0;
	background-color: #ffffffed;
}
.treatment-card p {
	font-family: "Zen Kaku Gothic New", serif;
	font-size: clamp(12px, 1.3vw, 15px);
	line-height: 1.4;
}

/* ▼ レスポンシブ対応 */
@media (max-width: 900px) {
	.treatment-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 600px) {
	.treatment-grid {
		grid-template-columns: 1fr;
	}
	.treatment-card h3{
		font-size: 15px;
	}
}
/*印刷時*/
@media print{
	.treatment-grid {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
		margin-top: 30px;
	}
}


/*診療の流れ*/
.services-sec2 {
	padding: var(--v-space3) 0;
	background-color: #eef6f6d6;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}

/**/
.flow-wrapper {
	max-width: 920px;
	margin: 0 auto;
	padding: 10px;
}

/* 初診 */
.initial-step {
	text-align: center;
	margin-bottom: 10px;
}
/**/
.box {
	/*display: inline-block;*/

	min-width: 100%;
	text-align: center;

	background-color: #fff;
	border-radius: 8px;
	padding: 10px 20px 12px 20px;
	border: 2px solid #ccc;
	font-family: "Zen Kaku Gothic New", serif;
	box-sizing: border-box;
	font-size: clamp(15px, 1.7vw, 20px);
	line-height: 1.2;
	font-weight: 500;
	margin: 0 auto;
	box-shadow: 2px 2px 8px rgba(0,0,0,0.05);
	transition: background 0.3s;
}
.box i {
	margin-right: 8px;
}
.box span{
	font-family: "Zen Kaku Gothic New", serif;
	font-size: clamp(13px, 1.5vw, 15px);
	font-weight: 300;
}

/* カラー分類 */
.box.blue {
	background-color: #66B4BD2B;
	border-color: var(--main-color);
}
.box.blueemp {
	background-color: var(--main-color);
	border-color: var(--main-color);
}
.box.orange {
	background-color: #fff3e5;
	border-color: #f5a623;
}

/* 矢印 */
.arrow-down {
	text-align: center;
	margin: 5px 0;
}
.arrow-down svg {
	width: 24px;
	height: 24px;
	fill: #888;
}

/* 2カラムブロック */
.flow-branches {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}

/* 各カラム（定期・短期） */
.branch {
	flex: 1 1 0%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* 余白調整（項目間） */
.branch .box,
.initial-step .box {
	/*margin-bottom: 10px;*/
}
/**/
.fuz{
	margin: 15px auto;
	padding: 10px 20px 12px 20px;
	/*border: 2px solid #ccc;*/
	border-radius: 8px;
	background-color: #e1e1e1a1;
	font-family: "Zen Kaku Gothic New", serif;
	font-size: clamp(13px, 1.5vw, 15px);
	font-weight: 300;
}


/* レスポンシブ対応を無効化（2カラム固定） */
@media (max-width: 600px) {
	.flow-wrapper {
		padding: 0px;
	}
	.box {
		padding: 10px 5px 12px 5px;
	}
	.fuz{
		padding: 10px 10px 12px 10px;
		text-align: justify;
	}
	.flow-branches {
		flex-direction: row;
		flex-wrap: wrap;
	}
	.branch {
		/*flex: 1 1 50%;*/
		min-width: 0;
	}
}








/*======= 歯のトラブルページ ======*/
/**/
.dental-troubles-sec1 {
	padding: var(--v-space3) 0 clamp(15px, 3vw, 50px) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}

/*これないと矢印の位置ずれます*/
.containercenter{
	position: relative;
	max-width: 400px;
	margin: 30px auto;
}
/*図部分*/
.flow-container {
	display: flex;
	align-items: center;
	/*flex-wrap: wrap;*/
	justify-content: center;
}
.stepsss {
	display: flex;
	flex-direction: column;
	align-items: center; /* ←左右中央に配置するため */
	gap: 10px;
	width: fit-content;
	margin: 0 20px 0 0;
}
/*角丸枠*/
.boxbr {
	background-color: #f0f0f0;
	padding: 12px 16px;
	border-radius: 12px;
	border: 2px solid #ccc;
	font-size: clamp(13px, 1.5vw, 17px);
	width: 100%;
	word-break: break-word;
	text-align: center;
	font-family: "Zen Kaku Gothic New", serif;
	font-weight: 600;
	box-sizing: border-box;
}

.boxbr99 {
	background-color: #737373;
	color: #fff;
	padding: 12px 16px;
	border-radius: 12px;
	border: 2px solid #ccc;
	font-size: clamp(13px, 1.5vw, 17px);
	width: 100%;
	word-break: break-word;
	text-align: center;
	font-family: "Zen Kaku Gothic New", serif;
	font-weight: 600;
	box-sizing: border-box;
}

/*＝真ん中配置*/
.equal-rotated-wrapper {
	width: 100%;                 /* 親幅に対応 */
	display: flex;
	justify-content: center;     /* ←これで左右中央に */
	align-items: center;
	height: 40px;
}

/*＝*/
.equal-rotated {
	position: relative;
	width: 30px; /* 線の長さ（縦になる） */
	height: 20px; /* 線の間隔 */
	transform: rotate(90deg); /* ←＝を縦に見せる */
}

.equal-rotated::before,
.equal-rotated::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 7px; /* 線の太さ */
	background-color: #000;
	left: 0%;
	border-radius: 2px;
}
.equal-rotated::before {
	top: 0;
}
.equal-rotated::after {
	bottom: 0;
}

/*↓*/
.arrow2 {
	width: 60px;
	height: 200px;
}
.arrow2 svg {
	width: 100%;
	height: 100%;
	transform: rotate(180deg); /* ↓向き */
	fill: #000;
}
@media (max-width: 768px) {
	.stepsss {
		display: flex;
		flex-direction: column;
		align-items: center; /* ←左右中央に配置するため */
		gap: 10px;
		width: fit-content;
		margin: 0 10px 0 0;
	}
	.arrow2 {
		width: 40px;
		height: auto;
	}
	.arrow2 svg {
		width: 120%;
		height: 100%;
		transform: rotate(180deg); /* ↓向き */
		fill: #000;
	}
}


/*印刷時*/
@media print{
	.stepsss {
		display: flex;
		flex-direction: column;
		align-items: center; /* ←左右中央に配置するため */
		gap: 10px;
		width: fit-content;
		margin: 0 20px 0 0;
	}
	.arrow2 {
		width: 60px;
		height: 200px;
	}
	.arrow2 svg {
		width: 100%;
		height: 100%;
		transform: rotate(180deg); /* ↓向き */
		fill: #000;
	}
}
/*チェック*/
.dental-troubles-sec2 {
	padding: 150px 0 70px 0;
	background-color: #f7f7f7;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
.dental-troubles-sec2::before {
	content: "";
	width: 100%;
	height: 80px;
	background-color: #fff;
	position: absolute;
	top: -1px;
	clip-path: polygon(50% 100%, 100% 0%, 0% 0%);
	box-sizing: border-box;
}

.bg_d {
	background: #fff;
	padding: 50px 50px;
	margin: 20px 0;
	outline: 2px dashed #ccc;
	outline-offset: -0.8rem;
}
@media (max-width: 768px) {
	.bg_d {
		padding: 40px 40px;
	}
}
/**/

ul.dt_sec2_list{
	font-family: "Zen Kaku Gothic New", serif;
	font-size: clamp(14px,1.5vw,16px);
	line-height: 1.9;
	list-style-type: none;
	column-count: 2;		/*リスト横並び数を指定*/
	gap: 3em;
}
.dt_sec2_list li+li {
	margin-top: 10px;
}
.dt_sec2_list li {
	position: relative;
	padding-left: 25px;
	border-bottom: 1px solid #ccc;
	padding-bottom: 3px;
}

.dt_sec2_list li:after {
	content: "";
	position: absolute;
	top: .5em;
	left: 0;
	width: clamp(15px,1.5vw,16px);
	height: clamp(15px,1.5vw,16px);
	border: 1px solid #9c9c9c;
	border-radius: 2px;
}
@media (max-width: 768px) {
	ul.dt_sec2_list{
		column-count: 1;		/*リスト横並び数を指定*/
	}
}
/*印刷時*/
@media print{
	ul.dt_sec2_list{
		font-family: "Zen Kaku Gothic New", serif;
		font-size: clamp(14px,1.5vw,16px);
		line-height: 1.9;
		list-style-type: none;
		column-count: 2;		/*リスト横並び数を指定*/
		gap: 3em;
	}
}


/*主なトラブル*/
.dental-troubles-sec3 {
	padding: var(--v-space) 0 var(--v-space3) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}

/**/
.general-item-container5 {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 15px;
	margin: 20px 0;
}
@media (max-width: 1068px) {
	.general-item-container5 {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (max-width: 768px) {
	.general-item-container5 {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 468px) {
	.general-item-container5 {
		grid-template-columns: repeat(1, 1fr);
	}
}
/*印刷時の為*/
@media print{
	.general-item-container5 {
		display: grid;
		grid-template-columns: repeat(5, 1fr);
		gap: 15px;
		margin: 20px 0;
	}
}

.general-item5 h4{
	font-family: "Zen Kaku Gothic New", serif;
	font-size: clamp(13px, 1.3vw, 16px);
	line-height: 1.1;
	text-align: center;
	margin: 10px 0;
	border-top: 3px double #66B4BD;
	border-bottom: 3px double #66B4BD;
	padding: 4px 0 5px 0;
}
@media only screen and (max-width: 968px) {
	.general-item5 h4{
		font-size: 15px;
	}
}

/**/
.item {
	font-family: "Zen Kaku Gothic New", serif;
	border: 1px solid #ddd;
	box-shadow: 0 2px 6px rgba(0,0,0,0.1);
	border-radius: 6px;
	background-color: #fff;
	padding: 10px 13px;
	display: grid;
	grid-template-columns: 3em 1fr;
	align-items: stretch;
	gap: 10px;
	margin-bottom: 10px;
}
.label {
	display: grid;
	align-items: center;
	font-weight: bold;
	white-space: nowrap;
	background-color: rgba(206, 206, 206, 0.2);
	padding: 5px 7px;
	font-size: clamp(14px, 1.4vw, 15px);
	text-align: center;
	justify-items: center;
}
.content {
	display: flex;
	align-items: center;
	color: #333;
	font-size: clamp(13px, 1.4vw, 14px);
	line-height: 1.4;
}


/* レスポンシブ：568px以下で縦並び＋枠内レイアウトも縦に */
@media only screen and (max-width: 568px) {
	.tb_container .item {
		grid-template-columns: 1fr;
		gap:0px;
		padding: 10px 14px;
	}

	.tb_container .label {
		line-height: 1.6;
		font-size: 14px;
	}

	.tb_container .content {
		font-size: 14px;
	}
}

.lesp2 {
	letter-spacing: -1px;
}


/*下部*/
.sub1 {
	padding: var(--v-space2) 0;
	background-image: url(../img/bg_sub1.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
h3.heading-sub{
	font-size: clamp(25px, 2.5vw, 30px);
	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;
	font-family: "Zen Kaku Gothic New", serif;
	font-weight: 500;
}
h3.heading-sub span{
	color: #ffef00;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
p.subp{
	font-size: clamp(14px, 1.5vw, 15px);
	color: #fff;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.bgfit{
	/*background-color: rgb(0, 51, 102, 0.8);*/
	width: fit-content;
	padding: 20px;
}







/*======= よくある質問ページ ======*/
/*よくある質問*/
.faq-sec {
	padding: var(--v-space3) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
/**/
div.faq-in{
	padding: 0;
	font-family: "Zen Kaku Gothic New", serif;
}
/*枠付きデザイン*/
.onecours{
	background-color: rgba(247, 247, 247, 0.85);
	padding: 20px 30px 20px 25px;
	margin: 25px 0;
	font-size: clamp(15px, 1.6vw, 17px);
}

.faq-item {
	display: grid;
	grid-template-columns: 1.5em 1fr;
	column-gap: 10px;
	row-gap: 10px;
}

.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.5;
	text-align: justify;
}
.faq-question{
	font-weight: bold;
}
hr.faqHr{
	height: 0px;
	border: 1px dashed var(--accent-color2);
	margin: 15px auto;
}






/*======= 医院案内ページ ======*/
/*医院案内*/
.clinic-sec1 {
	padding: var(--v-space3) 0 var(--v-space) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
	background-image: url(../img/bg_02.png);
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: cover;
}

/**/
.bg_b {
	background: #fff9;
	padding: 50px;
	margin: 0 5%;
	outline: 2px solid #fff;
	outline-offset: -0.8rem;
}
@media (max-width: 568px) {
	.bg_b {
		padding: 20px;
		margin: 0;
	}
}
/* 概要部分のテーブル */
table.inftb{
	box-sizing: border-box;
	font-family: "Zen Kaku Gothic New", 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 39px;
	width: 10em;
	box-sizing: border-box;
	background: url(../img/icon01.png) no-repeat 7px center;
	background-size: 27px;
	font-size: clamp(16px, 1.7vw, 18px);
	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% - 10em) / 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(220, 240, 240, 0.7);
	}
	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{
		box-sizing: border-box;
		font-family: "Zen Kaku Gothic New", 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: 10em;
		box-sizing: border-box;
		background: url(../img/icon01.png) no-repeat 7px center;
		background-size: 27px;
		font-size: clamp(16px, 1.7vw, 17px);
		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% - 10em) / 1);
		font-size: clamp(15px, 1.6vw, 17px);
	}
}

/*医院案内ページの診療時間テーブル*/
table.inftb table.fo-tab{
	font-family: "Zen Kaku Gothic New", serif;
	margin: 5px 0 5px 0;
	line-height: 1.1;
	border-bottom: 1px solid #ccc;
	border-right: 1px solid #ccc;
}
table.inftb table.fo-tab tr td {
	padding: 3px 5px 4px 5px;
	border-top: 1px solid #ccc;
	border-left: 1px solid #ccc;
	text-align: center;
	font-size: clamp(12px, 1.5vw, 15px);
	background-color: #fff;
	background-image: none;
	width: 12%;
}
table.inftb table.fo-tab tr td:nth-child(1) {
	padding: 3px 5px 4px 5px;
	border-top: 1px solid #ccc;
	border-left: 1px solid #ccc;
	border-bottom: none;
	text-align: center;
	font-size: clamp(12px, 1.5vw, 15px);
	background-color: #fff;
	width: 16%;
}
table.inftb table.fo-tab tr td:nth-child(2) {
	padding: 3px 5px 4px 5px;
	border-bottom: none;
}
table.inftb table.fo-tab tr:nth-child(1) td {
	background-color: var(--main-color);
	color: #fff;
}

@media screen and (max-width: 768px) {
	table.inftb table.fo-tab{
		width:100%;
		margin: 10px 0 5px 0;
	}
	table.inftb table.fo-tab tr td:nth-of-type(1){
		display: revert;
		width: 16%;
	}
	table.inftb table.fo-tab tr td:nth-of-type(2){
		display: revert;
	}

}


/*galley*/
.clinic-sec-sub {
	padding: var(--v-space3) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
	background-image: url(../img/bg_03.png);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: cover;
}
@media (max-width: 768px) {
	.clinic-sec-sub {
		padding: var(--v-space3) 0;
		background-color: #fff;
		position: relative; /* sectionの位置を相対的にする*/
		z-index: 1; /* 背景画像より上に表示 */
		background-image: url(../img/bg_03sp.png);
		background-repeat: no-repeat;
		background-position: left top;
		background-size: cover;
	}
}
/*印刷時の為*/
@media print{
	.clinic-sec-sub {
		padding: var(--v-space3) 0;
		background-color: #fff;
		position: relative; /* sectionの位置を相対的にする*/
		z-index: 1; /* 背景画像より上に表示 */
		background-image: url(../img/bg_03.png);
		background-repeat: no-repeat;
		background-position: left center;
		background-size: cover;
	}
}

/**/
.general-item-container3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
@media (max-width: 768px) {
	.general-item-container3 {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 568px) {
	.general-item-container3 {
		grid-template-columns: repeat(1, 1fr);
	}
}
/*印刷時の為*/
@media print{
	.general-item-container3 {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
	}
}




/*略歴*/
.clinic-sec2 {
	padding: var(--v-space) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
	background-image: url("../img/bg_01.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}


/**/
.prof-l{
	padding: 30px;
	background-color: #ffffff91;
	outline: 1px solid #ddd;
	outline-offset: -0.5rem;
}
.prof-l p{
	font-size: clamp(20px, 2.3vw, 26px);
	line-height: 1.2;
	font-weight: 600;
	font-family: 'Noto Serif JP', serif;
	letter-spacing: 3px;
	margin-bottom: 20px;
}
@media (max-width: 768px) {
	.prof-l p{
		letter-spacing: 2px;
	}
}
/*印刷用*/
@media print{
	.prof-l p{
		font-size: clamp(20px, 2.3vw, 26px);
		line-height: 1.2;
		font-weight: 600;
		font-family: 'Noto Serif JP', serif;
		letter-spacing: 3px;
		margin-bottom: 20px;
	}
}


/*リスト 下線*/
.prof-l ul{
	list-style: none;
	line-height: 2;
	font-family: "Zen Kaku Gothic New", serif;
}
.prof-l ul li{
	font-size: clamp(14px, 1.4vw, 15px);
	border-bottom: 1px dotted #999;
	padding-top: 5px;
	padding-bottom: 5px;
}







