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

@import url("reset.css");

/*===============Common_Start===============*/

img { vertical-align: bottom; }

ul { list-style-type: none; }

body {
	background-color: #FFF8E8;
	font-family: 'Zen Maru Gothic', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 2;
}

/*pageup*/
.pageup {
	width: 60px;
	height: 60px;
	line-height: 80px;
	background-color: #FF4500;
	color: white;
	text-align: center;
	position: fixed;
	right: -66px;
	bottom: 10vh;
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.4s ease;
}

.pageup.show { right: 8vw; }

.pageup::before {
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	border-top: solid 1px white;
	border-right: solid 1px white;
	position: absolute;
	top: 15px;
	left: 50%;
	transform: translate(-50%, 0) rotate(-45deg);
	transition: all 0.4s ease;
}



/*===============Common_End===============*/


/*===============SP_start===============*/
.wrapper { padding: 0 8vw; }

/*メインビジュアル*/
.mainvisual {
	height: 50vw;
	background: url("../images/main_pic.jpg") 50% 100% / cover no-repeat;
	position: relative
}

.mainvisual .pate_title {
	color: #FF4500;
	font-weight: 700;
	font-size: 4vw;
	position: absolute;
	top: 50%;
	left: 35%;
	transform: translate(0%, -50%);
}

/*ピア紹介*/
p.page_desc { margin-top: 50px; }

ul.peer_info li {
	margin-top: 100px;
	background-color: white;
}


ul.peer_info li .container {
	padding-bottom: 10px;
	display: flex;
	align-items: center;
	background-color: #FFF8E8;
}

ul.peer_info li .container p.img {
	width: 80px;
	height: 80px;
	background: center top / cover no-repeat;
}
ul.peer_info li .container p.img.woman { background-image: url("../images/woman.png"); }
ul.peer_info li .container p.img.man { background-image: url("../images/man.png"); }

ul.peer_info li .container p.peer_name { margin-left: 20px; }
ul.peer_info li .container p.img.woman +p.peer_name { color: #FF3399;  }
ul.peer_info li .container p.img.man +p.peer_name { color: #0000CD; }

ul.peer_info li p.info_text { padding: 25px; }

/*フッター*/
footer { margin-top: 150px; }

footer .footer_info {
	text-align: center;
	font-size: 0.8em;
}

footer .footer_pic {
	height: 20vw;
	margin-top: 20px;
	background: url("../images/footer_image.png") center bottom / cover no-repeat;
}

/*=======SP用改行設定=======*/
@media only screen and (min-width:450px) {
	.forSP { display: none; }
}


/*===============SP_end===============*/



/*===============PC_start===============*/
@media only screen and (min-width:768px) {
	.pageup.show { right: 20px; }

	.wrapper {
		padding: 0 3vw;
		max-width: 1000px;
		margin: 0 auto;
	}

/*メインビジュアル*/
	.mainvisual {
		height: 37vw;
		background-position: 50% 85%;
	}

	.mainvisual .pate_title {
		font-size: 2em;
		left: 45%;
	}

/*ピア紹介*/
	p.page_desc { margin-top: 100px; }

	ul.peer_info {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	ul.peer_info li { width: 45%; }

	ul.peer_info li .container p.img {
		width: 100px;
		height: 100px;
		margin-left: 5%;
}

	ul.peer_info li .container p.peer_name { margin-left: 5%; }

	footer .footer_info { text-align: right; }

	
	
	
}
/*===============PC_end===============*/

