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

/* --------------------------------------------- */
/* ▼モバイルファースト (全環境に共通のデザイン) */
/* --------------------------------------------- */

.mainvisual{
	margin-bottom: 100px;
}

main article ul li a{
	display: inline-block;
	border: 2px solid #000;
	background-color: rgba(255,255,255,0.5);
	line-height: 1;
	border-radius: 10px;
	margin-top: 30px;
	padding: 20px 40px;
}

main article ul li a:hover{
	color: #fff;
	background-color: rgba(0,0,0,0.8);
	text-shadow: 1px 1px 0px #ccc;
	transition: all .5s;
}

.mainvisual{
	height: 500px;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	background-image: url("../img/mainimage.png");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
}

.mainvisual p{
	font-size: 2em;
	color: #000;
	text-align: center;
}

.mainvisual p span {
    display: inline-block;
    background-color: #fff;
    margin: 0 0 30px 0;
    padding: 10px 40px;
    opacity: 0.7;
}
	
.mainvisual nav{
	display: none;
	position: absolute;
	bottom: 5px;
}

.mainvisual nav ul{
	display: flex;
	justify-content: center;
}

.mainvisual nav ul li:after{
	content: '|';
	margin-right: 5px;
}

.mainvisual nav ul a:hover{
	text-decoration: underline;
}

h2{
	font-size: 1.3em !important;
	font-weight: bold !important;
	letter-spacing: 10px;
	margin: 0 !important;
}

h2 span{
	background: linear-gradient(transparent 70%, #93c7df 70%);
}

main{
	margin-bottom: 100px;
	padding: 0 10px;
}

/* -------------------------------------------- */
/* ▼タブレット用デザインとして付け足すデザイン */
/* -------------------------------------------- */
@media (min-width: 768px) {
	h2{
		font-size: 2.5em !important;
	}
	
	.mainvisual{
		height: 500px;
	}
	
	.mainvisual p{
		font-size: 2.5em;
	}
	
	.mainvisual nav{
		display: block;
	}
	
	.container{
		max-width: 1000px;
		margin: 0 auto;
	}

	main{
		padding: 0;
	}
}

/* ------------------------------------ */
/* ▼PC用デザインとして付け足すデザイン */
/* ------------------------------------ */
@media (min-width: 1920px) {
	
}