@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;
}

/*タイトル(共通)*/
.line{
	width: 1px;
	height: auto;
	padding-top: 2.5%;
	background-color: #999;
	margin: 0.5% auto;
}
@media (max-width: 768px) {
	.line{
		padding-top: 7.5%;
	}
}
/**/
.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-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: -1em;

	transform-origin: center top;
	pointer-events: none;
	white-space: nowrap;
	font-weight: normal;
	color: #b7a48f;
	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: 50px 0 5px 0;
	background-color: #FFF;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}
@media print, screen and (min-width: 768px) {
	.greeting {
		background-image: url(../img/bg_01.jpg);
		background-repeat: no-repeat;
		background-position: top left;
		background-size: cover;
	}
}
@media only screen and (max-width: 767px) {
	.greeting {
		background-image: url(../img/bg_01_sp.jpg);
		background-repeat: no-repeat;
		background-position: top center;
		background-size: cover;
	}
}

/* Greeting Layout */
.greeting{
	--card-radius: 0px;
	--photo-radius: 0px;
	--gap: 10px;
}
.greeting__inner{
	margin: 0 auto;
	max-width: 1250px;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: var(--gap);
	align-items: start;
}
/* 左：白カード（テキスト） */
.greeting__text{
	background: #dee9f24d;
	padding: clamp(18px, 2.2vw, 26px);
	border-radius: var(--card-radius);
	/* box-shadow: 0 10px 18px rgba(0,0,0,.08); */
}
.greeting__title{
	margin: 0 0 2px 0;
	color: var(--main-color);
	font-size: clamp(21px, 2.3vw, 27px);
	line-height: 1.45;
	letter-spacing: .06em;
	font-family: serif;
	font-weight: 600;
}
.greeting hgroup p {
	margin: 0 0 17px 0;
	color: var(--accent-color2);
	font-size: clamp(14px, 1.6vw, 16px);
	line-height: 1.6;
	letter-spacing: .08em;
}
.greeting__text p{
	margin: 0;
	color: #111;
	font-size: 15px;
	line-height: 1.9;
}
/* 右：2枚の縦長画像を「別々の列」に配置 */
.greeting__media{
	display: contents; /* ←親の3カラム(2fr/1fr/1fr)をそのまま使う */
}
/* 画像共通 */
.greeting__photo{
	margin: 0;
	height: clamp(320px, 42vw, 520px);  /* 縦長の気持ち良さ */
	background: rgba(0,0,0,.06);        /* 読み込み前の下地 */
	overflow: hidden;
	border-radius: var(--photo-radius);
	/* box-shadow: 0 10px 18px rgba(0,0,0,.10); */
}
.greeting__photo img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: left top; /* 空や余白を上に見せたい時にも効く */
	display: block;
	outline: 1px solid #ccc;
	outline-offset: -0.5rem;
}
/* 右の“段差”を作る：見本っぽく、右端の方を上に/下にずらす */
.greeting__photo.is-a{
	grid-column: 2;             /* 真ん中の1fr */
	margin-top: 5vw;           /* 少し下げる（見本の中段っぽさ） */
}

.greeting__photo.is-b{
	grid-column: 3;             /* 右の1fr */
	margin-top: 0;              /* こちらは上め */
}
/* PC時：テキスト位置を下げる */
@media print, screen and (min-width: 768px) { 
	.greeting__text{
		margin-top: 10vw; /* ← 画像に合わせて調整（40$301C80pxで微調整） */
	}
}
/* ====== SP：縦積み ====== */
@media only screen and (max-width: 767px) {
	.greeting__inner {
		grid-template-columns: 1fr;
	}
	.greeting__media {
		order: 1;
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: var(--gap);
	}
	.greeting__text {
		order: 2;	/* 文章を後 */
	}
	.greeting__photo.is-a,
	.greeting__photo.is-b {
		grid-column: auto;
		/* margin-top: 0; */
		height: 320px;
	}
	.greeting__text p{
		text-align: justify;
	}
	.greeting__photo.is-a{
		margin-top: 0vw;
	}
}



/* お知らせ欄 */
.news-section {
	background: rgba(255, 255, 255, 0.7);
	padding: 20px 30px 25px 30px;
	border: 3px double #B8D3DA;
	border-radius: 8px;
	margin: 30px 0;
}
/**/
@media screen and (max-width: 567px) {
	.news-section {
		padding: 15px 20px 20px 20px;
	}
}
.news-heading {
	display: flex;
	align-items: center; /* 縦方向の中央揃え */
	font-size: clamp(20px, 2vw, 24px);
	font-weight: 400;
	line-height: 1.3;
	margin: 10px 0;
	padding: 3px 2px 5px 47px;
	border-top: 1px dotted #999;
	border-bottom: 1px dotted #999;
	background: url(../img/icon02.png) no-repeat 3px center;
	background-size: 40px;
	min-height: 40px;
	color: var(--main-color);
	background-color: #dbd0ba38;
}
.news-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.news-item {
	padding: 10px 0;
	border-bottom: 1px dashed #ccc;
}
.news-item > .new-icon {
	display: inline-block;
	font-size: 11px;
	font-weight: bold;
	color: #b02f2f;
	background-color: #f9dc6b4f;
	padding: 2px 5px;
	margin-right: 12px;
	border-radius: 3px;
	width: 60px;
	text-align: center;
	vertical-align: middle;
}
.news-date {
	font-weight: 600;
	color: var(--accent-color2);
	margin-right: 15px;
	display: inline-block;
	min-width: 90px;
}
.news-title {
	display: inline-block;
	font-weight: 600;
}
.news-body {
	margin-top: 5px;
	color: #333;
}
/* モバイル対応 */
@media screen and (max-width: 767px) {
	.news-date,
	.news-title {
		display: block;
		/*margin-bottom: 4px;*/
	}
}
/*印刷時の為*/
@media print{
	.news-date {
		font-weight: 600;
		color: var(--accent-color2);
		margin-right: 15px;
		display: inline-block;
		min-width: 90px;
	}
	.news-title {
		display: inline-block;
		font-weight: 600;
	}
}


/*------------------------------------------------------------*/
/* お問い合わせ */
.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_06.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_06.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(255, 255, 255, 0.99);
	text-align: center;
}
@media only screen and (max-width: 767px) {
	.contact_sec p {
		text-align: justify;
	}
	.contact_bg{
		background-color: rgba(255, 255, 255, 0.4);
		padding: 30px 20px 40px 20px;
	}
}
/*TELバナー*/
.tel_bnr{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 20px;
	grid-row-gap: 10px;
}
@media only screen and (max-width: 767px) {
	.tel_bnr{
		grid-template-columns: repeat(1, 1fr);
		grid-row-gap: 10px;
	}
}
.tel_bnr-contact{
	display: grid;
	grid-template-columns: 1fr 0.3fr;
	grid-template-rows: 1fr;
	grid-column-gap: 50px;
	grid-row-gap: 10px;
	max-width: 700px;
	margin: 0 auto;
}
@media only screen and (max-width: 767px) {
	.tel_bnr-contact{
		grid-template-columns: repeat(1, 1fr);
		grid-row-gap: 10px;
	}
}
/* ================================
   single（見た目：白い枠だけ）
================================ */
.tel_bnr-single{
	background: #ffffff85;
	/*border: 1px solid #e2e8f0;
	border-radius: 10px;*/
	padding: 20px 40px;
	box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

/* ================================
   ボタン制御
================================ */
.tel_bnr-single .btn-call{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	justify-self: end; /* grid内で右寄せ */
}

/* ================================
   ボタンデザイン
================================ */
.btn-call{
	background: var(--main-color);
	color: #fff;
	padding: 14px 28px;
	border-radius: 8px;
	font-weight: bold;
	font-size: 15px;
	white-space: nowrap;
	text-decoration: none;
	box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
	transition: background 0.2s, transform 0.1s;
	width: auto;          /* auto列を押し広げない */
	max-width: none;
	align-self: center;
}
.btn-call:hover{
	background: var(--accent-color1);
	transform: translateY(-1px);
}

/* SP：押しやすくフル幅 */
@media only screen and (max-width: 767px) {
	.btn-call{
		width: 100%;
		box-sizing: border-box;
	}
	.tel_bnr-single .btn-call{
		justify-self: center; /* grid内で中央寄せ */
	}
	.tel_bnr-single{
		background: #ffffffa6;
		padding: 20px 20px;
	}
}

/*------------------------------------------------------------*/




/*私たちが大切にしていること*/
.top_sec1 {
	padding: var(--v-space) 0 0 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: -60px;
}
.craf-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/* カードを背景より「上側」に置く」 */
.craf-cards {
	background: rgba(244, 244, 244, 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;
}
/* カード内部 */
.card {
	padding: 20px 30px;
}
.card + .card {
	border-left: 1px solid #ddd;
}
.point {
	text-align: center;
	color: #224E8A;
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 12px;
}
.point span {
	font-size: 70px;
	line-height: 1;
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
.craf-title {
	text-align: center;
	font-size: clamp(19px, 2vw, 24px);
	margin-bottom: 16px;
	color: #444;
}
.craf-text {
	font-size: clamp(13px, 1.4vw, 15px);
	color: #555;
	text-align: justify;
}
@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 20px; 
		width: 85%;
		margin: 0 auto;
	}
	.card {
		padding: 20px 10px;
	}
	.card + .card {
		border-left: none;
		border-top: 1px solid #ddd;
		padding-top: 20px;
	}
}




/*診療内容のご案内*/
.top_sec2 {
	padding: var(--v-space2) 0 var(--v-space) 0;
	background-color: var(--base-color);
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}
@media (max-width: 868px) {
	.top_sec2 {
		padding: var(--v-space) 0;
	}
}
/**/
.strength-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-top: 50px;
}
/* 各カード */
.strength-details {
	background-color: #fff; /* デフォルト */
	padding: 1.5rem;
	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;
}
/* 画像に英語を重ねる */
.strength-details figure{
	position: relative;
	overflow: hidden;
	border-radius: 8px;
}

.img-en{
	position: absolute;
	right: 12px;
	bottom: 10px;
	font-size: 13px;
	font-weight: bold;
	color: #4A90A4;
	letter-spacing: .08em;
	/*background: rgba(0,0,0,0.45);*/
	padding: 4px 8px;
	border-radius: 3px;
	-webkit-text-stroke: 3px #fff;
	text-stroke: 3px #fff;
	paint-order: stroke;
}
@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;
	}
	.strength-details {
		padding: 1.4rem;
	}
}




/*生涯の歯を守るための予防ケア*/
.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: 77% 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: 868px) {
	.bgfit2 {
		background-color: rgb(255, 255, 255, 0.5);
		width: fit-content;
		padding: 30px 20px;
	}
}





/* よくある質問 */
.faq_sec {
	padding: var(--v-space2) 0 clamp(120px, 9vw, 180px);
	background-color: #F9F8F5;
	background-image: url(../img/bg-line.svg);
	background-repeat: no-repeat;
	background-position: bottom -1px center;; /* 下端中央に配置 */
	background-size: 100% 12vh; /* 横を100%、高さを固定（例：50px） */

	position: relative;/* sectionの位置を相対的にする*/
	z-index: 1;/* 背景画像より上に表示 */
}
@media (max-width: 768px) {
	.faq_sec {
		background-size: 100% 6vh; /* 横を100%、高さを固定（例：50px） */
	}
}
@media print{
	.faq_sec {
		padding: var(--v-space2) 0 clamp(120px, 9vw, 180px);
		background-color: #F9F8F5;
		background-image: url(../img/bg-line.svg);
		background-repeat: no-repeat;
		background-position: bottom -1px center;; /* 下端中央に配置 */
		background-size: 100% 80px; /* 横を100%、高さを固定（例：50px） */
		position: relative;/* sectionの位置を相対的にする*/
		z-index: 1;/* 背景画像より上に表示 */
	}
}
/**/
div.faq-in{
	padding: 0;
}
/*枠付きデザイン*/
.onecours{
	background-color: #ffffffc9;
	padding: 15px 25px 15px 20px;
	margin: 0 0 17px 0;
	font-size: clamp(15px, 1.5vw, 16px);
	/*border: 1px #f0efdd solid;*/
}
.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;
}







/* グリッド全体 */
.our-clinic-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
	gap: 15px;
	margin: 20px auto 50px auto;
	box-sizing: border-box;
	max-width: 1030px;
}
/* 各カード */
.oc-card {
	overflow: hidden;
	display: flex;
	flex-direction: column; /* 縦方向に並べる */
}
/* 画像 */
.oc-image {
	width: 100%;
	aspect-ratio: 4 / 3; /* 横長比率（おすすめ） */
	overflow: hidden;
}
.oc-image img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.4s ease;
}
.oc-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;   /* ここが重要 */
	object-position: center; /* 中央基準 */
	display: block;
	transition: transform 0.4s ease;
}

/* ホバー時の画像拡大（枠内で拡大） */
.oc-image:hover img {
	transform: scale(1.05);
}
/* テキスト：画像の下に配置 */
.oc-text {
	padding: 5px 4px 16px 4px;
}
/* タイトル */
.oc-title {
	font-size: clamp(15px, 1.5vw, 16px);
	/*margin-bottom: 8px;*//*下に説明文などがある場合*/
	line-height: 1.4;
	text-align: center;
}
/* レスポンシブ対応 */
@media (max-width: 550px) {
	.our-clinic-grid {
		grid-template-columns: 1fr;
	}
}
















/*==========================================================*/
/*      	　　　個人よく使う指定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(--sub-color1);
	padding: 15px 18px 15px 18px;
	margin: 40px auto 20px auto;
	box-sizing: border-box;
	outline: 1px solid #ccc;
	outline-offset: -0.4rem;
	width: fit-content;
	background-color: #ffffffc2;
}
.kukuri p{
	font-size: clamp(15px, 1.6vw, 16px);
	line-height: 1.5;
	text-align: justify;
}

/* タグ */
.kakomi01{
	margin-top: 5px;
	margin-bottom: 5px;
}
.kakomi01 span {
	padding: 3px 7px 3px 7px;
	margin: 2.5px 7px 7px 0;
	background-color: #2c973d9c;
	color:#fff;
	/*border: 1px solid var(--main-color);*/
	border-radius: 5px;
	text-align: center;
	display: inline-block;
	font-size: clamp(11px, 1.3vw, 13px);
}
/*任意のみ表示*/
@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: 60px 8%;
	padding: 0;
}
@media only screen and (max-width: 968px)  {
	div.haba{
		margin: 60px 10px;
		padding: 0;
	}
}
/*印刷時*/
@media print{
	div.haba{
		margin: 60px 8%;
		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(18px, 1.8vw, 20px);
	padding: 2px 2px 2px 32px;
	border-bottom: 1px dotted #999;
	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: 10px;
	left: 5px;
	border: 2px solid var(--accent-color2);
}
.cp_h4title::after {
	top: 15px;
	left: 10px;
	border: 2px solid var(--accent-color1);
}
/*リスト　大きめディスク*/
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: #d3b457;
	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, 16px);
	line-height: 1.3;
	margin-bottom: 5px;
}
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;
	}
}


