@charset "UTF-8";


/*=======================================================*/
/*					セクション毎のCSS					  */
/*======================================================*/

/*============ 共通 =========== */

/* 親要素からはみ出して画面いっぱいに */
.full {
	margin: 0 calc(50% - 50vw);
	width: 100vw;
}
@media print {
	.full {
		margin: 0;
		width: 100%;
	}
}
/*パンくず*/
.sec_pankuzu{
	padding: 0 0 15px 0;
	background-color: var(--base-color);
	position: relative;
	z-index: 1;
}

/**/
.common_end {
	padding: var(--v-space3) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
/*背景（各ページで変えることも可）*/
.combg-01{
	background-image: url(../img/bg_03.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.common_end p {
	font-size: clamp(15px,1.5vw,16px);
	line-height: 1.5;
	color: #fff;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
}
.bgfit{
	background-color: rgba(39, 77, 65, 0.65);
	max-width: 970px;
	padding: 55px 20px 20px 20px;
	margin: 0 auto;
}
/**/
.spot__heading03 {
	position: relative; /* 親要素を相対位置に設定 */
}
.spot__heading03 h3 {
	font-size: clamp(14px,1.5vw,17px);
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
	line-height: 1.5;
	margin-bottom: 15px;
	font-weight: 400;
	text-align: center;
	color: #fff;
	padding-top: 25px;
}
.spot__heading03 span.subsh03 {
	position: absolute;
	/*font-family: "WindSong", serif;*/
	font-family: "Corinthia", cursive;
	margin: 0;
	font-size: clamp(50px,5vw,60px);
	text-align: center;
	top: -0.65em; /* 調整が必要かもしれません */
	left: 50%;
	transform: translateX(-50%);
	/*transform-origin: left top;*/
	pointer-events: none;
	/*white-space: nowrap;*/
	/*text-transform: lowercase;*/
	font-weight: normal;
	color: #ece9df;
	opacity: 0.8;
	z-index: 2;
}
/*
@media only screen and (max-width: 868px) {
	.spot__heading03 h3 {
		text-align: justify;
	}
}
*/
/*印刷用*/
@media print{
	.spot__heading03 h3 {
		font-size: clamp(14px,1.5vw,16px);
		text-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
		line-height: 1.5;
		font-family: 'Noto Serif JP', serif;
		margin-bottom: 15px;
		font-weight: 600;
		text-align: center;
		color: #fff;
		padding-top: 25px;
	}
}




/*======= TOPページ ======*/
/*ご挨拶*/
.greeting {
	padding: var(--v-space3) 0 clamp(20px, 4vw, 30px) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
.greeting-haba {
	margin: 0 auto;
	max-width: 930px;
	padding: 1% 0 0 0;
}
/*冒頭一文*/
p.grp{
	font-size: clamp(13px, 1.3vw, 14px);
	line-height: 1.3;
	margin: 0 auto 10px auto;
	width: fit-content;
	color: var(--main-color);
}

/**/
.each-page__heading01 {
	position: relative; /* 親要素を相対位置に設定 */
	margin-top: 65px;
}

.each-page__heading01 h2 {
	/*width: fit-content;*/
	font-size: clamp(25px,2.7vw,28px);
	font-family: 'Noto Serif JP', serif;
	text-align: center;
	line-height: 1.3;
	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;*/
	font-family: "Corinthia", cursive;
	margin: 0 auto;
	font-size: clamp(40px,7vw,65px);
	text-align: center;
	/*top: -1.1em;*/
	top: -0.85em;
	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%);
}

/*サブキャッチ補足文章*/
.lead-p {
	text-align: center;
	color: var(--accent-color1);
	font-size: clamp(16px, 1.6vw, 18px);
	font-weight: 400;
	margin: 5px auto 10px auto;
	line-height: 1.4;
	/*font-family: "Zen Maru Gothic", sans-serif;*/
}
@media (max-width: 568px) {
	.lead-p {
		text-align: justify;
	}
}
/**/
p.grp2{
	font-size: clamp(15px, 1.4vw, 16px);
	line-height: 1.7;
	font-weight: 400;
	text-align: justify;
}
/**/
.trouble-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
	margin: 30px auto 30px auto;
}
.trouble-bubble {
	background: #ffffffe8;
	border-radius: 15px;
	padding: 1rem 1.2rem;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	position: relative;
	max-width: 250px;
	width: 100%;
	font-family: 'Noto Serif JP', serif;
	font-size: clamp(15px, 1.5vw, 16px);
	font-weight: 600;
	color: var(--main-color);
	text-align: center;
}

/* レスポンシブ対応 */
@media (max-width: 568px) {
	.trouble-bubble {
		max-width: 100%;
	}
}


/*歯と、暮らしに向き合うために*/
.top_sec1{
	padding: var(--v-space3) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
	background-image: url(../img/bg_02a.png);
	background-repeat: no-repeat;
	background-position: center top;
	background-size: contain;
}
@media (max-width: 568px) {
	.top_sec1{
		background-size: 170%;
	}
}
/**/
.th3p{
	color: #c1b9a3;
	text-align: center;
	font-family: "Corinthia", cursive;
	font-size: clamp(30px, 3vw, 35px);
	margin-top: 5px;
	margin-bottom: 15px;
	line-height: 1.2;
}


/* --- カード全体 --- */
.top_message_cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
/* --- 各カード --- */
.message_card {
	position: relative;
	aspect-ratio: 1 / 1; /* 正方形 */
	background-size: cover;
	background-position: center;
	overflow: hidden;
	color: #fff;
}
/* 半透明オーバーレイ */
.message_card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1;
}
/* 1つ目 */
.message_card:nth-child(1)::before {
	background: rgba(104, 73, 15, 0.5);
}

/* 2つ目 */
.message_card:nth-child(2)::before {
	background: rgba(57, 26, 14, 0.55);
}

/* 3つ目 */
.message_card:nth-child(3)::before {
	background: rgba(11, 34, 70, 0.5);
}

/* --- テキストエリア --- */
.card_inner {
	position: relative;
	z-index: 2;
	height: 100%;
	padding: 20px;
	display: flex;
	flex-direction: column;
	/*justify-content: center;*/
	justify-content: end;
	align-items: center;       /* ★横方向も中央 */
	outline: 2px solid #ffffff69;
	outline-offset: -10px;
	box-sizing: border-box;
}
.card_inner h4 {
	font-size: clamp(18px, 1.9vw, 21px);
	margin-bottom: 10px;
	font-weight: 600;
	line-height: 1.4;
	text-align: center;        /* ★文字中央 */
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.99);
}
.card_inner p {
	font-size: clamp(14px, 1.5vw, 15px);
	line-height: 1.6;
	max-width: 90%;   /* ★横幅を少し絞る */
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.99);
}

/* --- 背景画像指定（差し替えてください） --- */
.card_01 {
	background-image: url("../img/cardbg_01.jpg");
}
.card_02 {
	background-image: url("../img/cardbg_02.jpg");
}
.card_03 {
	background-image: url("../img/cardbg_03.jpg");
}
/* --- レスポンシブ --- */
@media (max-width: 868px) {
	.top_message_cards {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 568px) {
	.top_message_cards {
		grid-template-columns: 1fr;
	}
}

.keep-together {
	display: inline-block;  /* 要素を塊として扱う */
}



/*診療案内 Dental Services*/
.top_sec2{
	padding: var(--v-space3) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}

/* カードデザイン */
.services-content {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin: 40px 10px 20px 10px;
}
@media (max-width: 1024px) {
	.services-content {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 668px) {
	.services-content {
		grid-template-columns: 1fr; /* 1カラム表示 */
	}
}
/*印刷用*/
@media print{
	.services-content {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
		margin: 40px 10px 20px 10px;
	}
}

.services-item {
	background: #ffffffe0;
	padding: 35px 30px 35px 35px;
	border-radius: 40px 10px 40px 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	position: relative;
	transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
	overflow: hidden;
	/*border-left: 5px solid #3498db;*/ /* 左側のラインでアクセント */
}
.services-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 18px 36px rgba(0, 0, 0, 0.15);
}

/*見出し*/
.services-title {
	font-family: 'Noto Serif JP', serif;
	font-size: clamp(20px, 1.9vw, 24px);
	line-height: 1.4;
	font-weight: 700;
}
/*文章*/
.services-item p {
	font-family: "Zen Kaku Gothic New", serif;
	font-size: clamp(13px, 1.4vw, 15px);
	line-height: 1.4;
	margin-top: 10px;
	margin-bottom: 10px;
	text-align: justify;
	min-height: calc(1.4em * 5); /* 7行または height: 10.5em; */
}

/* 丸 */
.services-icon {
	position: absolute;
	top: -40px;
	left: -40px;
	width: 80px;
	height: 80px;
	background: linear-gradient(45deg, #ccc0b4, #95ac6d);
	border-radius: 50%;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* 共通の背景画像設定 */
.services-item.bgsub {
	background-size: contain;
	background-position: right bottom;
	background-repeat: no-repeat;
}

/* 画像ごとの個別設定 */
.bgsub1 { background-image: url(../img/bgsub1.png); }
/*
.bgsub2 { background-image: url(../img/bgsub2.png); }
.bgsub3 { background-image: url(../img/bgsub3.png); }
*/
/* 印刷用 */
@media print {

}


.top_sec3 {
	padding: var(--v-space3) 0;
	position: relative;
	z-index: 1;
	background: radial-gradient(circle, transparent 20%, #ffffff 20%, #ffffff 80%, transparent 80%, transparent), radial-gradient(circle, transparent 20%, #ffffff 20%, #ffffff 80%, transparent 80%, transparent) 10px 10px, linear-gradient(#deebf2ab 0.8px, transparent 0.8px) 0 -0.4px, linear-gradient(90deg, #deebf2ab 0.8px, #ffffff 0.8px) -0.4px 0;
	background-size: 20px 20px, 20px 20px, 10px 10px, 10px 10px;
}


.top_sec4{
	padding: var(--v-space3) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}




/*定期健診・予防歯科について*/
.care_sec {
	padding: var(--v-space3) 0;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
/**/
.gr-sub1 {
	background-image: url(../img/bg_grsub1.jpg);
	background-size: cover;
	background-position: center left;
	background-repeat: no-repeat;
}
@media (max-width: 568px) {
	.gr-sub1 {
		background-image: url(../img/bg_grsub1.jpg);
		background-size: cover;
		background-position: 70% 100%;
		background-repeat: no-repeat;
	}
}
/**/
p.subp{
	font-size: clamp(14px, 1.5vw, 15px);
	text-shadow: 0 0 10px rgba(255, 255, 255, 0.99);
}

@media only screen and (max-width: 768px) {
	.bgfit2 {
		background-color: rgb(255, 255, 255, 0.7);
		width: fit-content;
		padding: 30px 20px;
	}
}




/* よくある質問 */
.faq_sec {
	padding: var(--v-space3) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
/**/
div.faq-in{
	padding: 0;
}
/*枠付きデザイン*/
.onecours{
	background-color: #f2f2f26e;
	padding: 15px 25px 15px 20px;
	margin: 0 0 17px 0;
	font-size: clamp(15px, 1.5vw, 16px);
	/*border: 1px #f0efdd solid;*/
	font-family: 'Noto Serif JP', serif;
}
.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;
	font-weight: bold;
	font-size: 100%;
	line-height: 1.5;
	border-radius: 3px;
	width: 1.5em;
	text-align: center;
	align-self: start;	/* lavelを上揃えに */
	padding: 0 1px 3px 1px;
}
.faq-label.q {
	/*background-color: #71a49d;*/
	color: var(--accent-color1);
}
.faq-label.a {
	/*background-color: var(--accent-color3);*/
	color: var(--sub-color1);
}
.faq-question,
.faq-answer {
	margin: 0;
	line-height: 1.5;
	text-align: justify;
}
.faq-question {
	font-weight: bold;
	font-size: 1.1em;
}
.faq-answer {
	color: #555;
	font-family: '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック体', YuGothic, 'Hiragino Sans', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
}
hr.faqHr{
	height: 0px;
	border-bottom: 1px dotted #7b7b7b;
	margin: 10px auto;
}






/*==========================================================*/
/*      	　　　個人よく使う指定CSS  		  	  */
/*=========================================================*/
/*印刷には表示されない*/
@media print{
	.print_none{
		display: none;
	}
}
/*調整*/
.adjus{
	padding-top: 10px;
	padding-bottom: 30px;
}
/*テキスト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;
	width: fit-content;
}
/**/
.kukuri p{
	font-size: clamp(14px, 1.5vw, 15px);
	line-height: 1.4;
	color: #666;
}
/**/
.kukuri2{
	padding: 15px 15px;
	margin: 20px 0;
	box-sizing: border-box;
	background: #f9f8f7;
}
.kukuri2 p{
	font-size: clamp(13.5px, 1.5vw, 15px);
	line-height: 1.4;
}
/*任意のみ表示*/
@media print, screen and (min-width: 969px) {
	.nini-969 {
		display: none;
	}
}
@media screen and (max-width: 568px) {
	.nini-568 {
		display:none;
	}
}
/*画像角丸*/
img.borad {
	border-radius: 12px;
	/*border: 1px solid #e1e1e1;*/
}
/* コンテンツ幅 */
div.haba{
	margin: 0 8%;
	padding: 0;
}
@media only screen and (max-width: 968px)  {
	div.haba{
		margin: 0;
		padding: 0;
	}
}
/*印刷時*/
@media print{
	div.haba{
		margin: 0 8%;
		padding: 0;
	}
}
/*pcとspで画像のサイズ変えたいときの指定*/
.pcspwid{
	width: 450px;
	margin: 0 auto;
}
@media only screen and (max-width: 568px) {
	.pcspwid{
		width: 100%;
	}
}
/**/
.fniyori {
	font-feature-settings: 'palt' 1;
	-webkit-font-smoothing: antialiased;
}
/*四角デザイン*/
.head-square {
	color: var(--main-color);
	font-size: clamp(16px, 1.8vw, 19px);
	display: flex;
	line-height: 1.4;
	align-items: center;
	gap: 12px; /* 文字との間隔調整 */
	position: relative;
	margin-top: 10px;
}

/* 左の4つの■（2×2の正方形） */
.head-square::before {
	content: "";
	width: 14px;   /* 全体の大きさ */
	height: 14px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 1fr);
	gap: 2px; /* 四角同士の隙間 */
}

/* 4つの小さな■を作る */
.head-square::before {
	background:
		linear-gradient(#7d6f5f 0 0) left top,
		linear-gradient(#dad4cd 0 0) right top,
		linear-gradient(#dad4cd 0 0) left bottom,
		linear-gradient(#7d6f5f 0 0) right bottom;
	background-size: 6px 6px; /* 小さい■のサイズ */
	background-repeat: no-repeat;
}


/*□装飾*/
.cp_h4title {
	position: relative;
	font-size: clamp(18px, 1.8vw, 20px);
	padding: 2px 2px 2px 32px;
	border-bottom: 1px dotted #999;
	/*font-family: 'Noto Serif JP', serif;*/
	font-family: "Zen Kaku Gothic New", serif;
	margin: 30px 0 10px 0;
}
.cp_h4title::before,
.cp_h4title::after {
	position: absolute;
	content: '';
	width: 10px;
	height: 10px;
	/*border: 2px solid var(--accent-color1);*/
}
.cp_h4title::before {
	top: 6px;
	left: 5px;
	border: 2px solid var(--accent-color2);
}
.cp_h4title::after {
	top: 10px;
	left: 10px;
	border: 2px solid var(--main-color);
}
/*リスト　大きめディスク*/
ul.nor{
	list-style: disc;
	margin: 5px 5px 5px 25px;
	line-height: 1.4;
}
ul.nor li::marker{
	font-size: 150%;
	font-weight: bold;
	line-height: 0.7;
	color: var(--main-color);
	left: 10px;
}
ul.nor li{
	/*border-bottom: 1px dashed #b9b9b9;*/
	padding: 0.2em 0;
}
ul.nor li.noli::marker{
	font-size: 150%;
	font-weight: bold;
	line-height: 0.7;
	color: rgba(255,255,255,0);
}
ul.nor li.noli{
	margin-left: -25px;
}

/*4つの枠で3つ*/
/*flexで*/
.general-item-circle3 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	box-sizing: border-box;
	margin: 30px auto 0 auto;
	max-width: 1100px;
}
.circle-item3 {
	width: calc((100% - 60px) / 4); /* gap分引いた上で4分割 */
	/*min-width: 250px;*/ /* スマホで潰れすぎ防止 */
	box-sizing: border-box;
}
/* タブレット対応：2カラム */
@media only screen and (max-width: 868px) {
	.general-item-circle3 {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 5px 15px;
		margin: 30px 0 50px 0;
		box-sizing: border-box;
	}
	.circle-item3 {
		width: calc((100% - 30px) / 3);
	}
}
/* スマホ対応：2カラム */
@media only screen and (max-width: 468px) {
	.circle-item3 {
		width: calc((100% - 15px) / 2);
	}
}

/* 印刷用 */
@media print {

}

.circle-item3 img{
	/*outline: 10px solid #ffffff69;*/
	outline: 2px solid #ffffff69;
	outline-offset: -10px;
}


/*円*/
.circle {
	width: 100%;
	max-width: 300px;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 50%;
}

/* ゆらゆらアニメーション */
@keyframes float-updown {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px); /* 上に10px動く */
	}
}

/* 適用クラス */
.float-anim {
	animation: float-updown 3s ease-in-out infinite;
}

/* 遅延付きバリエーション */
.float-delay1 {
	animation-delay: 0s;
}
.float-delay2 {
	animation-delay: 1s;
}
.float-delay3 {
	animation-delay: 2s;
}
/* 印刷用 */
@media print {
	/* アニメーションを無効にする */
	.float-anim {
		animation: none !important;
	}
}




