@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;
}
/**/
.each-page__heading01 {
	position: relative; /* 親要素を相対位置に設定 */
	margin-top: 50px;
}

.each-page__heading01 h2 {
	/*width: fit-content;*/
	font-size: clamp(26px, 2.9vw, 30px);
	text-align: center;
	line-height: 1.2;
	font-weight: 400;
	position: relative;
	z-index: 1;
	opacity: 0.9;
	margin-bottom: 35px;
}
.each-page__heading01 h2::after {
	content: "";
	width: 3em;
	height: .2em;
	border-radius: .1em;
	background: linear-gradient(to right, #128d82, #A9D3D6);
	/*background-color: var(--sub-color1);*/
	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(40px,9vw,60px);
	text-align: center;
	top: -1.1em;

	transform-origin: center top;
	pointer-events: none;
	white-space: nowrap;
	font-weight: normal;
	color: var(--main-color);
	opacity: 0.3;
	/*transform: rotate(-10deg);*/

	left: 50%;/*中央配置*/
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}
/*英文字が長すぎるとき*/
.each-page__heading01 span.toolong {
	font-size: clamp(33px,8vw,55px);
}

/*======= TOPページ ======*/
/*ご挨拶*/
.greeting {
	padding: clamp(40px, 6vw, 90px) 0 20px 0;
	background-color: #FFF;
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}
/**/
p.grp{
	font-size: clamp(14px, 1.5vw, 16px);
	line-height: 1.6;
	font-weight: 400;
	-webkit-text-stroke: 3px #fff;
	text-stroke: 3px #fff;
	paint-order: stroke;
	text-align: justify;
	margin-bottom: 7px;
}

/**/
.strength-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px 20px;
	margin-top: 50px;
}
/* 各カード */
.strength-details {
	background-color: #fff; /* デフォルト */
	padding: 1.8rem;
	border-radius: 8px;
	box-sizing: border-box;
	box-shadow: 0 2px 6px rgba(0,0,0,0.09);
	/*display: flex;
	flex-direction: column;*/
}
.strength-details figure {
	margin-bottom: 1.2rem;
	/*margin-top: -17%;*/
}
.strength-details img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 8px;
}
.strength-details h3 {
	font-size: clamp(16px,1.6vw,19px);
	text-align: center;
	margin-bottom: 0.6rem;
	line-height: 1.5;
	font-feature-settings: 'palt' 1;
	-webkit-font-smoothing: antialiased;
}
.strength-details p {
	font-size: 0.95rem;
	line-height: 1.7;
	margin-top: auto;
	text-align: justify;
}
@media screen and (max-width: 1024px) {
	.strength-list {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media screen and (max-width: 767px) {
	.strength-list {
		grid-template-columns: 1fr;
		margin-top: 30px;
	}
	.strength-details {
		padding: 1.4rem;
	}
}

/* CTA*/
.service_cta {
	margin: 20px auto 10px auto !important;
	text-align: center;
}

/*ボタン*/
.detail-link {
	margin-top: 10px;;
}
.detail-link a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5em;

	padding: 0.5em 1.5em 0.7em 1.5em;
	min-width: 180px;
	box-sizing: border-box;

	font-size: clamp(11px,1.2vw,14px);
	font-weight: 600;
	line-height: 1.4;
	text-decoration: none;

	color: #fff;
	background-color: var(--main-color);
	border-radius: 9999px;

	transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

/* 矢印アイコン（CSSのみ） */
.detail-link a::after {
	content: "→";
	font-size: 0.9em;
	transition: transform 0.2s ease;
}
.detail-link a:hover {
	background-color: var(--accent-color1);
	transform: translateY(-2px);
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}
.detail-link a:hover::after {
	transform: translateX(4px);
}

/* スマホ対応 */
@media (max-width: 768px) {
	.detail-link a {
		width: 100%;
		min-width: unset;
		justify-content: center;
	}
}

/**/
.top_sec1{
	padding: var(--v-space2) 0 0 0;
	background-color: #fff;
	position: relative;
	z-index: 1;
	background-image: url(../img/bg_04.png);
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: cover;
}
@media only screen and (max-width: 867px) {
	.top_sec1{
		background: none;
	}
}
/*端まで写真の背景色を突き抜ける装飾*/
/* 右に写真があるとき */
.spot_photo {
	position: relative;
	z-index: 1;
}
.spot_photo::after {
	content: "";
	position: absolute;
	top: 2rem;
	bottom: -1.5rem;
	left: -1.5rem; /* 左に少し広げる */
	right: calc(-1 * (100vw - 100%) / 2); /* 右端まで突き抜け */
	background-color: #de86251a;
	z-index: -1;
}
/* ▼ スマホでは装飾を非表示 */
@media only screen and (max-width: 767px) {
	.spot_photo::after {
		display: none;
	}
}


/*当院の特徴*/
.gr-subf {
	padding: clamp(100px, 7vw, 150px) 0 var(--v-space3) 0;
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}
.craf-wrap {
	max-width: 1400px;
	margin: 0 auto;
	position: relative;
}
/* 背景を「下側に」配置する */
.craf-bg {
	width: 100%;
	overflow: hidden;
	position: relative;
	top: -70px;
}
.craf-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/* カードを背景より「上側」に置く」 */
.craf-cards {
	background: rgba(253, 248, 243, 0.7);
	border-radius: 16px;
	max-width: 1100px;
	padding: 50px 0;
	margin: 0 auto 20px;
	position: relative;
	z-index: 5;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	box-sizing: border-box;
	background-image: radial-gradient(#c5e3df54 15%, transparent 16%), radial-gradient(#ffdf5f54 15%, transparent 16%);
	background-size: 20px 20px;
	background-position: 0 0, 10px 10px;
}
/* カード内部 */
.card {
	padding: 20px 30px;
}
.card + .card {
	border-left: 1px solid #ddd;
}
.craf-title {
	text-align: center;
	font-size: clamp(19px, 2vw, 24px);
	margin-bottom: 16px;
	line-height: 1.4;
}
.craf-text {
	font-size: clamp(13px, 1.4vw, 15px);
	color: #555;
}
@media (max-width: 968px) {
	.craf-cards {
		padding: 30px 0;
		gap: 0;
	}
}
@media (max-width: 868px) {
	.craf-bg {
		height: 200px;
		top: -20px;
	}
	.craf-cards {
		grid-template-columns: 1fr;
		gap: 20px;
        	padding: 30px 10px; 
		width: 85%;
		margin: 0 auto;
	}
	.card {
		padding: 20px 10px;
	}
	.card + .card {
		border-left: none;
		border-top: 1px solid #ddd;
		padding-top: 20px;
	}
}
/* 画像エリア */
.card-img {
	width: 100%;
	aspect-ratio: 800 / 585;
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 18px;
}

.card-img img {
	width: 100%;
	height: 100%;
	object-fit: contain; /* ← coverではなくcontain */
}


/* お問い合わせ */
.contact_sec {
	padding: var(--v-space3) 0;
	background-color: #f2faf8;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
@media print, screen and (min-width: 768px) {
	.conbg-01 {
		background-image: url(../img/bg_05.jpg);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
}
@media only screen and (max-width: 767px) {
	.conbg-01 {
		background-image: url(../img/bg_05.jpg);
		background-repeat: no-repeat;
		background-position: 70%;
		background-size: cover;
	}
}
.contact_sec h2{
	font-size: clamp(20px,2.5vw,25px);
	/*letter-spacing: 0.28em;*/
	text-align: center;
	font-family: "WindSong", serif;
	margin: 0;
	font-size: clamp(30px,3vw,50px);
	white-space: nowrap;
	/*text-transform: lowercase;*/
	font-weight: normal;
	color: #886a45;
}
.contact_sec p {
	font-size: clamp(14px,1.5vw,16px);
	line-height: 1.6;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.99);
	text-align: center;
	color: #fff;
}
@media only screen and (max-width: 767px) {
	.contact_sec p {
		text-align: justify;
	}
	.contact_bg{
		background-color: rgba(39, 84, 84, 0.5);
		padding: 30px 20px 40px 20px;
	}
	.contact_sec h2{
		color: #eedac1;
	}
}







/*======= 医院についてページ ======*/
.clinic_sec1 {
	padding: var(--v-space3) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
/* 院長メッセージ */
.director-message {
	background-color: var(--sub-color2);
	padding: 60px 40px;
	margin: 60px 0 0px;
}
@media (max-width: 768px) {
	.director-message {
		background-color: var(--sub-color2);
		padding: 40px 20px;
		margin: 40px 0 60px;
	}
}
.director-message__inner {
	display: flex;
	gap: 50px;
	align-items: flex-start;
}
@media (max-width: 768px) {
	.director-message__inner {
		display: flex;
		gap: 30px;
		align-items: flex-start;
	}
}
.director-message__image {
	width: 25%;
	margin: 0 auto;
	text-align: center;
}
.director-message__image img {
	width: 100%;
	border-radius: 50%;
}
.director-name {
	margin-top: 15px;
	line-height: 1.5;
	font-weight: 600;
	color: var(--main-color);
}
.director-name span {
	font-size: 1.3rem;
}
.director-message__text {
	width: 65%;
}
.director-message__text h3 {
	font-size: clamp(21px,2.1vw,25px);
	color: var(--main-color);
	margin-bottom: 25px;
	line-height: 1.5;
}
.director-message__strong {
	margin-top: 25px;
	font-weight: 600;
	color: var(--main-color);
}

/* レスポンシブ */
@media (max-width: 768px) {
	.director-message__inner {
		flex-direction: column;
	}
	.director-message__image {
		width: 50%;
		margin: 0 auto;
	}
	.director-message__text {
		width: 100%;
	}
	.director-message__text h3 {
		text-align: center;
	}
}
@media (max-width: 568px) {
	.director-message__image {
		width: 80%;
		margin: 0 auto;
	}
}
/*医院概要*/
.clinic_sec2 {
	padding: var(--v-space3) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
	background-image: url(../img/bg_03.jpg);
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: cover;
}
@media screen and (max-width: 568px) {
	.clinic_sec2 {
		background-position: 85% bottom;
	}
}

.info_sec1__haba{
	/*max-width: 900px;*/
	margin: 0 auto;
	background-color: #ffffffc2;
	padding: 50px;
	outline: 2px solid #fff;
	outline-offset: -0.8rem;
}
/* テーブルデザイン */
.info_container {
	display: grid;
	grid-template-columns: 1fr;
}
.info_container .item {
	border-bottom: 1px dashed #c1bcad;
	/*background-color: #ffffff85;*/
	padding: 11px 5px;
	display: grid;
	grid-template-columns: 10.5em 1fr;
	align-items: stretch;
	gap: 20px;
	box-sizing: border-box;
}
@media screen and (max-width: 1199px) and (min-width: 800px) {
	.info_container .item {
		padding: 8px 5px;
		grid-template-columns: 7.5em 1fr;
	}
}
.info_container .label {
	display: flex;
	align-items: center;
	font-weight: bold;
	color: #353535;
	white-space: nowrap;
	padding: 5px;
	font-size: clamp(15px, 1.6vw, 17px);
}
.info_container .content {
	display: flex;
	align-items: center;
	color: #333;
	padding: 5px;
	font-size: clamp(15px, 1.6vw, 17px);
}
/* 診療時間だけレイアウト変更 */
.info_container .item-time .content {
	display: block;
	align-items: initial;
}

.info_container .item-time .label {
	align-items: flex-start; /* 上揃え */
	padding-top: 10px;
}
@media screen and (max-width: 768px) {
	.company_sec1 {
		background-position: 70% top;
	}
	.info_sec1__haba {
		padding: 30px 20px;
	}
	.info_container .item {
		grid-template-columns: 1fr;
		padding: 8px 1px;
		gap: 0;
	}
	.info_container .label {
		line-height: 1.6;
		background-color: #7dc7c22b;
	}
	.info_container .content {
		display: block;
		font-size: 15px;
		line-height: 1.4;
		padding: 10px 5px 5px 5px;
		text-align: justify;
	}
	.info_container .item-time .content {
		display: block;
		align-items: initial;
		padding: 10px 1px 5px 1px;
	}

}
/*装飾*/
.label-square {
	gap: 12px; /* 文字との間隔調整 */
	position: relative;
}

/* 左の4つの■（2×2の正方形） */
.label-square::before {
	content: "";
	width: 18px;   /* 全体の大きさ */
	height: 18px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 1fr);
	gap: 2px; /* 四角同士の隙間 */
}

/* 4つの小さな■を作る */
.label-square::before {
	background:
		linear-gradient(var(--main-color) 0 0) left top,
		linear-gradient(var(--accent-color1) 0 0) right top,
		linear-gradient(var(--accent-color1) 0 0) left bottom,
		linear-gradient(var(--main-color) 0 0) right bottom;
	background-size: 8px 8px; /* 小さい■のサイズ */
	background-repeat: no-repeat;
}


/*galley*/
.clinic-sec-sub {
	padding: var(--v-space3) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
	background-size: 4px 4px;
	background-image: repeating-linear-gradient(0deg, #dde8ee, #dde8ee 1px, #fff 1px, #fff);
}
/**/
.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;
	}
}








/*======= 一般診療ページ ======*/
.gene_sec1 {
	padding: var(--v-space3) 0 clamp(25px, 3vw, 40px) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
/**/
.section-nav {
	margin: 40px 0;
}
.section-nav__wrap {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 16px;
}
.section-nav__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 14px 12px;
	background: #fff;
	border: 2px dotted #2ca49aa1;
	border-radius: 9px;
	text-decoration: none;
	transition: background 0.2s ease, border 0.2s ease, box-shadow 0.2s ease;
}
.section-nav__item:hover {
	background: #2ca49a0d;
	box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}
.section-nav__icon {
	width: 45px;
	height: 45px;
	margin-bottom: 7px;
}
.section-nav__icon img {
	width: 100%;
	height: auto;
}
.section-nav__text {
	font-size: clamp(15px, 1.5vw, 16px);
	font-weight: 600;
	color: #333;
}
/**/
.section-nav__item--flow {
	background: #fff;
	border: 2px dotted #de8625b5;
}
.section-nav__item--flow:hover {
	background: #de86251f;
	box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}


/*歯科（虫歯治療）*/
.gene_sec2 {
	padding: var(--v-space3) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}

.iminli{
	outline: 1px solid #ccc;
 	outline-offset: -0.5rem;
}

/*歯周病*/
.gene_sec3 {
	padding: var(--v-space3) 0;
	background-color: #f1f8f9;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
/*ブリッジ・入れ歯*/
.gene_sec4 {
	padding: var(--v-space3) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}


/*予防歯科*/
.care_sec {
	padding: var(--v-space2) 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.65);
		width: fit-content;
		padding: 30px 20px;
	}
}

/*治療の流れ*/
.gene_sec5 {
	padding: var(--v-space2) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
.gene_sec5::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: clamp(2px,0.7vw,3px);
	background-image: linear-gradient( 135deg, #fff 0%, #b5997b 40%, #b7952d 60%, #fff 100% );
}

/**/
.flow3v-content {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
	padding: 20px 10px;
	margin: 40px 0 10px 0;
}
.flow3v-item {
	background: #ffffffe8;
	padding: 25px;
	border-radius: 15px;
	box-shadow: 0 8px 16px rgba(0,0,0,0.1);
	position: relative;
	border-left: 4px solid var(--main-color);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.flow3v-item:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}
/*丸*/
.flow3v-icon {
	position: absolute;
	top: -10px;
	left: -20px;
	width: 40px;
	height: 40px;
	background: linear-gradient(45deg, #2ca49a, #4b79a1);
	border-radius: 50%;
	box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.flow3v-body {
	display: flex;
	flex-direction: column; /* 文章→画像の縦並び固定 */
	gap: 15px;
}
/* Step番号 */
.flow3v-step {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: #888;
	text-transform: uppercase;
}
/* 見出し本体 */
.flow3v-title {
	font-size: clamp(17px, 1.6vw, 22px);
	color: var(--main-color);
	margin-bottom: 10px;
	border-bottom: 1px #ccc dotted;
	padding-bottom: 3px;
}
.flow3v-text-area p {
	font-size: clamp(14px, 1.4vw, 15px);
	line-height: 1.5;
	text-align: justify;
}
.flow3v-image-area img {
	width: 100%;
	height: auto;
	border-radius: 10px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* タブレットは2列、スマホは1列 */
@media (max-width: 1024px) {
	.flow3v-content {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 768px) {
	.flow3v-content {
		grid-template-columns: 1fr;
		gap: 35px;
	}
}






/*======= 保険外診療ページ ======*/
.priv_sec1 {
	padding: var(--v-space3) 0 clamp(25px, 3vw, 40px) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
/*インプラント*/
.priv_sec2 {
	padding: var(--v-space3) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
/*審美治療*/
.priv_sec3 {
	padding: var(--v-space3) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
	background-image: radial-gradient(#c5e3df54 15%, transparent 16%), radial-gradient(#ffdf5f54 15%, transparent 16%);
	background-size: 20px 20px;
	background-position: 0 0, 10px 10px;
}
.priv_sec3::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: clamp(2px,0.7vw,3px);
	background-image: linear-gradient( 135deg, #fff 0%, #b5997b 40%, #b7952d 60%, #fff 100% );
}

/* ==========================
   Case Grid（症例の塊を2列）
========================== */
.case-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
	margin-top: 30px;
}

/* タブレット */
@media screen and (max-width: 768px) {
	.case-grid {
		grid-template-columns: 1fr;
	}
}
/* 画像並び */
.case-images {
	display: flex;
	gap: 20px;
}
/* 1画像単位 */
.case-image {
	position: relative;
	width: 100%;
}
.case-image img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 6px;
}
/* 被せ文字 */
.case-label {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 6px 0;
	background: rgba(0, 0, 0, 0.5);
	color: #fff;
	font-size: 14px;
	text-align: center;
	letter-spacing: 0.05em;
	border-radius: 0 0 6px 6px;
}
/**/
@media screen and (max-width: 768px) {
	.case-images {
		display: flex;
		flex-direction: row; /* ← 画像は横並び */
		gap: 16px;
		margin-top: 16px;
	}
}
@media screen and (max-width: 568px) {
	.case-images {
		flex-direction: column;
	}
}


/*ホワイトニング*/
.priv_sec4 {
	padding: var(--v-space3) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
.priv_sec4::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: clamp(2px,0.7vw,3px);
	background-image: linear-gradient( 135deg, #fff 0%, #b5997b 40%, #b7952d 60%, #fff 100% );
}

/*このような変化が期待できます*/
.priv_care {
	margin: 30px 0;
	padding: 30px;
	background-color: #fff;
	border-radius: 8px;
	background-image: radial-gradient(#c5e3df54 15%, transparent 16%), radial-gradient(#ffdf5f54 15%, transparent 16%);
	background-size: 20px 20px;
	background-position: 0 0, 10px 10px;
}
.priv_care .section-title {
	text-align: center;
	font-size: 24px;
	margin-bottom: 40px;
}
.care-items {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	max-width: 1000px;
	margin: 0 auto;
}
.care-item {
	text-align: center;
}
.care-item img {
	width: 100%;          /* 親幅に合わせる */
	max-width: 180px;     /* PCでは最大180px */
	height: auto;
	display: block;
	margin: 0 auto 15px;
}
.care-item h5 {
	font-size: clamp(14px, 1.6vw, 19px);
	line-height: 1.4;
	text-align: center;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
	.care-items {
		grid-template-columns: repeat(2, 1fr); /* タブレットは2列 */
	}
}
@media screen and (max-width: 468px) {
	.priv_care {
		padding: 30px 20px;
	}
	/*.care-items {
		grid-template-columns: 1fr;
	}*/
}



/*共通*/
.recommend-box {
	background: #dae7e447;
	border-left: 4px solid var(--main-color);
	padding: 15px 18px;
	border-radius: 8px;
	margin-top: 20px;
}
.recommend-title {
	font-weight: 700;
	margin-bottom: 8px;
	font-size: 15px;
	color: var(--main-color);
}
/* ===============================
   Treatment Data
=============================== */
.treatment-data {
	margin-top: 50px;
}
.treatment-data__container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 25px; /* 行・列両方に25px */
	grid-auto-rows: auto; /* 行高さを自動調整 */
}
.treatment-data__item {
	background: #ffffff;
	border: 1px solid #e6e6e6;
	border-radius: 12px;
	padding: 22px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.05);
	display: flex;
	flex-direction: column;
	height: auto; /* 100% → auto に変更 */
}
.treatment-data__title {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 10px;
	padding-bottom: 6px;
	border-bottom: 2px solid var(--main-color);
	color: var(--main-color);
}
.treatment-data__item p {
	font-size: clamp(14px, 1.4vw, 15px);
	line-height: 1.7;
	margin: 0;
}
/* Responsive*/
@media (max-width: 768px) {
	.treatment-data__container {
		grid-template-columns: 1fr;
	}
}






/*======= よくある質問ページ ======*/
.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: 20px 25px 20px 20px;
	margin: 0 0 20px 0;
	font-size: clamp(15px, 1.5vw, 16px);
}
.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: 105%;
	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: var(--main-color);*/
	color: var(--main-color);
}
.faq-label.a {
	/*background-color: var(--accent-color1);*/
	color: var(--accent-color1);
}
.faq-question,
.faq-answer {
	margin: 0;
	line-height: 1.5;
	text-align: justify;
}
.faq-question {
	font-weight: bold;
	font-size: 1.1em;
	color: #303030;
}
.faq-answer {
	color: #555;
}
hr.faqHr{
	height: 0px;
	border-bottom: 2px dotted #afa595;
	margin: 13px auto;
}







/*==========================================================*/
/*      	　　　個人よく使う指定CSS  		  	  */
/*=========================================================*/
/*------------------------------------------------*/
/*セクションの間イメージ画像*/
.sec-adimg{
	padding: 0px;
	background-color: var(--base-color);
	position: relative;
	z-index: 1;
}
.sec-adimg-container {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 0px;
	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: 968px) {
	.sec-adimg-container {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		grid-template-rows: 1fr;
		grid-column-gap: 0px;
		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; }
}

@media (max-width: 568px) {
	.sec-adimg-container {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: 1fr;
		grid-column-gap: 0px;
		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 { display: none; }
	.sec-adimg-container-item5 { display: none; }
}

/*------------------------------------------------*/

/*印刷には表示されない*/
@media print{
	.print_none{
		display: none;
	}
}
/*調整*/
.adjus{
	padding-top: 10px;
	padding-bottom: 30px;
}
/*テキストcenter→justify*/
.tx-ctj {
	text-align: center;
}
@media (max-width: 968px) {
	.tx-ctj {
		text-align: justify;
	}
}
/*印刷時*/
@media print{
	.tx-ctj {
		text-align: center;
	}
}
/*文字シャドウ*/
.tx-sha {
	text-shadow: #000 1px 0 10px;
}
/**/
.kukuri{
	border: 1px solid var(--accent-color2);
	padding: 10px 13px 10px 13px;
	margin: 20px 0 0 0;
	box-sizing: border-box;
	outline: 1px solid #ccc;
	outline-offset: -0.4rem;
	width: fit-content;
	background-color: #ffffffc2;
}
.kukuri p{
	font-size: clamp(14px, 1.4vw, 15px);
	line-height: 1.5;
	text-align: justify;
}
@media (max-width: 568px) {

}

/* タグ */
.kakomi01{
	margin-top: 5px;
	margin-bottom: 5px;
}
.kakomi01 span {
	padding: 3px 7px 4px 7px;
	margin: 2.5px 7px 7px 0;
	background-color: #2ca49ab0;
	color:#fff;
	/*border: 1px solid var(--main-color);*/
	border-radius: 5px;
	text-align: center;
	display: inline-block;
	font-size: clamp(12px, 1.3vw, 14px);
}
/*任意のみ表示*/
@media only screen and (max-width: 869px) {
	.nini-869 {
		display: none;
	}
}
/*印刷時*/
@media print{
	.nini-869 {
		display: inline;
	}
}

/*画像角丸*/
img.borad {
	border-radius: 7px;
	/*border: 1px solid #e1e1e1;*/
}
img.borad2 {
	border-radius: 11px;
}
/* コンテンツ幅 */
div.haba{
	margin: 20px 9%;
	padding: 0;
}
@media (max-width: 1168px)  {
	div.haba{
		margin: 20px 5%;
		padding: 0;
	}
}
@media (max-width: 968px)  {
	div.haba{
		margin: 20px 0;
		padding: 0;
	}
}
/*印刷時*/
@media print{
	div.haba{
		margin: 20px 9%;
		padding: 0;
	}
}

/*pcとspで画像のサイズ変えたいときの指定*/
.pcspwid{
	width: 450px;
	margin: 0 auto;
}
@media only screen and (max-width: 568px) {
	.pcspwid{
		width: 100%;
	}
}
/**/
.pcspwid2{
	width: 460px;
	margin: 15px auto;
}
@media only screen and (max-width: 568px) {
	.pcspwid2{
		width: 100%;
		margin: 15px auto;
	}
}
/**/
.fniyori {
	font-feature-settings: 'palt' 1;
	-webkit-font-smoothing: antialiased;
}
/*四角デザイン*/
.head-square {
	color: #a7ccad;
	font-size: clamp(16px, 1.8vw, 19px);
	display: flex;
	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(#9acaa2 0 0) left top,
		linear-gradient(#fff 0 0) right top,
		linear-gradient(#fff 0 0) left bottom,
		linear-gradient(#9acaa2 0 0) right bottom;
	background-size: 6px 6px; /* 小さい■のサイズ */
	background-repeat: no-repeat;
}
/*□装飾*/
.cp_h4title {
	position: relative;
	font-size: clamp(19px, 1.8vw, 20px);
	line-height: 1.4;
	padding: 2px 2px 2px 27px;
	/*border-bottom: 1px dotted #999;*/
	/*font-family: 'Noto Serif JP', serif;*/
	margin: 0 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(--accent-color3);
	left: 10px;
}
ul.nor li{
	/*border-bottom: 1px dashed #b9b9b9;*/
	padding: 0.2em 0;
	font-size: clamp(14px, 1.5vw, 15px);
}
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;
}
/*リスト　通常*/
ul.usuallyul{
	list-style: disc;
	margin: 5px 1px 5px 25px;
}
ul.usuallyul li{
	font-size: clamp(14px, 1.5vw, 15px);
	line-height: 1.3;
	margin-bottom: 5px;
	color: #555;
}
ul.usuallyul li:last-child{
	margin-bottom: 0px;
}
/*4つの枠で3つ*/
/*flexで*/
.general-item-circle3 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	box-sizing: border-box;
	margin: 30px 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;
		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;
	}
}


