@charset "utf-8";
/*!
 * base CSS
 * ---------------------------------------------
 * 共通レイアウトに関わるCSS
 */

@import url("https://fonts.googleapis.com/earlyaccess/sawarabimincho.css");
@import url('https://fonts.googleapis.com/css?family=Noto+Serif');


/* reset
--------------------------------------------- */

article,aside,details,figcaption,figure,footer,header,menu,nav,section,main { 
    display:block;
}
article,aside,details,figcaption,figure,footer,header,menu,nav,section,main,
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
fieldset,img {
	border: 0;
}
* {
	font-size:100%;
	max-height: 999999px;
}
body {
	font: 100%/1 'Sawarabi Mincho', YuMincho, 'Yu Mincho', serif;
}
h1,h2,h3,h4,h5,h6,b {
	font-weight: normal;
}
ol,ul,li {
  list-style: none;
}
ul,ol {
	letter-spacing: -.40em;
}
ul > li,ol > li {
	letter-spacing: normal;
}
img {
	display: block;
	max-width: 100%;
	height: auto;
}
*:before,*:after {
	content: "";
	display: none;
}
html {
	-webkit-text-size-adjust: 100%;
}
input[type="button"],input[type="submit"] {
	-webkit-appearance: none;
}
.hiddenPc,
.brkSp {
	display: none;
}
.brkPc {
	display: block;
}
p {
	margin-bottom: 20px;
	}

/*===================================
	font link
=====================================*/

body,
a,a:visited {
	color: #5e5e5e;
}
body {
	font-size: 14px;
}
a {
	text-decoration: none;
}
a.underine {
	text-decoration: underline;
}
a.underine:hover {
	text-decoration: none;
}

/*===================================
	layout	
=====================================*/

body {
    /*background: #ede9e3;*/
    opacity: 1 !important;
}
.inner {
	width: 940px;
	margin-left: auto;
	margin-right: auto;
}


/*===================================
	header	
=====================================*/

.header {
    position: relative;
    z-index: 1000;
}

/*  menu
---------------------------------*/

.menu h2 {
	position: absolute;
	z-index: 1000;
}
.menu h2 {
	top: 32px;
	right: 31px;
	width: 30px;
	height: 25px;
	cursor: pointer;
}
.menu h2:hover {
	opacity: .7;
}
.menu h2 span {
	display: block;
	text-indent: -9999em;
}
.menu h2:after,.menu h2 span:before,.menu h2 span:after {
	display: block;
	position: absolute;
	left: 0;
	width: 30px;
	height: 2px;
	background: #5e5e5e;
}
.menu.blk h2:after,.menu.blk h2 span:before,.menu.blk h2 span:after {
    background: #000;
}
.menu.blk h2.open:after,.menu.blk h2.open span:before,.menu.blk h2.open span:after {
    background: #fff;
}
.menu h2 span:before {
	top: 0;
}
.menu h2:after {
	top: 12px;
}
.menu h2 span:after {
	top: 23px;
}
.menu h2.open span:before {
	top: 9px;
	transform: rotate(-45deg);
}
.menu h2.open:after {
	opacity: 0;
	transform: translateX(0px);
}
.menu h2.open span:after {
	top: 9px;
	transform: rotate(45deg);
}
.menu > div {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
}
.menu ul {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
	text-align: center;
}
.menu li a {
	display: block;
	color: #fff;
	font-size: 40px;
	font-weight: 500;
	line-height: 2.5em;
    transition: .5s;
}
.menu li a:hover {
    color: #ccc;
}

/*===================================
	footer	
=====================================*/

#copy {
    font-size: 12px;
    text-align: center;
}


/************************************************************************************
	大型PC 1280 〜
*************************************************************************************/



/************************************************************************************
	小型PC 960 〜 1279
*************************************************************************************/
@media screen and (max-width: 1279px) {
	
	/*===================================
		layout	
	=====================================*/

	.inner {
		margin-left: 10%;
		margin-right: 10%;
	}
	
}

/************************************************************************************
	タブレット 600 〜 959
*************************************************************************************/
@media screen and (max-width: 959px) {
	
	
	
}

/************************************************************************************
	SP横 480 〜 599
*************************************************************************************/
@media screen and (max-width: 599px) {
	
	.hiddenPc,
	.brkSp {
		display: block;
	}
	.hiddenSp,
	.brkPc {
		display: none;
	}
	body {
		font-size: 12px;
	}
	
    /*===================================
		header	
	=====================================*/

	

	/*  menu
	---------------------------------*/

	.menu h2 {
		top: 25px;
		right: 2.6%;
		width: 40px;
		height: 23px;
	}
	.menu h2:after,.menu h2 span:before,.menu h2 span:after {
		width: 40px;
		height: 1px;
	}
	.menu h2 span:before {
		top: 0;
	}
	.menu h2:after {
		top: 11px;
	}
	.menu h2 span:after {
		top: 22px;
	}
	.menu li a {
		font-size: 30px;
	}
    
    /*===================================
        footer	
    =====================================*/

    #copy {
        font-size: 12px;
    }
	
}

@media screen and (orientation: landscape) {
    
    /*.sp {}*/
}

/************************************************************************************
	SP縦 〜 479
*************************************************************************************/
@media screen and (max-width: 479px) {
	
	
	
	
	
}