@charset "utf-8";
/*-------------------------
	mainFunction style
	created: 2021.12.08
	updated: 2022.08.31
---------------------------*/

#title h1 {
	column-gap: 20px;
}

.onePoint ul li.column3 {
	width: 332px;
}

.attention {
	width: clamp(104px, 332px, 100%);
}

/* box */
.box p,
.box ol li,
.box table,
.box figcaption {
	line-height: 1.5;
	font-size: 0.95rem;
}


.box > .box {
	padding: 30px 20px 0;
	margin-bottom: 3rem;
}

#c01 > .box {
	display: flex;
	justify-content: space-between;
	column-gap: 2rem;
}

#c01 div.tableCont {
	display: flex;
	flex-direction: column;
	gap: 3rem 0;
}

#c01 div.tableCont p {
	margin-bottom: 1rem;
}

#c01 div.tableCont table.basicTable {
	width: 100%;
}

#c01 div.tableCont table.basicTable tr:nth-child(even) {
	background-color: #ccc;
}

#c01 div.tableCont table.basicTable tr:nth-child(-n + 2) {
	white-space: nowrap;
}

#c01 div.tableCont table.basicTable tr:nth-child(-n + 2),
#c01 div.tableCont table.basicTable tr:nth-child(n + 3) th {
	background-color: #333;
	color: white;
}

#c01 div.tableCont table.basicTable tr:nth-child(n + 3) th {
	text-align: left;
}

#c01 div.tableCont table.basicTable tr:nth-child(n + 3) td {
	text-align: center;
}

#c01 div.tableCont ol {
	counter-reset: num;
	list-style: none;
}

#c01 div.tableCont ol li {
	padding-left: 2.5rem;
	text-indent: -2.5rem;
}

#c01 div.tableCont ol li::before {
	counter-increment: num;
	content: "※" counter(num) "：";
}


#c01 div.imgCont {
	display: flex;
	flex-direction: column;
	gap: 3rem 0;
}

#c01 div.imgCont img {
	max-width: 100%;
}

#c01 div.imgCont figcaption {
	margin-top: 1rem;
	text-align: center;
}

/* -Tablet- 600px-1024px */
@media screen and (max-width: 1024px){
	
	#title h1 img:last-child {
		display: none;
	}
	
	.onePoint ul li.column3,
	.onePoint ul li.column3 a {
		width: 352px;
	}
	
	#c01 > .box {
		flex-wrap: wrap;
		gap: 2rem;
	}
	
	#c01 div.tableCont {
		width: 100%;
	}
	
	#c01 div.tableCont div.overflowTable {
		overflow-x: auto;
		white-space: nowrap;
		overflow-scrolling: touch;
		-webkit-overflow-scrolling: touch;
	}

	#c01 div.imgCont {
		flex-wrap: wrap;
		flex-direction: row;
		justify-content: space-between;
		gap: 3rem 2rem;
	}

}


/* -SP- -599px */
@media screen and (max-width: 599px){
	
	#title h1 span {
		line-height: 1.5;
	}
	
	#title h1 img {
		max-width: 60%;
	}
	
	#contents .container h2 {
		height: auto;
		padding-top: 1px;
		padding-bottom: 1px;
	}
	
	#c01 div.tableCont ol li {
		margin-bottom: 0.5rem;
	}
	
	#c01 div.imgCont {
		justify-content: center;
	}
	
}