@charset "UTF-8";

/*--------------------------------------------------------------------
works_about.html
works_sdgs.html
works_facility.html
works_order.html
works_packag.html
works.css
--------------------------------------------------------------------*/

/*------------about---------------------------------------------------------------*/
#about ul {
	display: flex;
	flex-wrap: wrap;
	gap: 40px 20px;
}
#about ul li { width: calc((100% - 20px) / 2); }
#about ul li p {
	width: 96%;
	margin: 0.7em auto 0;
}

@media (max-width: 979px) {
	#about ul { display: block; }
	#about ul li { width: 100%; }
	#about ul li + li { margin-top: 40px; }
}

/*------------sdgs---------------------------------------------------------------*/
#sdgs {}

/*------------facility---------------------------------------------------------------*/
#facility #photoList ul {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
#facility #photoList ul li { width: calc((100% - 10px * 2) / 3); }
#facility #other h5 {
	position: relative;
	margin-bottom: 0;
	line-height: 1.2;
	font-family: var(--mincho);
	font-size: 1.375em;
	font-weight: bold;
	color: var(--color-orange);
}
#facility #other .list {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
#facility #other .list02 table { width: 470px; }
#facility #other .list table tr td { text-align: right; }

@media (max-width: 979px) {
	#facility #photoList ul li { width: calc((100% - 10px) / 2); }
	#facility #other .list { display: block; }
	#facility #other .list02 table { width: 100%; }
	#facility #other .list table tr th,
	#facility #other .list table tr td {
		display: table-cell;
		white-space: normal;
	}
	#facility #other .list table tr td {
		width: 15%;
		white-space: nowrap;
		vertical-align: middle;
	}
}

/*------------order---------------------------------------------------------------*/
#order #photoList ul {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
#order #photoList ul li { width: calc((100% - 10px * 2) / 3); }
#order #endTxt {
	margin-top: 40px;
	padding: 1em;
	background-color: var(--color-red);
	text-align: center;
	font-family: var(--mincho);
	font-size: 1.625em;
	font-weight: bold;
}

@media (max-width: 979px) {
	#order #photoList ul li { width: calc((100% - 10px) / 2); }
	#order #endTxt { font-size: 1.325em; }
}

/*------------packag---------------------------------------------------------------*/
/*------------facility------------------------*/
#packag ul#facility {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 1em;
}
#packag ul#facility li { width: calc((100% - 10px * 3) / 4); }
#packag ul#list li {
	margin: 0.15em 0;
	padding-left: 1.3em;
	text-indent: -1.3em;
}
#packag ul#list li::before {
	padding-right: 0.3em;
	content: "〇";
}
/*------------example------------------------*/
#packag ul#example {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
#packag ul#example li { width: calc((100% - 10px * 2) / 3); }
#packag ul#example li img {
	width: 100%;
	min-height: 300px;
	max-height: 300px;
	object-fit: cover;
	object-position: 50% 50%;
}
/*------------endTxt------------------------*/
#packag #endTxt {
	margin-top: 40px;
	padding: 1em;
	background-color: var(--color-red);
	text-align: center;
	font-family: var(--mincho);
	font-size: 1.625em;
	font-weight: bold;
}

@media (max-width: 979px) {
	/*------------facility------------------------*/
	#packag ul#facility { gap: 10px; }
	#packag ul#facility li { width: calc((100% - 10px) / 2); }
	/*------------example------------------------*/
	#packag ul#example li { width: calc((100% - 10px) / 2); }
	#packag ul#example li img {
		min-height: 150px;
		max-height: 150px;
	}
	/*------------endTxt------------------------*/
	#packag #endTxt { font-size: 1.325em; }
}