@charset "utf-8";
/* CSS Document */
html, body {
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}

header {
	position: fixed;
	top: 0;
    z-index: 1000;
	height:60px;
	width: 100%;
	background-color: white;
	display: flex;
	
	align-items: center;      /* ← 子を縦中央にそろえる */
	gap: 20px;                /* ← ロゴとボタンの間のすき間 */
	padding: 0 25px;
}

header img {
	height: auto !important;
	max-height: 60px !important;
	width: 150px !important;
}

.contact-link {
	background-color: #4CAF50;
	border-radius: 50px;
	height: 40px;
	width: 130px;
	text-align: center;
	color:#fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.body-img{
	/*background-image: url("../images/img-2-bg.png");*/
	background-image: url("../img/アセット8.png");
	background-repeat: no-repeat;
	background-size: contain;      /* ←ここをcontainに */
	background-position: center 25px;
	width: 100%;
	height: 700px;
	position: relative;
	margin-top: 50px;
}

.img-2-1{
	width: 260px !important;
	position: absolute;
    top: 0px;
    left: 200px
}

.img-2 {
	width: 70%!important;
	position: absolute;
    top: 45px;
	left: 16%;
}

.responsive-img {
  display: block;
  width: 60%;
  height: auto;
  max-width: 1600px; /* モニターでの最大幅 */
  margin: 35px auto; /* 余白を左右に均等にして中央寄せ */
}




footer {
	background-image: url("../img/背景-グラデーション.png");
	padding:40px 0;
	text-align: center;
}

footer img{
	padding: 10px 0;
}

.footer_tel{
	display: flex;
	gap:50px;
	justify-content: center;
}

.footer_tel img{
	width: 450px;
}

.mail {
	width: 500px;
}

.logo {
	width: 12%
}

@media (max-width: 1600px) {
	
	body{
		margin-top: 30px;
	}
	
	.body-img{
		background-position: center 25px;
		height: 430px !important;
		margin-top: 50px;
	}
	
	.responsive-img {
		width: 80%;
		max-width: none;
	 }
	
	.contact-section {
		padding: 20px 20px 30px 20px;
	}
	
	.text{
		width: 600px;
		margin: 20px auto;
		padding-top: 0px !important;
	}
	
	.contact-text{
		text-align: center;   /* 中央揃え */
		line-height: 1.2;
		margin-bottom: 15px;
	}
	
	.contact-text p {
		font-size: 17px;
	}
	
	.required{
		font-size: 9px;
		color: #fff;
		width: 30px;
		height: 16px;
		border: 1px solid #4CAF50;
		border-radius:3px;
		display: flex;
		align-items: center;
		justify-content: center;
		background-color: #4CAF50;
		text-align: center;
		line-height: 18px;
		margin: 0px !important;
	}
	
	
	form select{
		width: 170px !important;
		margin: 10px 30% 20px 32%;
	}
	
	.footer_tel img{
		width: 300px;
	}
	
	.mail {
		width: 400px;
	}

	.logo {
		width: 150px;
	}
}
	
	
@media (max-width: 767px) {
	
	header {
		height:45px;
		width: 100%;
		background-color: white;
		display: flex;

		align-items: center;      /* ← 子を縦中央にそろえる */
		gap: 10px;                /* ← ロゴとボタンの間のすき間 */
		padding: 0 10px;
	}

	header img {
		height: auto !important;
		max-height: 35px !important;
		width: 70px !important;
	}

	.contact-link {
		height: 23px;
		width: 63px;
		font-size: 8px;
	}
	
	.body-img{
		background-position: center 10px;
		height: 150px !important;
		margin-top: 0px;
	}

	.img-2-1{
		width: 80px !important;
		position: absolute;
		top: 0px;
		left: 60px
	}

	.img-2 {
		width: 70%!important;
		position: absolute;
		top: 15px;
		left: 16%;
	}
	
	.responsive-img{
		margin: 15px auto !important;
	}
	
	
	footer {
		padding: 15px 0px;
	}
	
	footer p {
		margin: 10px !important;
	}
	
	footer img{
		padding: 0px !important;
	}
	
	.footer_tel{
		gap:20px;
	}
		
	.footer_tel img{
		width: 150px;
	}
	
	.mail {
		width: 180px !important;
	}

	.logo {
		width: 90px;
	}

}




