@charset "utf-8";
/* CSS Document */





/*==================================================================

		#toc　＊　もくじ

==================================================================*/
#toc {
	padding: 40px 50px;
	background: #f9f7f5;
}
#toc ul {
	width: 90%;
	max-width: 1280px;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
#toc ul li {
	display: flex;
	align-items: center;
}
#toc ul li::after {
	content: "/";
	margin: 0 16px;
	color: #ccc;
}
#toc ul li:last-child::after {
	display: none;
}
#toc ul li a {
	font-family: "Shippori Mincho B1", serif;
	color: #222;
	transition: 0.3s ease;
}
#toc ul li a:hover {
	color: var(--color-gold);	
}

@media screen and (max-width: 640px) {
	#toc {
		padding: 20px 5%;
	}
	#toc ul {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		justify-content: unset;
		width: 100%;
		gap: 5px;
	}
	#toc ul li {
		background: #FFF;
		border-radius: 5px;
	}
	#toc ul li::after {
		display: none;
	}
	#toc ul li a {
		display: flex;
		align-items: center;
		padding: 12px 15px;
		font-size: 13px;
		width: 100%;
		box-sizing: border-box;
		line-height: 1.6;
	}
}





/*==================================================================

		.section_01　＊　文字が左・画像が右　＊　画像なしでもOK

==================================================================*/
.section_01 {
	margin-bottom: 90px;
}
.section_01 h3 { 
	margin-bottom: 60px;
}
.section_01 .inner {
	display: flex;
	gap: 60px;
	align-items: flex-start;
	flex-direction: row-reverse;
}
.section_01 figure {
	width: 45%;
}
.section_01 figure img {
	width: 100%;
	height: auto;
}
.section_01 .text {
	flex: 1;
}
@media screen and (max-width: 640px) {
	.section_01 {
		margin-bottom: 60px;
	}
	.section_01 h3 {
		margin-bottom: 40px;
	}
	.section_01 .inner {
		flex-direction: column;
		gap: 30px;
	}
	.section_01 figure {
		width: 100%;
	}
}

/*------------------------------ note ------------------------------*/
.section_01 .note {
	font-size: 14px;
	color: #666;
	margin-top: 16px;
}
.section_01 b {
	color: #0c4299;
	font-weight: 500;
}

/*------------------------------ リスト ------------------------------*/
.section_01 .list li {
	position: relative;
	margin-bottom: 12px;
	padding-left: 20px;
}
.section_01 .list li::before {
	position: absolute; content: '';
	left: 0;
	top: 14px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--color-gold-light);
}





/*==================================================================

		.section_02　＊　横２列のカード　＊　画像なし・数字付き・liの背景色白

==================================================================*/
.section_02 {
	margin-bottom: 90px;
}
.section_02 b {
	color: #0c4299;
	font-weight: 500;
}
.section_02 ul {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	counter-reset: concern;
}
.section_02 li {
	padding: 30px;
	box-sizing: border-box;
	counter-increment: concern;
	background: #FFF;
}
.section_02 dl {
	display: flex;
	flex-direction: column;
}
.section_02 dl dt {
	display: flex;
	align-items: center;
	gap: 16px;
	font-family: "Shippori Mincho B1", serif;
	font-size: 20px;
	color: var(--color-gold);
	margin-bottom: 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid #e0dbd3;
}
.section_02 dl dt::before {
	content: counter(concern, decimal-leading-zero);
	font-family: "Cormorant Infant", serif;
	font-size: 50px;
	font-weight: 300;
	color: var(--color-gold-light);
	line-height: 1;
	flex-shrink: 0;
}

@media screen and (max-width: 640px) {
	.section_02 {
		margin-bottom: 60px;
	}
	.section_02 > .text {
		margin-bottom: 30px;
	}
	.section_02 ul {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.section_02 li {
		padding: 20px;
	}
	.section_02 dl dt {
		font-size: 20px;
		gap: 12px;
		margin-bottom: 12px;
		padding-bottom: 12px;
	}
	.section_02 dl dt::before {
		font-size: 36px;
	}
	.section_02 dl dd {
		font-size: 15px;
		line-height: 1.8;
	}
}





/*==================================================================

		.section_03　＊　横２列のカード　＊　画像あり

==================================================================*/
.section_03 {
	margin-bottom: 90px;
}
.section_03 ul {
	display: flex;
	gap: 40px;
	align-items: stretch;
}
.section_03 li {
	flex: 1;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
.section_03 li figure img {
	width: 100%;
	height: 280px;
	object-fit: cover;
}
.section_03 .box {
	flex: 1;
	padding: 40px;
	background: #f9f7f5;
}
.section_03 .box h4 {
	margin-top: 0;
}
.section_03 .box dl dt {
	font-family: "Shippori Mincho B1", serif;
	font-size: 22px;
	color: var(--color-blue);
}
.section_03 .box dl dd {
	margin-bottom: 1em;
}@media screen and (max-width: 640px) {
	.section_03 {
		margin-bottom: 60px;
	}
	.section_03 > .text {
		margin-bottom: 30px;
	}
	.section_03 ul {
		flex-direction: column;
		gap: 24px;
	}
	.section_03 li figure img {
		height: 220px;
	}
	.section_03 .box {
		padding: 20px;
	}
	.section_03 .box dl dt {
		font-size: 18px;
	}
	.section_03 .box dl dd {
		font-size: 15px;
		line-height: 1.8;
	}
}





/*==================================================================

		.section_04　＊　こんな症状チェックリスト

==================================================================*/
.section_04 {
	margin-bottom: 90px;
}
.section_04 h3 {
	margin-bottom: 40px;
}
.section_04 ul {
	margin-top: 30px;
	width: 100%;
	box-sizing: border-box;
	padding: 30px 50px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	background: #f9f7f5;
}
.section_04 ul li {
	width: 32%; /*基本は3つ並び*/
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 10px 0;
	line-height: 1.7;
}
.section_04 ul li::before {
	position: relative;
	content: '';
	display: block;
	top: 2px;
	width: 16px;
	height: 16px;
	border: 1.5px solid var(--color-gold-light);
	border-radius: 3px;
	flex-shrink: 0;
	margin-top: 4px;
}
.section_04 b {
	color: #0c4299;
	font-weight: 500;    
	display: contents;
}
@media screen and (max-width: 640px) {
	.section_04 {
		margin-bottom: 60px;
	}
	.section_04 ul {
		padding: 10px 20px;
	}
	.section_04 ul li {
		width: 100% !important;
		padding: 7px 0;
		font-size: 15px;
	}
	.section_04 ul li::before {
		top: 1px;
	}
}


/*------------------------------ 一般歯科 ------------------------------*/
#cavity .section_04 ul li:nth-of-type(3n+2) {  width: 24%; }
#cavity .section_04 ul li:nth-of-type(3n+3) {  width: 40%; }

/*------------------------------ 矯正歯科 ------------------------------*/
#orthodontics .section_04 ul li:nth-of-type(3n+1) {  width: 40%; }
#orthodontics .section_04 ul li:nth-of-type(3n+2) {  width: 27%; }
#orthodontics .section_04 ul li:nth-of-type(3n+3) {  width: 29%; }

/*------------------------------ インプラント ------------------------------*/
#implant .section_04 ul li {  width: 48%; }
#implant .section_04 ul li:last-of-type {  width: 100%; }


/*------------------------------ 口腔外科 ------------------------------*/
#oral .section_04#transplant-02 ul li:nth-of-type(5) { width: 66%; }
#oral .section_04#transplant-02 ul li:last-of-type { width: 100%; }
#oral .section_04#oral-02 ul li:last-of-type { width: 100%; }

/*------------------------------ 訪問歯科 ------------------------------*/
#visit .section_04 ul li:nth-of-type(3n+1) {  width: 40%; }
#visit .section_04 ul li:nth-of-type(3n+2) {  width: 28%; }

/*------------------------------ 小児歯科 ------------------------------*/
#children .section_04 ul li {  width: 48%; }

/*------------------------------ インプラント ------------------------------*/
#denture .section_04 ul li:last-of-type {  width: 66%; }

/*------------------------------ 予防歯科 ------------------------------*/
#prevention .section_04 ul li:nth-of-type(3n+1) {  width: 37%; }
#prevention .section_04 ul li:nth-of-type(3n+2) {  width: 29%; }
#prevention .section_04 ul li:nth-of-type(3n+3) {  width: 31%; }
#prevention .section_04 ul li:last-of-type { width: 100%; }

/*------------------------------ 栄養相談・栄養指導 ------------------------------*/
#nutrition .section_04#nutrition-05 ul li {  width: 48%; }




/*==================================================================

		.section_05　＊　患者さんの悩みリスト

==================================================================*/
.section_05 {
	margin-bottom: 90px;
	text-align: center;
}
.section_05 h3 {
	margin-bottom: 40px;
}
.section_05 .text {
	margin-bottom: 40px;
}
.section_05 ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px 20px;
}
.section_05 li {
	position: relative;
	font-family: "Shippori Mincho B1", serif;
	font-size: 17px;
	background: #fff;
	border-radius: 30px;
	padding: 12px 35px;
	box-shadow: 0 4px 8px rgba(0,0,0,0.08);
}
.section_05 li::after {
	position: absolute; content: '';
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #fff;
	left: 50%; margin-left: -10px;
	bottom: -10px;
}
@media screen and (max-width: 640px) {
	.section_05 {
		margin-bottom: 60px;
	}
	.section_05 ul {
		gap: 15px;
	}
	.section_05 li {
		width: 100%;
		font-size: 15px;
		padding: 13px 0;
		line-height: 1.5;
	}
}



/*==================================================================

		.flow

==================================================================*/
.flow ol {
	width: 90%;
	margin: 0 auto 90px;
}
.flow li {
	display: flex;
	align-items: center;
	margin-bottom: 30px;	
}
.flow li figure {
	width: 340px;
}
.flow li figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.flow .box {
	flex: 1;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: 0 20px;
	padding: 24px 0 24px 40px;
}
.flow .box i {
	font-family: "Cormorant Infant", serif;
	font-style: normal;
	font-size: 70px;
	font-weight: 300;
	color: var(--color-gold-light);
	line-height: 1;
	flex-shrink: 0;
}
.flow .box dt {
	flex: 1;
	font-family: "Shippori Mincho B1", serif;
	font-size: 24px;
	color: var(--color-gold);
	letter-spacing: 1px;
	margin-bottom: 3px;
}
.flow .box dd {
	flex: 0 0 100%;
	margin-top: 12px;
	background: #f7f7f7;
	box-sizing: border-box;
	padding: 20px 30px;
}
@media screen and (max-width: 640px) {
	.flow > .text {
		margin-bottom: 30px;
	}
	.flow ol {
		width: 100%;
		margin-bottom: 60px;
	}
	.flow li {
		flex-direction: column;
		align-items: stretch;
		margin-bottom: 20px;
	}
	.flow li figure {
		width: 100%;
		height: 200px;
	}
	.flow .box {
		padding: 16px 0;
		gap: 0 12px;
	}
	.flow .box i {
		font-size: 48px;
	}
	.flow .box dt {
		font-size: 20px;
		margin-bottom: 0;
		align-self: flex-end;
	}
	.flow .box dd {
		margin-top: 10px;
		padding: 14px 16px;
		font-size: 15px;
		line-height: 1.8;
	}

}





/*==================================================================

		.faq

==================================================================*/
.faq {
	margin-bottom: 90px;
}
.faq dl {
	width: 90%;
	margin: 0 auto 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid #e0dbd3;
}
.faq dl:first-of-type {
	border-top: 1px solid #e0dbd3;
	padding-top: 30px;
}
.faq dt , .faq dd {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}
.faq dt::before {
	content: 'Q';
	font-family: "Cormorant Infant", serif;
	font-size: 40px;
	font-weight: 300;
	color: var(--color-blue);
	line-height: 1;
	width: 40px;
	text-align: center;
}
.faq dt {
	font-family: "Shippori Mincho B1", serif;
	font-size: 20px;	
	margin-bottom: 12px;
}
.faq dd {
	flex-direction: column;
	margin-left: 55px;
	padding: 20px 30px;
	background: #f7f7f7;
}
@media screen and (max-width: 640px) {
	.faq {
		margin-bottom: 60px;
	}
	.faq dl {
		width: 100%;
		margin-bottom: 20px;
		padding-bottom: 20px;
	}
	.faq dt {
		gap: 10px;
		margin-bottom: 8px;
		font-size: 16px;
		letter-spacing: 0;
	}
	.faq dt::before {
		font-size: 28px;
		width: 28px;
	}
	.faq dd {
		margin-left: 0;
		padding: 14px 16px;
		font-size: 15px;
		line-height: 1.8;
	}
}
/*------------------------------ リスト ------------------------------*/
.faq .list li {
	position: relative;
	margin-bottom: 12px;
	padding-left: 20px;
}
.faq .list li::before {
	position: absolute; content: '';
	left: 0;
	top: 14px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--color-gold-light);
}
@media screen and (max-width: 640px) {
	.faq .list li::before {
		top: 11px;
	}
}











