/* -------------------*/
/* -------------------*/
/* Utility and Reset css -------------------*/

html,button,input,select,textarea { color: #111; }
*, *:before, *:after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; -o-box-sizing: border-box; -ms-box-sizing: border-box; box-sizing: border-box; }
hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; }
audio,canvas,img,video { vertical-align: middle; }
.ie7 .title { padding-top: 20px; }
fieldset {	border: 0; margin: 0; padding: 0; }
textarea { resize: vertical; }

/* Reset css */

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video{ margin:0; padding:0; border:0; outline:0; font-size:100%; vertical-align:baseline; background:transparent; }
table,div,ul,ol,li,dl,dt,dd{ list-style: none; margin: 0; padding: 0; }
table{ border-collapse:collapse; border-spacing:0; }
article,aside,details,figcaption,figure, footer,header,hgroup,menu,nav,section { display:block; }
nav ul,li { list-style:none; }

/* Helper class */

.ir { background-color: transparent; border: 0; overflow: hidden; *text-indent: -9999px; }
.ir:before { content: ""; display: block;	width: 0;	height: 150%; }
.hidden { display: none !important; visibility: hidden; }
.visuallyhidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute;	width: 1px; }
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; }
.invisible { visibility: hidden; }
img { max-width: 100%; height: auto; margin: 0; padding: 0; border:0; outline: none; border-style: none; vertical-align: bottom; line-height: 0; }
img,iframe,object { max-width:100%; }	/* モダンブラウザ用 */
.ie7 img,.ie8 object { width:100%; }	/* IE7用 */
.ie8 img,.ie8 object { width:auto; }	/* IE8用 */
img[src$=".svg"] {	width: 100%; }		/* SVG IE対策 */


/* -------------------*/
/* -------------------*/
/* Common -------------------*/

:root{
	--hover: 0.75;
}
html,body{
	height: 100% !important;
}
html{
	font-size: 62.5%;
	line-height: 1;
	font-feature-settings: 'palt' 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
}
body{
	position: relative;
	color: #000;
	font-size: 14px;
	letter-spacing: 0.1em;
	text-align: center;
	font-weight: normal;
	word-wrap: break-word;
	font-family: 'Lato', 'Noto Sans JP', sans-serif;
	background-color: #fff;
}
@media screen and (max-width: 650px){
	body{
		font-size: 12px;
	}
}

/* link
 -------------------*/
a,
a:visited,
a:hover,
a:active{
	color: #444;
	-webkit-tap-highlight-color: transparent rgba(0,0,0,0);
	-moz-tap-highlight-color: transparent rgba(0,0,0,0);
	-ms-tap-highlight-color: transparent rgba(0,0,0,0);
	-o-tap-highlight-color: transparent rgba(0,0,0,0);
	tap-highlight-color: transparent rgba(0,0,0,0);
	text-decoration: none;
	transition: 0.15s ease-in-out;
	-webkit-transform: translateZ(0);
}
a:hover {
	text-decoration: none;
}
a img:hover{
	opacity: var(--hover);
}
a img { 
	text-decoration: none;
	outline: none;
}
a img::before,a img::after {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
}
a img,a img::before,a img::after {
	-webkit-transition: all .2s;
	transition: all .2s;
}

/* .cf
 -------------------*/
.cf:before, .cf:after { content: " ";	display: table; }
.cf:after { clear: both; }
.cf { *zoom: 1; }


/* img
 -------------------*/
svg{
	fill: currentColor;
}
/* object-fit IE対策 */
.object-fit-img {
	object-fit: contain;
	font-family: 'object-fit: contain;'
}

/* Loading
 -------------------*/

/* Loading背景画面設定　*/
#splash{
	position: fixed; /*fixedで全面に固定*/
	width: 100%;
	height: 100%;
	z-index: 999;
	background: #aaa;
	text-align: center;
	color: #fff;
}
/* Loading画像中央配置　*/
#splash_logo{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#splash_logo img{
	width: 260px;
}
.fadeIn{
	animation-name: fadeIn;
	animation-duration: 1.0s;
	animation-fill-mode: forwards;
	opacity: 0;
}
@keyframes fadeInAnime{
	from{
		opacity: 0;
		transform: translateY(100px);
	}
	to{
		opacity: 1;
		transform: translateY(0);
	}
}

/* #wrapper
 -------------------*/
#wrapper{
	position: relative;
/* 	overflow: hidden; */
	width: 100%;
	height: auto;
	padding: 0;
	margin: 0 auto;
	text-align: center;
}
.pc{ display: block; }
.sp{ display: none; }


/* #main
 -------------------*/
#main{
	position: relative;
	overflow: hidden;
	width: 100%;
	height: auto;
	margin: 0 auto;
}
.more-btn{
	position: relative;
}
.more-btn a{
	display: block;
	width: 280px;
	height: 60px;
	line-height: 60px;
	border-radius: 30px;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	margin: 0 auto;
	border: 2px solid;
}
@media screen and (max-width: 650px){
	.more-btn a{
		width: 220px;
		height: 54px;
		line-height: 54px;
		border-radius: 27px;
		font-size: 12px;
	}
}

/* -------------------*/
/* -------------------*/
/* Header -------------------*/

.g-nav{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 200;
}
.g-nav__in{
	display: flex;
	justify-content: space-between;
}
.g-nav__logo a{
	display: block;
	margin: 40px 0 0 40px;
	width: 180px;
	height: auto;
}
.g-nav__logo a img{
	width: 100%;
	height: auto;
}
.g-nav__list{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	width: 100%;
	padding: 50px 40px 0 20px;
}
.g-nav__list li{
	margin-left: 3%;
}
.g-nav__list li a{
	position: relative;
	display: inline-block;
	text-decoration: none;
	color: #fff;
	padding-bottom: 10px;
}
.g-nav__list li a::after{
	position: absolute;
	bottom: -1px;
	left: 0;
	content: '';
	width: 100%;
	height: 1px;
	background: #fff;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform .2s ease-in-out;
}
.g-nav__list li a:hover::after{
	transform-origin: left top;
	transform: scale(1, 1);
}
.g-nav__list li.i-sns a::after{
	height: 0;
}
.g-nav__list li img{
	width: auto;
	height: 18px;
}
.s-nav{
	display: none;
}
@media screen and (max-width: 960px){
	.g-nav__list li{
		margin-left: 4%;
	}
}
@media screen and (max-width: 650px){
	.g-nav__logo a{
		margin: 30px 0 0 20px;
		width: 120px;
	}
	.g-nav__list{
		display: none;
	}
	.s-nav{	/* overflow: hidden; つけないこと！ */
		position: relative;
		display: block;
	}
	.drawer-nav{
		display: flex;
		justify-content: center;
		width: 60vw;
		padding: 20% 0;
	}
	.drawer-nav ul{
		width: 100%;
	}
	.drawer-nav ul li{
		margin-bottom: 30px;
	}
	.drawer-nav ul li a{
		font-size: 14px;
	}
	.drawer-nav .i-sns{
		display: inline-block;
		padding: 10px 10px;
	}
	.drawer-nav .i-sns img{
		width: auto;
		height: 18px;
	}
}

/* -------------------*/
/* -------------------*/
/* Main-visual -------------------*/

#main-visual{
	position: relative;
	width: 100%;
	height: 100vh;
	background-image: url(../img/main-visual.jpg);
	background-position: center;
	background-size: cover;
}
.main-copy{
	position: relative;
	width: 100%;
	height: 100vh;
	padding: 40vh 16vw 0 0;
	margin: 0;
	text-align: right;
}
.main-copy img{
	width: 32vw;
	height: auto;
}
.scrolldown a{
	display: inline-block;
	position: absolute;
	right: 3%;
	bottom: 0;
	z-index: 2;
	padding: 10px 10px 180px;
	overflow: hidden;
}
.scrolldown a::after{
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 1px;
	height: 170px;
	background: #fff;
	animation: sdl 1.8s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes sdl{
	0%{
		transform: scale(1, 0);
		transform-origin: 0 0;
	}
	50%{
		transform: scale(1, 1);
		transform-origin: 0 0;
	}
	50.1%{
		transform: scale(1, 1);
		transform-origin: 0 100%;
	}
	100%{
		transform: scale(1, 0);
		transform-origin: 0 100%;
	}
}
@media screen and (max-width: 960px){
	#main-visual,
	.main-copy{
		height: 82vh;
	}
	.main-copy{
		padding: 35vh 10vw 0 0;
	}
	.main-copy img{
		width: 40vw;
	}
}
@media screen and (max-width: 650px){
	#main-visual,
	.main-copy{
		height: 72vh;
	}
	#main-visual{
		background-position: 45% center;
	}
	.main-copy{
		padding: 18vh 5vw 0 0;
	}
	.main-copy img{
		width: 52vw;
	}
}

/* -------------------*/
/* -------------------*/
/* Contents -------------------*/

/* common -------------------*/

#main .outer{
	position: relative;
	width: 100%;
	padding: 10% 0;
}
#main .outer .inner{
	width: 960px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	text-align: justify;
}
#main .outer .inner .l-content{
	width: calc(100% - 680px);
}
#main .outer .inner .r-content{
	width: 680px;
	line-height: 2.2;
}
#main .inner h2{
	font-size: 250%;
	font-weight: 300;
	letter-spacing: 0.2em;
}
#main .inner dl dt{
	font-size: 13px;
}
#main .inner dl dd{
	font-size: 16px;
	line-height: 1.7;
}

/* about -------------------*/

#about h3{
	font-size: 120%;
	letter-spacing: 0.15em;
}
#about .r-content p{
	padding: 2% 0 6%;
}
#about .img-area{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: auto;
	padding-top: 100px;
}
#about .img-area .img1{
	width: 20vw;
}
#about .img-area .img2{
	width: 50vw;
	margin-left: 10%;
}
#about .img-area img{
	width: 100%;
	height: auto;
}

/* item -------------------*/

#item .header-img{
	display: flex;
	width: 100%;
	padding-bottom: 5%;
}
#item .header-img img{
	width: 100%;
	height: auto;
}
#item .ec-site{
	position: relative;
	width: 100%;
}
#item .ec-site a{
	display: block;
	width: 100%;
	padding: 5% 3%;
	background: url(../img/icon-arrow.png) 98% center no-repeat;
	background-size: 58px;
	border-bottom: 1px solid #ccc;
	border-top: 1px solid #ccc;
}
#item .ec-site a:hover{
	background-color: #f6f6f6;
}
#item .ec-site p{
	width: 48%;
}
#item .ec-site .title{
	line-height: 1.8;
	padding-bottom: 3%;
}
#item .ec-site .title span{
	display: block;
	font-size: 200%;
	font-weight: 300;
}
#item .ec-site .read{
	font-size: 12px;
}

/* company -------------------*/

#company dl{
	width: 100%;
	border-bottom: 1px solid #ccc;
}
#company dl dt{
	padding-top: 4%;
	border-top: 1px solid #ccc;
}
#company dl dd{
	padding-bottom: 4%;
}

/* contact -------------------*/

#contact{
	position: relative;
	width: 90vw;
	margin: 0 auto;
}
#contact .inner a{
	display: block;
	width: 100%;
	padding: 7%;
	background-color: #f2f2f2;
}
#contact .inner a:hover{
	background-color: #555;
	color: #fff;
}
#contact .inner p{
	padding: 50px 0;
	display: inline-block;
	background: url(../img/icon-email.png) left center no-repeat;
	background-size: 50px;
	padding-left: 64px;
}
#contact .inner p span{
	font-size: 250%;
	font-weight: 300;
	padding-right: 10px;
	letter-spacing: 0.1em;
}
#contact .inner dl{
	border-top: 1px solid #ddd;
	padding-top: 20px;
	line-height: 2.2;
}

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

/* common -------------------*/

	#main .outer{
		width: 90%;
		margin: 0 auto;
		padding: 15% 0;
	}
	#main .outer .inner,
	#main .outer .inner .l-content,
	#main .outer .inner .r-content{
		width: 100%;
	}
	#main .outer .inner .l-content{
		padding-bottom: 8%;
		text-align: center;
	}

/* about -------------------*/
	
	#about .r-content p{
		padding: 2% 0 6%;
	}
	#about .img-area{
		padding-top: 5%;
	}
	
/* contact -------------------*/
	
	#contact .inner a{
		padding: 8% 3%;
	}
}

@media screen and (max-width: 650px){
	
/* common -------------------*/

	#main .outer{
		padding: 15% 0;
	}
	#main .outer .inner .l-content{
		padding-bottom: 10%;
		text-align: center;
	}
	#main .inner h2{
		font-size: 200%;
		letter-spacing: 0.15em;
	}
	#main .inner dl dt{
		font-size: 11px;
	}
	#main .inner dl dd{
		font-size: 14px;
	}

/* about -------------------*/

	#about h3{
		font-size: 13px;
	}
	#about .img-area{
	}
	#about .img-area .img1{
		width: 25vw;
	}
	#about .img-area .img2{
		width: 55vw;
		margin-left: 5vw;
	}
	
/* item -------------------*/

	#item .ec-site a{
		background-size: 30px;
	}
	#item .ec-site p{
		width: calc(100% - 50px);
	}
	#item .ec-site .title,
	#item .ec-site .read{
		font-size: 11px;
		line-height: 1.8;
	}
	#item .ec-site .title{
		padding-bottom: 7%;
	}
	
/* company -------------------*/

	#company dl dt{
		padding-top: 3%;
	}
	#company dl dd{
		padding-bottom: 3%;
	}
	
/* contact -------------------*/

	#contact .inner a{
		padding: 10% 3%;
	}
	#contact .inner p{
		padding: 8% 0;
		background-size: 32px;
		padding-left: 42px;
		font-size: 11px;
		background-position: left 60%;
	}
	#contact .inner p span{
		font-size: 200%;
		padding-right: 4px;
	}
	#contact .inner dl{
		padding-top: 5%;
	}
}

/* -------------------*/
/* -------------------*/
/* Footer -------------------*/

#footer{
	position: relative;
	width: 100%;
}
.footer-info{
	display: flex;
	justify-content: space-between;
	position: relative;
	width: 90vw;
	margin: 0 auto;
	padding: 5% 0;
}
.footer-info ul{
	display: flex;
}
.footer-info ul li{
	margin-right: 26px;
}
.footer-info ul li a{
	display: block;
}
.footer-info li.logo{
	width: 120px;
	height: auto;
}
.footer-info li.fb img,
.footer-info li.ig img{
	width: auto;
	height: 18px;
}
.footer-info .copyright{
	font-size: 10px;
	color: #999;
}
@media screen and (max-width: 960px){
	.footer-info ul li{
		margin-right: 24px;
	}
}
@media screen and (max-width: 650px){
	.footer-info{
		display: block;
		padding: 10% 0;
	}
	.footer-info ul{
		display: inline-block;
	}
	.footer-info li{
		display: inline-block;
		vertical-align: middle;
	}
	.footer-info li.logo{
		width: 100px;
	}
	.footer-info li.fb img,
	.footer-info li.ig img{
		height: 16px;
	}
	.footer-info .copyright{
		padding-top: 5%;
		font-size: 9px;
	}
}