@charset "utf-8";

/* 共通 */
.h-title{
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;
	align-items: center;
	gap: 4px 12px;
	margin-bottom: 40px;
}
.h-title svg{
	width: 28px;
	height: 28px;
}
.h-title h2{
	font-family: var(--font-en);
	font-size: 2rem;
	font-weight: 400;
}
.h-title.mini{
	gap: 12px;
	margin-bottom: 8px;
}
.h-title.mini svg{
	width: 22px;
	height: 22px;
}
.h-title.mini h2{
	font-size: 1.375rem;
}
@media (min-width:768px){ /* 768px以上全て */
}
@media screen and (min-width:768px) and (max-width:1499px) { /* for 幅狭PC＆TAB */
}
@media screen and (max-width: 767px) { /* for SP */
	.h-title{
		gap: 0 0.8em;
		margin-bottom: 8vw;
	}
	.h-title svg{
		width: 1.375rem;
		height: 1.375rem;
	}
	.h-title h2{
		font-family: var(--font-en);
		font-size: 1.375rem;
		font-weight: 400;
	}
	.h-title.mini{
		gap: 0 0.8em;
		margin-bottom: 0;
	}
	.h-title.mini svg{
		width: 1.125rem;
		height: 1.125rem;
	}
	.h-title.mini h2{
		font-size: 1.125rem;
	}
}

	/* servceList_checkGroup */
.servceList_checkGroup{
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 0 16px;
	padding: 35px 40px 30px 40px;
	border: var(--border);
	border-radius: 8px;
	margin-bottom: 80px;
}
.servceList_checkGroup table{
  margin-bottom: 0;
}
.servceList_checkGroup tr:not(:last-child){
	border-bottom: var(--border);
}
.servceList_checkGroup th{
	width: 12em;
	padding-top: 17px;
	padding-bottom: 8px;
	font-size: 0.9375rem;
	font-weight: 400;
	color: var(--fontColor-500);
	vertical-align: top;
}
.servceList_checkGroup td{
	padding: 14px 0 7px 1em;
}
.servceList_checkGroup td label{
	display: inline-flex;
	align-items: flex-start;
	gap: 0.5em;
	padding: 3px 8px;
	border-radius: 5px;
	margin-bottom: 5px;
	cursor: pointer;
}
.servceList_checkGroup td label:not(:last-child){
	margin-right: 0.3em;
}
.servceList_checkGroup td label input{
	margin-top: 6px;
}
@media (min-width:768px){ /* 768px以上全て */
	.servceList_checkGroup td label:focus,
	.servceList_checkGroup td label:hover{
		background: var(--bg-gray);
	}
}
@media screen and (min-width:768px) and (max-width:1499px) { /* for 幅狭PC＆TAB */
	.servceList_checkGroup{
		max-width: 96vw;
		margin-left: auto;
		margin-right: auto;
		padding-left: 32px;
		padding-right: 32px;
	}
	.servceList_checkGroup table{
		margin-bottom: 0;
	}
}
@media screen and (max-width: 767px) { /* for SP */
	
	.servceList_checkGroup{
		flex-flow: column wrap;
		gap: 0 3vw;
		padding: 5vw;
		margin-bottom: 8vw;
	}
	.servceList_checkGroup table,
	.servceList_checkGroup table tr,
	.servceList_checkGroup table th{
		display: block;
		width: 100%;
	}
	.servceList_checkGroup table{
		margin-bottom: 0;
	}
	.servceList_checkGroup table th{
		padding: 5vw 0 0 0;
	}
	.servceList_checkGroup table td{
		display: flex;
		flex-flow: row wrap;
		justify-content: flex-start;
		align-items: center;
		gap: 0.4em 2em;
		width: 100%;
		padding: 2vw 0 5vw 1vw;
	}
  .servceList_checkGroup table tr:last-of-type td{
    padding-bottom: 0;
  }
	.servceList_checkGroup td label{
		padding: 0;
		margin-bottom: 0;
	}
	.servceList_checkGroup td label:not(:last-child){
		margin-right: 0;
	}
}

.service--grid{
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 7px;
	width: 100%;
}
.service--parts{
	display: block;
	width: 100%;
	max-width: 199px;
	aspect-ratio: 1/1;
	background: var(--bg-gray);
	border-radius: 10px;
	position: relative;
}
.service--parts .arrow{
	grid-area: arrow;
	align-self: center;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 36px;
	height: 20px;
	margin-bottom: 4px;
	color: #000;
	background: #FFF;
	border: var(--border);
	border-radius: 25px;
	position: absolute;
	right: 8px;
	bottom: 8px;
	z-index: 2;	
}
.service--parts .arrow svg{
	width: 10px;
	height: 9px;
}
.service--grid .nothing{
	display: block;
	width: 100%;
	text-align: center;
	padding: 50px 2vw;
	font-size: 0.875rem;
	color: var(--fontColor-500);
}
.service--grid img {
  vertical-align: bottom;
}
@media (min-width:768px){ /* 768px以上全て */
  .service--wrap{
		margin-bottom: 120px;
  }
  .service--parts{
		transition: opacity 0.3s ease;
	}
	.service--parts:hover{
		opacity: 0.65;
		transition: opacity 0.3s ease;
	}
}
@media screen and (min-width:768px) and (max-width:1499px) { /* for 幅狭PC＆TAB */
	.service--wrap{
		padding-left: 2vw;
		padding-right: 2vw;
	}
	.service--parts{
		width: calc((100% - 48px ) / 7);
	}
}
@media screen and (min-width:768px) and (max-width:1300px){ /* 特記サイズ */
	.service--parts{
		width: calc((100% - 40px ) / 6);
	}
}
@media screen and (min-width:768px) and (max-width:1000px){ /* 特記サイズ */
	.service--parts{
		width: calc((100% - 32px ) / 5);
	}
}
@media screen and (max-width: 767px) { /* for SP */
  .service--wrap{
		margin-bottom: 18vw;
  }
	.service--grid{
		gap: 2vw;
	}
	.service--parts{
		max-width: calc((100% - 4vw - 1px) / 3);
	}
	.service--parts .arrow{
    width: 5.5vw;
    height: 3.5vw;
		right: 0.8vw;
		bottom: 0.8vw;
	}
}
