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


/******************************************************

PC設定 1200px以上の場合に適用

*******************************************************/

/* serviceList */
.serviceList {
	background-color: #ededed;
	padding-top: 120px;
	padding-bottom: 120px;
	}

.serviceList__list {
	display: flex;
	flex-direction: column;
	gap: 100px;
	}

.serviceList__item {
	display: grid;
	grid-template-columns: 370px 1fr;
	gap: 110px;
	align-items: start;
	}

.serviceList__figure {
	width: 370px;
	height: 370px;
	background-color: #ededed;
	overflow: hidden;
	}

.serviceList__figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	}

.serviceList__body {
	padding-top: 0;
	}

.serviceList__title {
	font-size: 36px;
	font-weight: 700;
	color: #1d9791;
	line-height: 1.4;
	letter-spacing: 0.05em;
	margin-bottom: 20px;
	}

.serviceList__txt {
	font-size: 16px;
	line-height: 2.1;
	color: #333;
	letter-spacing: 0.04em;
	margin-bottom: 20px;
	}

.serviceList__spec {
	border: 1px solid #c8c8c8;
	padding: 18px 22px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.9;
	letter-spacing: 0.06em;
	color: #333;
	}





/******************************************************

タブレット 1199px以下の場合に適用

*******************************************************/

@media screen and (max-width: 1199px){


/* serviceList */
.serviceList {
	padding-bottom: 100px;
	}

.serviceList__list {
	gap: 80px;
	}

.serviceList__item {
	grid-template-columns: 280px 1fr;
	gap: 40px;
	}

.serviceList__figure {
	width: 280px;
	height: 280px;
	}

.serviceList__body {
	padding-top: 0;
	}

.serviceList__title {
	font-size: 30px;
	margin-bottom: 22px;
	}

.serviceList__txt {
	font-size: 15px;
	margin-bottom: 24px;
	}

.serviceList__spec {
	font-size: 15px;
	}


}



/******************************************************

タブレット小 959px以下の場合に適用

*******************************************************/

@media screen and (max-width: 959px){


/* serviceList */
.serviceList__item {
	grid-template-columns: 240px 1fr;
	gap: 32px;
	}

.serviceList__figure {
	width: 240px;
	height: 240px;
	}

.serviceList__title {
	font-size: 26px;
	margin-bottom: 16px;
	}

.serviceList__txt {
	font-size: 14px;
	}

.serviceList__spec {
	font-size: 14px;
	}


}



/******************************************************

スマホ 767px以下の場合に適用

*******************************************************/

@media screen and (max-width: 767px){


/* serviceList */
.serviceList {
	padding-top: 60px;
	padding-bottom: 64px;
	}

.serviceList__list {
	gap: 50px;
	}

.serviceList__item {
	display: block;
	}

.serviceList__figure {
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
	margin-bottom: 20px;
	}

.serviceList__body {
	padding-top: 0;
	}

.serviceList__title {
	font-size: 22px;
	margin-bottom: 16px;
	}

.serviceList__txt {
	font-size: 14px;
	line-height: 1.9;
	margin-bottom: 20px;
	}

.serviceList__spec {
	font-size: 14px;
	padding: 14px 16px;
	line-height: 1.8;
	}


}
