@charset "utf-8";
/**
/* CSS RESET START
----------------------------------------------- */
html, body, div, span, applet, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre,a, abbr, acronym, address, big, cite, code,del, dfn, em, img, ins, kbd, q, s, samp,small, strike, strong, sub, sup, tt, var,b, u, i, center,dl, dt, dd, ol, ul, li,fieldset, form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td,article, aside, canvas, details, embed,figure, figcaption, footer, header, hgroup,menu, nav, output, ruby, section, summary,time, mark, audio, video {margin: 0;padding: 0;border: 0;vertical-align: baseline;box-sizing: border-box;-webkit-box-sizing: border-box;}
article, aside, details, figcaption, figure,footer, header, hgroup, menu, nav, section {display: block;}
html{overflow-y: scroll;}
blockquote, q {quotes: none;}
blockquote:before, blockquote:after,q:before, q:after {content: '';content: none;}
input, textarea{margin: 0;padding: 0;outline: none;}
ol, ul{list-style:none;}
table{border-collapse: collapse; border-spacing:0;width:100%;}
caption, th{text-align: left;}
img {vertical-align: middle;max-width:100%;height: auto;}
.clearfix {min-height: 1px;}
.clearfix:after {content: "."; display: block;clear: both;height: 0;visibility: hidden;}
.both{clear:both;}
/**
/* CSS START
----------------------------------------------- */
html,body {
	width: 100%;
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
	color: #222222;
	font-size: 16px;
	margin: 0;
	padding: 0;
	line-height: 1.6;
	letter-spacing: 0.01em;
}
#Wrapper{
	width: 100%;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	overflow: hidden;
}
*, *:before, *:after{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}
a{
	text-decoration: none;
	-webkit-transition: 0.8s;
	-moz-transition: 0.8s;
	-o-transition: 0.8s;
	-ms-transition: 0.8s;
	transition: 0.8s;
	color: #000000;
}
a:hover{
	opacity: 0.8;
}
.Com{
	zoom: 1;
}
.Com:before, .Com:after{
	content: "";
	display: table;
}
.Com:after{
	clear: both;
}
br.pc_br,
.pc_img{
	display: none;
}
@media only screen and (min-width: 736px){
	br.sp_br,
	.sp_img{
		display: none;
	}
	.pc_img,
	br.pc_br{
		display: inline-block;
	}
}
/**
/* flex CSS
----------------------------------------------- */
.flex{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.flex_row{
	webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
.flex_between{
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.flex_column{
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
		flex-direction: column;
}
.flex_center{
	-webkit-justify-content: center;
	justify-content: center;
}
.flex_wrap{
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
}
/**
/* ヘッダー CSS
----------------------------------------------- */
header{
	background: url("../image/bg_header.png");
	background-size: cover;
	background-position: center;
	height: 110vh;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	animation-name: headBG;
	animation-duration: 1.2s
}
@keyframes headBG{
	0%{ transform: scale(1.1,1.1)}
	100%{ transform: scale(1,1)}
}
header h1{
	animation-name: logoFlip;
	animation-delay: 0.5s;
	animation-fill-mode: both;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	width: 100%;
	padding: 0.8em;
}
@keyframes logoFlip{
	0%{
		transform: rotateX(300deg);
		opacity: 0
	}
	100%{ 
		transform: rotateX(360deg);
		opacity: 1
	}
}
@media only screen and (max-width: 735px) {
	header h1 img{
		width: 100px;
	}
}
/**
/* ナビ CSS
----------------------------------------------- */
.global-nav .drawer-hamburger{
	display: block;
	width: 20px;
	padding: 10px 10px 18px 10px;
	background: rgba(0,0,0,0.8);
}
.drawer--top .global-nav .drawer-hamburger,
.drawer--top .global-nav .drawer-open .drawer-hamburger{
	z-index: 1000;
	right: 5%;
	top: 5%;
}
.global-nav .drawer-hamburger-icon,
.global-nav .drawer-hamburger-icon::after,
.global-nav .drawer-hamburger-icon::before{
	background: #ffffff;
}
.drawer-open .global-nav .drawer-hamburger-icon{
	background-color: transparent;
}
.global-nav .drawer-hamburger-icon::after{
	top: 8px;
}
.global-nav .drawer-hamburger-icon::before{
	top: -8px;
}
.drawer-open .global-nav .drawer-hamburger-icon:after,
.drawer-open .global-nav .drawer-hamburger-icon:before{
	top: 0;
}
.drawer--top .global-nav .drawer-nav{
	position: fixed;
	z-index: 999;
	height: 100%;
	background-color: #222222;
	display: block;
}
.global-nav h1{
	width: 100%;
	padding: 0.8em;
}
.global-nav .drawer-nav ul{
	width: 100%;
	position: absolute;
	top: 50%;
	transform: translateY(50%);
	-webkit-transform: translateY(50%);
    -ms-transform: translateY(50%);
}
.global-nav .drawer-nav ul li{
	text-align: center;
}
.global-nav .drawer-nav ul li a{
	font-family: 'Roboto', sans-serif;
	font-size: 30px;
	color: #ffffff;
	line-height: 2.4;
}
@media only screen and (max-width: 735px) {
	.global-nav h1 img{
		width: 100px;
	}
	.global-nav .drawer-nav ul li a{
		font-size: 6vw;
		line-height: 2;
	}
}
@media only screen and (min-width: 736px) and (max-width: 1024px){
	.global-nav .drawer-nav ul li a{
		font-size: 28px;
		line-height: 2.2;
	}
}
/**
/* Common CSS
----------------------------------------------- */
.inner{
	max-width: 1300px;
	margin: auto;
	padding: 0 40px;
}
@media only screen and (max-width: 735px) {
	img{
		width:100%;
	}
	.inner{
		width: 86%;
		padding: 0;
	}
}
@media only screen and (min-width: 736px) and (max-width: 1024px){
	.inner{
		width: 86%;
		padding: 0;
	}
}
/**
/* フッター CSS
----------------------------------------------- */
footer{
	text-align: center;
	background: #FFF;
	position: relative;
	z-index: 100;
	padding: 40px 0 30px 0;
}
#footMenu{
	text-align: center;
	padding: 20px 0 40px 0;
}
#footMenu li{
	display: inline-block;
	margin: 0 40px 0 0;
	padding: 0 42px 0 0;
	border-right: 1px solid #aaa;
}
#footMenu li a{
	font-family: 'Roboto', sans-serif;
	font-size: 15px;
}
#footMenu li:last-child{
	margin: 0;
    padding: 0;
    border-right: none;
}
footer p{
	font-size: 15px;
	padding: 20px 0 0 0;
	letter-spacing: 0.15em
}
@media only screen and (max-width: 735px) {
	footer{
		padding: 5% 0 5% 0;
	}
	#footMenu{
		width: 90%;
		margin: auto;
		padding: 3% 0 5% 0;
	}
	#footMenu li{
		display: block;
		margin: 0;
	    padding: 0;
	    border-right: none;
	}
	#footMenu li a {
		background: #f5f4f4;
		display: block;
		width: 100%;
		margin: 2px 0;
		padding: 4% 0;
		font-size: 3.4vw;
		letter-spacing: 0.15em;
		text-decoration: none;
		color: #222;
		transition: background 0.5s linear;
	}
	footer .footer_logo img{
		width: 100px;
	}
	footer p{
		font-size: 3.26vw;
		padding: 3% 0 0 0;
	}
}
@media only screen and (min-width: 736px) and (max-width: 1024px){
	footer{
		padding: 30px 0 20px 0;
	}
	#footMenu{
		padding: 20px 0 30px 0;
	}
	#footMenu li{
		font-size: 15px;
		margin: 0 20px 0 0;
	    padding: 0 22px 0 0;
	}
	footer p{
		font-size: 15px;
		padding: 20px 0 0 0;
	}
}