@charset "utf-8";

:root {

}

@media (prefers-color-scheme: dark) {
	:root {

	}
}

/* モバイル　ALL */
@media screen and (max-width: 425px) {
	:root {
	}
}

/* タブレット */
@media screen and (min-width:426px) and (max-width: 768px) {
	:root {
	}
}

/* ノートパソコン */
@media screen and (min-width:769px) and ( max-width:1024px) {
	:root {
	}
}

/* ノートパソコン L */
@media screen and (min-width:1025px) and ( max-width:1440px) {
	:root {
	}
}

/* 2K以上 */
@media screen and (min-width:1441px) and ( max-width:2560px) {
	:root {
	}
}

/* 4K以上 */
@media screen and (min-width:2561px) {
	:root {
		
	}
}








/* ーーーーーーーーーーーーーーーーーーーー
	Services
ーーーーーーーーーーーーーーーーーーーー */

#contents.services {
	& h3 {
		font-size: var(--Size_12);
		color: var(--Color_B100);
	}
	& h4 {
		padding: 0 0 var(--Size_06);
		font-style: italic;
	}
	& p {
		& strong {
		font-size: var(--Size_12);
		color: var(--Color_B100);
		font-style: italic;
		}
	}
	& div.img {
		display: flex;
		justify-content: center;
		gap: var(--Gap);
		margin: var(--Card_margin);
		& figure {
			display: flex;
			justify-content: center;
			& img {

			}
		}
	}
}



