@media print {
/* 省略 */
	a[href]:after {
		content: "";
	}
/* 省略 */
}

@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
@import url(https://fonts.googleapis.com/css?family=Lato:300);


/*fade*/
body {
	animation: fadeIn 2s ease 0s 1 normal;
	-webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
}




/*common*/
body{
	color: #111;
	line-height: 1.6;
	font-size: 16px;
	font-family: "Noto Sans Japanese", "Lato", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	min-width: 320px;
}
.wrapper{
	overflow: hidden;
}

/*a-link*/
a,
a:link,
a:visited{
	text-decoration: none;
	color: #8cc999;
	cursor: pointer;
	outline: none;
}
a:hover,
a:active{
	text-decoration: underline;
	color: #35c380;
	transition: 0.3s ease-in-out;
}
area{
	outline: none;
}
img{
	display: block;
	max-width: 100%;
	height: auto;
}
/*a img:hover{
	opacity: 0.5;
	transition: 0.3s ease-in-out;
}
a img.no-hover:hover{
	opacity: 1;
}*/
.noactive{
	pointer-events:none;
	opacity: 0.5;
}


/*text*/
h1,h2,h3,h4,h5,h6,p,ul,li{
	margin: 0;
	padding: 0;
}
h1,h2,h3,h4,h5,h6{
	line-height: 1.2;
}
.font-serif{
	font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}


/*br*/
.br-sp{
	display: none;
}
.br-pc{
	display: block;
}
@media (max-width: 767px){
	.br-sp{
		display: block;
	}
	.br-pc{
		display: none;
	}
}


/*hide*/
.pc-hide{
	display: none;
}
@media (max-width: 767px){
	.sp-hide{
		display: none;
	}
	.pc-hide{
		display: block;
	}
}


/*header*/
header{
	border-bottom: 1px solid #ddd;
	position: fixed;
	width: 100%;
	height: 60px;
	background: rgba(255,255,255,0.9);
	z-index: 10;
}
.site-logo{
	padding: 5px 10px;
	float: left;
}
.main-nav{
	float: right;
}
.main-nav ul{
	font-size: 0;
}
.main-nav li{
	list-style: none;
	display: inline-block;
	font-size: 16px;
	margin: 0 20px;
}
.main-nav a{
	color: #111;
	position: relative;
	display: block;
	padding: 14px 0 13px;
}
a:hover,
a:active{
	text-decoration: none;
}
.mainnav1 a::before,
.mainnav2 a::before,
.mainnav3 a::before{
	transition: 0.3s ease-in-out;
	content: "";
	display: block;
	width: 0;
	height: 6px;
	position: absolute;
	left: 0;
	bottom: -7px;
}
.mainnav1 a::before{
	background: #eac843;
}
.mainnav2 a::before{
	background: #de8e1f;
}
.mainnav3 a::before{
	background: #4479c6;
}
.mainnav1 a:hover::before,
.mainnav2 a:hover::before,
.mainnav3 a:hover::before{
	width: 100%;
}
@media (max-width: 767px){
	header{
		height: 50px;
	}
	.site-logo{
		max-width: 240px;
	}
	.navbar{
		border: none;
	}
	.navbar-toggle{
		background: #ddd;
		margin-top: 0;
		margin-bottom: 0;
		position: absolute;
		top: 8px;
		right: 10px;
	}
	.main-nav{
		float: none;
	}
	.main-nav li{
		width: 100%;
		display: block;
		text-align: center;
		margin: 0;
		border-bottom: 1px solid #ddd;
	}
	.mainnav1,
	.mainnav2,
	.mainnav3{
		background: rgba(255,255,255,0.9);
	}
	.mainnav1 a:before,
	.mainnav2 a:before,
	.mainnav3 a:before{
		display: none;
	}
}


/*btn-list*/
.btn-list{
	font-size: 0;
}
.btn-list a{
	width: 50%;
	display: inline-block;
	font-size: 18px;
	color: #fff;
	text-align: center;
	padding: 2.5% 10%;
	margin: auto;
}
.btn-list a:hover{
	opacity: 0.5;
}
.btn-list a:first-child.btn-list-gallery{
	background-image: url(../images/icon-prev.png), url(../images/btn-gallery-bg.jpg);
	background-repeat: no-repeat, no-repeat;
	background-position: left 10px center, center;
	background-size: 15px auto, cover;
}
.btn-list a:last-child.btn-list-gallery{
	background-image: url(../images/icon-next.png), url(../images/btn-gallery-bg.jpg);
	background-repeat: no-repeat, no-repeat;
	background-position: right 10px center, center;
	background-size: 15px auto, cover;
}
.btn-list a:first-child.btn-list-interview{
	background-image: url(../images/icon-prev.png), url(../images/btn-interview-bg.jpg);
	background-repeat: no-repeat, no-repeat;
	background-position: left 10px center, center;
	background-size: 15px auto, cover;
}
.btn-list a:last-child.btn-list-interview{
	background-image: url(../images/icon-next.png), url(../images/btn-interview-bg.jpg);
	background-repeat: no-repeat, no-repeat;
	background-position: right 10px center, center;
	background-size: 15px auto, cover;
}
.btn-list a:first-child.btn-list-data{
	background-image: url(../images/icon-prev.png), url(../images/btn-data-bg.jpg);
	background-repeat: no-repeat, no-repeat;
	background-position: left 10px center, center;
	background-size: 15px auto, cover;
}
.btn-list a:last-child.btn-list-data{
	background-image: url(../images/icon-next.png), url(../images/btn-data-bg.jpg);
	background-repeat: no-repeat, no-repeat;
	background-position: right 10px center, center;
	background-size: 15px auto, cover;
}
.btn-list a img{
	display: inline-block;
}
@media (max-width: 767px){
	.btn-list a{
		width: 100%;
		font-size: 16px;
		padding: 5% 25%;
	}
	.btn-list-data span{
		font-size: 14px;
	}
}


/*maincopy*/
.main-copy{
	text-align: center;
	margin-top: 60px;
	padding: 30px 10px 30px;
}
.main-copy img{
	display: inline-block;
}
@media (max-width: 767px){
	.main-copy{
		margin-top: 50px;
	}
}


/*footer*/
.pagetop{
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 1;
}
.banner-ayanodai{
	max-width: 680px;
	margin: 60px auto;
}
.banner-ayanodai a:hover img{
	opacity: 0.5;
	transition: 0.3s ease-in-out;
}
footer{
	margin: 0 auto 120px;
}
footer .container-fluid{
	padding: 20px;
}
footer a:hover img{
	opacity: 0.5;
	transition: 0.3s ease-in-out;
}
.tel{
	float: left;
}
.tel a{
	display: inline-block;
	margin-right: 30px;
	vertical-align: middle;
}
.company{
	margin-top: 20px;
	float: right;
	font-size: 0;
}
.company li{
	display: inline-block;
	margin-left: 30px;
}
footer small{
	padding-top: 15px;
	/*border-top: 1px solid #ccc;*/
	font-size: 10px;
	padding-bottom: 5px;
	display: block;
}
@media (max-width: 991px){
	.tel{
		float: none;
		text-align: center;
	}
	.tel a{
		margin: auto 10px 10px;
	}
	.company{
		float: none;
		text-align: center;
	}
	.company li{
		margin: 0 10px;
	}
}
@media (max-width: 767px){
	.banner-ayanodai{
		max-width: 100%;
		margin: 30px auto;
		padding: 0 10px;
	}
}
@media (max-width: 420px){
	.tel a:first-child{
		max-width: 40%;
	}
	.company li img{
		max-height: 36px;
	}

}