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

全体設定

 ---------------------------------------------------*/
body {
	font-family: 'Noto Sans JP', sans-serif;
	width:100%;
	color: #333;
	font-size: 16px;
	-webkit-text-size-adjust: 100%;
	line-height:1.2;
}
a{
	text-decoration: none;
	transition: 0.6s;
	cursor: pointer!important;
}
a:hover{
	opacity: 0.8;
}
img{
	width:100%;
	height: auto;
	vertical-align: bottom;
}
@media screen and (max-width: 768px) {
	body{
		font-size: 4vw;
	}
}

header{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 600px;
	padding: 0 30px;
	border-bottom: 2px solid #572074;
	background: url("../images/bg_header.png") no-repeat right bottom;
	background-size: auto;
	box-sizing: border-box;
}
header .logo{
	max-width: 790px;
	padding: 32px 0 0;
}
@media screen and (max-width: 768px) {
	header{
		height: 75vw;
		padding: 0;
		background-size: 36vw;
	}
	header .logo{
		width: 80vw;
		padding: 8.5vw 0 0;
	}
}

.tagline{
	max-width: 1200px;
	line-height: 1.7;
	padding: 0 30px;
	margin: 160px auto 0;
	box-sizing: border-box;
}
@media screen and (max-width: 768px) {
	.tagline{
		padding: 0 5vw;
		margin: 15vw auto 0;
	}
}

.company{
	max-width: 800px;
	padding: 0 30px;
	margin: 180px auto 0;
	box-sizing: border-box;
}
.company .tit{
	color: #572074;
	font-size: 25px;
	font-weight: 700;
	text-align: center;
}
.company dl{
	display: flex;
	flex-wrap: wrap;
	line-height: 2;
	margin: 40px 0 0;
}
.company dl dt,
.company dl dd{
	margin: 20px 0 0;
}
.company dl dt{
	width: 5em;
}
.company dl dd{
	width: calc(100% - 5em);
	padding: 0 0 0 74px;
	box-sizing: border-box;
}
@media screen and (max-width: 768px) {
	.company{
		padding: 0 5vw;
		margin: 20vw auto 0;
	}
	.company .tit{
		font-size: 6vw;
	}
	.company dl{
		display: block;
		margin: 10vw 0 0;
	}
	.company dl dt,
	.company dl dd{
		margin: 0;
	}
	.company dl dt{
		width: 100%;
		margin: 6vw 0 0;
	}
	.company dl dd{
		width: 100%;
		padding: 0;
		font-size: 3.5vw;
	}
}

.btn_contact{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 400px;
	height: 60px;
	color: #fff;
	font-size: 24px;
	font-weight: 700;
	background: #572074;
	border-radius: 5px;
	margin: 100px auto 0;
}
@media screen and (max-width: 768px) {
	.btn_contact{
		width: 80vw;
		height: 13.75vw;
		font-size: 5vw;
		border-radius: 1.25vw;
		margin: 20vw auto 0;
	}
}

footer{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 65px;
	background: #572074;
	margin: 125px 0 0;
}
footer .copyright{
	color: #fff;
}
@media screen and (max-width: 768px) {
	footer{
		height: 16.25vw;
		margin: 25vw 0 0;
	}
	footer .copyright{
		font-size: 3.5vw;
	}
}








.pc_only{
	display: none;
}
.smp_only{
	display: block;
}
@media print, screen and (min-width: 768px) {
	.pc_only{
		display: block;
	}
	.smp_only{
		display: none;
	}
}

