@charset "utf-8";


/*------------------------------------------------------

   common

En : font-family: 'Lato', sans-serif;

-------------------------------------------------------*/
body {
	position: relative;
	font-size: 16px;
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	padding-top: 80px;
	letter-spacing: 0.05em;
}
body.menu-fix {
	overflow: hidden;
}
.sp {
	display: none !important;
}

input, select, textarea, radio, checkbox, button {
	font-family: 'Lato', sans-serif;
}

.inner {
	padding: 0 40px;
	margin:auto;
	position: relative;
}
.inner-in {
	max-width: 750px;
	margin: auto;
	position: relative;
}

/* off */
.off a {
    cursor: default !important;
    color: #ccc !important;
}

/* nav-line */
.nav-line a {
    position: relative;
}
.nav-line a:after {
    position: absolute;
    bottom: -4px;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    border-top:solid 1px;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform .3s;
}
.nav-line a:hover:after {
    transform-origin: left top;
    transform: scale(1, 1);
}

/*------------------------------------------------------

   header style

-------------------------------------------------------*/
#global-header {
	width: 100%;
    height: 85px;
	padding-top: 15px;
    background: #fff;
	position: fixed;
	left:0;
	top: 0;
	z-index: 10000;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
	border-bottom: solid 1px #eee;
}
.site-title {
	width: 100px;
    position: absolute;
    top: 0;
    left: 25px;
	z-index: 10000000;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.site-title a {
	display: inline-block;
}
#main-nav {
	position: absolute;
	right:30px;
	top: 16px;
}
.main-nav--list li {
    display: inline-block;
    font-size: 16px;
	font-family: 'Lato', sans-serif;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-left: 20px;
}
.main-nav--list li a {
	color: #000;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}


/* ----------------------------
   contents
-------------------------------*/
#contents {
	position: relative;
	overflow: hidden;
	min-height: 950px;
}
.conBox {
	position:relative;
	margin-bottom: 150px;
}
.cmn-title {
    font-size: 30px;
	font-family: 'Lato', sans-serif;
	font-weight: 900;
	text-align:center;
    margin-bottom: 65px;
}
.cmn-title.left {
    text-align: left;
}
.cmn-title span {
    font-size: 16px;
    margin-left: 20px;
	font-weight: 700;
}

.more {
	text-align:center;
	margin-top: 70px;
}
.more a {
	font-size: 16px;
	font-family: 'Lato', sans-serif;
	font-weight: 900;
	color: #000;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.more a:before {
	content: '';
	display: inline-block;
	width: 60px;
	height: 1px;
	margin-right:15px;
	border-top: solid 1px;
	vertical-align: middle;
}
.more a:hover {
	color: #ccc;
}

/*------------------------------------------------
   footer style
--------------------------------------------------*/
#global-footer {
	padding: 50px 0 30px;
	color: #fff;
    font-size: 13px;
	background: #1b1b1b;
}
#global-footer a {
	color: #fff;
}
.footer-in {
	width: 50%;
	padding-left:75px;
}
.footer-logo {
	width: 134px;
	margin-bottom: 30px;
}
.footer-nav {
    display: flex;
    flex-wrap: wrap;
	width: 100%;
}
.footer-nav--box {
	width: 50%;
}
.footer-nav--list li {
    font-size: 15px;
	font-family: 'Lato', sans-serif;
	font-weight: 900;
	margin-bottom: 15px;
}
.footer-nav--list li:last-child {
	margin-bottom: 0;
}
.footer-nav--contact {
	margin-top: 15px;
	line-height: 2;
}
.footer-nav--contact h3 {
	font-size: 12px;
}
.footer-nav--contact p {
	font-size: 12px;
}
.footer-sns {
	margin-top: 30px;
}
.footer-sns--list li {
	vertical-align: middle;
	margin-right:10px;
}
.copyright {
    font-size: 10px;
	font-family: 'Lato', sans-serif;
	color: #919191;
	margin-top: 25px;
}

/* backtotop */
#backtotop {
	color: #fff;
	font-size: 15px;
	font-weight:bold;
	width: 52px;
	line-height: 52px;
	text-align:center;
	cursor:pointer;
	background: #1b1b1b;
	border-radius: 52px;
	visibility: hidden;
	opacity: 0;
	position:fixed;
	right: 10px;
	bottom: 40px;
	z-index: 10;
   -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
#backtotop.show {
	visibility: visible;
	opacity: 1;
	bottom: 50px;
}




/* -----------------------------------

media query

------------------------------------- */
/* 815px 以下 */
@media (max-width: 815px) {

	body {
		min-width: 320px;
		padding-top: 60px;
		letter-spacing: 0.02em;
	}

	.sp { display: block !important; }
	.pc { display: none !important; }

	.inner {
		padding: 0 15px;
	}

	#global-header {
		height: 70px;
	}
	.site-title {
		width: 85px;
		left: 15px;
	}

	#menu-btn {
		width: 35px;
		height: 14px;
		cursor: pointer;
		position: absolute;
		right: 15px;
		top: 14px;
	    z-index: 100000000000000000;
	}
	#menu-btn span {
		display: block;
		width: 100%;
		height: 2px;
		background: #1b1b1b;
		position: absolute;
		left: 0;
		-moz-transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
		-moz-transition: all 300ms ease-in-out 0s;
		-webkit-transition: all 300ms ease-in-out 0s;
		-o-transition: all 300ms ease-in-out 0s;
		-ms-transition: all 300ms ease-in-out 0s;
		transition: all 300ms ease-in-out 0s;
	}
	#menu-btn span.t {
		top: 0;
	}
	#menu-btn span.m {
		top: 6px;
		display: none;
	}
	#menu-btn span.b {
		bottom: 0;
	}
	#menu-btn.active span.t {
		top: 6px;
		-moz-transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
		-o-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	#menu-btn.active span.m {
		width: 0;
	}
	#menu-btn.active span.b {
		bottom: 6px;
		-moz-transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		transform: rotate(45deg);
	}

	#main-nav {
		width: 100%;
		background: #fff;
		padding: 90px 20px 20px;
		overflow: auto;
		visibility: hidden;
		opacity: 0;
		position: fixed;
		top: 0;
		left: 0;
		z-index: -100;
	}
	#main-nav.active {
		visibility: visible;
		opacity: 1;
		-webkit-transition: all 0.6s;
		transition: all 0.6s;
		z-index: 99999;
	}

	.main-nav--list li {
		display: block;
		font-size: 22px;
		font-weight: 900;
		margin: 0;
	}
	.main-nav--list li a {
		color: #1b1b1b !important;
		display:block;
		padding: 18px 10px;
		position:relative;
	}
	.main-nav--list li a:after {
		display: none !important;
	}
	.main-nav--list li a:before {
		content: '';
		display:block;
		width: 10px;
		height: 10px;
		margin-top: -5px;
		border-top: solid 1px #777;
		border-right: solid 1px #777;
		transform: rotate(45deg);
		position: absolute;
		right: 10px;
		top: 50%;
	}


	.conBox {margin-bottom: 80px;}
	.cmn-title {font-size: 22px;}
	.footer-in {
		width: 100%;
		padding-left: 10px;
	}
	.footer-nav--box {
		width: 100%;
		margin-bottom: 30px;
	}
	.footer-sns {margin-top: 0;}

}



/* 480px 以下 */
@media (max-width: 480px) {


	
}