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


/*ページのタイトル*/
.pagetitle {
	background-image: url("../images/title_bg.png");
	height: 130px;
}
@media screen and (max-width:600px) {
.pagetitle {
	background-image: url("../images/title_bg.png");
	height: 80px;
}
}

.pagetitle-container {
	display: grid;
	justify-items: start;
	align-content: center;
	height: 100%;
	background-image: url("../images/pagetitle-bg-facility.png");
	background-repeat: no-repeat;
	background-position: right;	
}
@media screen and (max-width:600px) {
.pagetitle-container {
	display: grid;
	justify-items: start;
	align-content: center;
	height: 100%;
	background-image: none;
}
}

.pagetitle-container h1 {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 300;
	color: #222222;
	font-size: clamp(25px, 2vw, 40px);
	min-height: 0vw;
}



/*見出し：主要設備*/
.midashi {
	background-color: white;
}

.midashi-container {
	display: grid;
	justify-items: center;
	align-content: center;
	height: 100%;
}

.midashi h2 {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	color: #222222;
	font-size: clamp(25px, 3vw, 40px);
	min-height: 0vw;
	padding-top: 20px;
	text-align: center;
	position: relative;
}

.midashi h2::after {
	content: '';
	display: block;
	position: absolute;
	left: 50%; /* 位置調整 */
	transform: translate(-50%); /* 位置調整 */
	bottom: -10px; /* 下線の上下位置調整 */
	width: 100px; /* 下線の幅 */
	height: 6px; /* 下線の太さ */
	border-radius: 3px; /* 線幅の半分 */
	background-color: #860B23; /* 下線の色 */
}


/*主要設備:プレス機*/
.machine {
	background-color: white;
	margin-top: 40px;
}

.machine-container {
	height: 100%;
}

.machine h3 {
	border-bottom: solid 3px #A0A0A0;
	position: relative;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	color: #222222;
	font-size: clamp(24px, 2vw, 30px);
	min-height: 0vw;
}

.machine h3:after {
	position: absolute;
	content: " ";
	display: block;
	border-bottom: solid 3px #860B23;
	bottom: -3px;
	width: 10%;
}

.machinephoto-container {
	display:flex; 
	flex-diretion: row;
	flex-wrap:wrap;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 70px;
	margin-top: 30px;
}
@media screen and (max-width:1250px) {
.machinephoto-container {
	display:flex; 
	flex-diretion: row;
	flex-wrap:wrap;
	justify-content: space-around;
	align-items: flex-start;
	gap: 70px;
	margin-top: 30px;
	margin-bottom: 30px;
}
}


.machinephoto-item {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	color: #222222;
	font-size: clamp(20px, 2vw, 25px);
	min-height: 0vw;
}

.machinephoto-item img {
	border: 1px solid #707070;
}

.mb60 {
	margin-bottom: 60px;
}









