@import url(https://fonts.googleapis.com/css?family=Fauna+One);
@charset "utf-8";

/**
 *
 * global: サイト共通
 *
 */


/*--------------------------------------------------------------------------
	reset
---------------------------------------------------------------------------*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,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;}
*{-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-o-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;}
body{line-height:1;}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block;}
nav ul{list-style:none;}
ul,ol,li,dl,dt,dd{list-style-type:none;list-style-position:outside;}
blockquote,q{quotes:none;}
blockquote:before,blockquote:after,q:before,q:after{content:none;}
a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent;}
ins{text-decoration:none;}
img{vertical-align:top;border:0;image-rendering: optimizeQuality;-ms-interpolation-mode: bicubic;}
del{text-decoration:line-through;}
hr{display:block;height:0;border:0;margin:0;padding:0;}
abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help;}
table{border-collapse:collapse;border-spacing:0;}
em,strong{ font-weight: bold;}

input,select,textarea{margin:0;padding:0;vertical-align:baseline;}
mark{background-color:#ff9;color:#000;font-style:italic;font-weight:bold;}

img {max-width: 100%;}

/*--------------------------------------------------------------------------
	basic elements
---------------------------------------------------------------------------*/
html{
	overflow-y: scroll;
}
body{
	background: #fff;
	font-family: 'proxima_nova',YuGothic, '游ゴシック',"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ", "Meiryo",Sans-Serif;
	font-size: 14px;
	color: #222222;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
}
a {
	color: #03256d;
	outline:none;
	display:inline-block;
	text-decoration: none;
	-webkit-tap-highlight-color: rgba(3, 37, 109, 0.4);}
a:hover {color:#03256d;}

.centering {
	position: relative;
	top: 50%;
	  -webkit-transform: translateY(-50%);
	  -ms-transform: translateY(-50%);
	  transform: translateY(-50%);
}

.button {
	display: inline-block;
	width: 80%;
	max-width:250px;
	height: 58px;
	text-align: center;
	text-decoration: none;
	line-height: 58px;
	outline: none;
}
.button::before,
.button::after {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
}
.button,
.button::before,
.button::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s;
	transition: all .3s;
}
/**/
.button {
	position: relative;
	z-index: 2;
	background-color: #fff;
	border: 1px solid #ccc;
	color: #222;
	line-height: 56px;
	overflow: hidden;
	text-decoration:none !important;
	font-weight:400;
	letter-spacing:2px;
	font-size:15px;
}
.button:hover {
	color: #fff;
	border: 1px solid #222;
	text-decoration:none !important;
}
.button::after {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-transform: scale(.5);
	transform: scale(.5);
}
.button:hover::after {
	background: #222;
	-webkit-transform: scale(1);
	transform: scale(1);
}

/*--------------------------------------------------------------------------
	Tablet
---------------------------------------------------------------------------*/

@media all and (max-width: 1024px) {

}

/*--------------------------------------------------------------------------
	Smart Phone
---------------------------------------------------------------------------*/

@media all and (max-width: 767px){
body{
	background: #fafafa;
}
#MenuButton {
	width:60px;
	height:60px;
	padding:20px 20px;
	position:fixed;
	top:0;
	right:0;
	z-index:1003;
	cursor:pointer;
}

#Menu {
	width: 20px;
	height: 24px;
	margin: 0 auto;
	position: relative;
	cursor: pointer;
}
#Menu .bar {
	display: inline-block;
	width: 20px;
	height: 2px;
	background-color: #fff;
	position: absolute;
	left: 0;
	transition: .15s ease-in-out;
}
.sub #Menu .bar{background-color: #222;}
#bar01 {
	top: 0;
}
#bar02 {
	top: 8px;
}
#bar03 {
	top: 16px;
}
#Menu.active .bar {
	background-color: #222;
}
#Menu.active #bar01 {
	top: 8px;
	transform: rotate(45deg);
}
#Menu.active #bar02 {
	width: 0;
}
#Menu.active #bar03 {
	top: 8px;
	transform: rotate(-45deg);
}
}