@charset "UTF-8";

/* ==========================================================================
   index.css
   ========================================================================== */
/* body */
body {
	color: #fff;
	background: #616161;
}

h1 {
	text-align: center;
}

h1 img {
	width: 260px;
	height: auto;
}

img {
	max-width: 100%;
}

main {
	display: block;
	padding-top: calc(50vh - 250px);
}


.box {
	display: flex;
	justify-content: space-between;
	width: 600px;
	margin: 0 auto;
	margin-top: 50px;
}

.blocklink {
	cursor: pointer;
	transition: .3s;
}

.blocklink:hover {
	opacity: .7;
}

.box .item {
	width: 45%;
	text-align: center;
}


.box .item .logo {
	width: 60%;
	margin-top: 30px;
}

.box .item h2 {
	font-weight: bold;
	margin-top: 1.5em;
	font-size: 14px;
	letter-spacing: 1px;
}

.box .item h2 a {
	color: #fff;
}

.box .item p {
	font-size: 12px;
	margin-top: 1em;
}



@media screen and (max-width: 767px) {

	main {
		padding-top: 15vw;
		padding-bottom: 15vw;
	}


	.box {
		display: block;
		width: 70%;
	}

	.box .item {
		width: 100%;
		text-align: center;
		margin-top: 15vw;
	}

	.box .item.i01 {
		margin-top: 0;
	}

	.box .item .logo {
		width: 70%;
		margin-top: 5vw;
	}

	.box .item h2 {
		font-size: 4vw;
	}

	.box .item.i01 h2 {
		margin-top: -4vw;
	}

	.box .item.i03 h2 {
		margin-top: -2vw;
	}

	.box .item p {
		font-size: 3.2vw;
	}

}