@charset "utf-8";

:root{
	--mainColor: #62b2b5;
	--lightColor: #a4d8db;
	--accentColor1: #fae019;
	--accentColor2: #fcf095;
	--accentColor3: #167e82;
}
body{
	letter-spacing: 0.08em;
	line-height: 1.3em;
	color: #333;
}
section:not(.inquiryArea,.annotationSection){
	padding: 50px 0;
	
}
sup{
	color: #444;
}
.display_select_guide{
	width: min(95% ,1000px);
	margin: 0 auto;
}
.wbr{
	word-break: keep-all;
}
.sp{
	display: none;
}
.pc{
	display: block;
}
.flexBox{
	display: flex;
	flex-wrap: wrap;
}
.annotation{
	font-size: 14px;
	line-height: 1.2em;
}
.annotation li{
	display: flex;
	align-items: baseline;
	gap: 5px;
}
.annotation.numbers span{
	display: block;
	width: 50px;
	font-feature-settings: normal;
}
.annotation.numbers p{
	flex: 1;
}
.annotation.kome span{
	display: block;
	width: 15px;
}
.annotation.kome p{
	flex: 1;
}
.tableDesign{
	margin-top: 30px;
}
.tableDesign table{
	width: 775px;
	border-collapse: collapse;
	border-spacing: 0;
	margin: 0 auto;
	border: none;
}
.tableDesign table th{
	font-weight: 700;
}
.tableDesign table :is(th,td){
	text-align: center;
	padding: 10px;
	border: none;
	font-size: 16px;
	line-height: 1.3em;
	letter-spacing: 0.08em;
}
.tableDesign{
	margin-bottom: 10px;
}
:is(th,td) img{
	margin: 0 auto;
	width: 40px;
}
.tableDesign tr:first-of-type th{
	width: 155px;
	background: var(--accentColor3);
	color: #fff;
	border-top: 3px solid var(--accentColor3);
	border-bottom: 3px solid var(--accentColor3);
}
.tableDesign tr:first-of-type th:not(tr:first-of-type th:last-of-type){
	border-right: 1px solid #fff;
}
.tableDesign tr:first-of-type th:first-of-type{
	background: var(--accentColor3);
	border-left: 3px solid var(--accentColor3);
}
.tableDesign tr:nth-of-type(2) th{
	background: var(--lightColor);
}
.tableDesign tr th:first-of-type:not(tr:first-of-type th:first-of-type){
	background: var(--mainColor);
	border-left: 3px solid var(--mainColor);
	border-right: 3px solid var(--mainColor);
}
.tableDesign tr th:first-of-type:not(tr:last-of-type th:first-of-type,tr:first-of-type th:first-of-type){
	border-bottom: 1px solid #fff;
}
.tableDesign tr:nth-child(even) td{
	background: #fcf8e8;
}
.tableDesign .inconspicuousColor{
	background: #f7f7f5;
}
.tableDesign tr th a{
	color: #fff;
	font-weight: 600;
}


.clickOpenContents{
	position: relative;
	height: 240px;
	overflow: hidden;
	padding: 0px 0px 75px;
}
.clickOpenContents::before{
	position: absolute;
	display: block;
	content: "";
	bottom: 0;
	left: 0;
	width: 100%;
	height: 75px;
	background: linear-gradient(rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, #fff 100%);
}
.readmore{
	position: relative;
}
.readmore label{
	position: absolute;
	display: table;
	left: 50%;
	bottom: 0;
	margin: 0 auto;
	width: 200px;
	padding: 10px 0;
	color: #fff;
	text-align: center;
	border-radius: 5px;
	background-color: #333;
	transform: translateX(-50%);
	cursor: pointer;
	z-index: 1;
}
.readmore input[type="checkbox"]{
	display: none;
}
.readmore label::before {
	content: '続きを見る';
}
.readmore input[type="checkbox"]:checked ~ label::before {
	content: ' 元に戻す';
}
.readmore input[type="checkbox"]:checked ~ .clickOpenContents {
	height: auto;
}


@media screen and (max-width: 807px) {
	.tableDesign{
		overflow-x: scroll;
	}
}