/*
###
*/

body {
	-webkit-text-size-adjust: 100%;
	width:100%;
	margin: 0;
	padding: 0;
	background: #ffffff;
	}

.header2{
	padding-top:30px;
	background-image: url(../img/headerbg_pc.png);
	background-position: 500px top;
	background-repeat: repeat-x;
	background-size:975px 150px;
	height:140px;
	}

.contents {
	display: table;
	width: 100%;
	height: 100vh;
	padding: 0;
	margin: 0;
	background: #ffffff;
	-webkit-transition-property: all;
	transition-property: all;
	-webkit-transition-delay: .3s;
	transition-delay: .3s;
	-webkit-transition-duration: .5s;
	transition-duration: .5s;
	}

.contents__inner {
	display: table-cell;
	vertical-align: middle;
	text-align: left;
}

.contents__inner h1 {
	margin: 0;
	padding: 0;
	color: #ffffff;
	font-size: 40px;
	font-family: Futura, "Century Gothic", "helvetica neue", arial, sans-serif !important;
	font-style: italic;
	}

.contents__inner p span {
	border-bottom: 1px solid #fff;
	}


/* ------------------------------------------------ drawer menu */
.drawer-menu {
	z-index:20;
	box-sizing: border-box;
	position: fixed;
	top: 0px;
	width: 100%;
	height: 100%;
	background: #eeeeee;
	-webkit-transition-property: all;
	transition-property: all;
	-webkit-transition-duration: .5s;
	transition-duration: .5s;
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
	-webkit-transform-origin: right center;
	-ms-transform-origin: right center;
	transform-origin: right center;
	-webkit-transform: perspective(500px) rotateY(-90deg);
	transform: perspective(500px) rotateY(-90deg);
	opacity: 0;
}

.drawer-menu ul{
	padding-top:150px;
	display: block;
	}

.drawer-menu li {
	text-align: center;
	margin-bottom:20px;
}

.drawer-menu li a {
	display: block;
	height: 45px;
	line-height: 45px;
	font-size: 14px;
	color: #fff;
	-webkit-transition: all .8s;
	transition: all .8s;
	}

.drawer-menu li a img{
	width:200px;
	}


.drawer-menu li a:hover {
	color: #1a1e24;
	background: #ffffff;
	}

/* ------------------------------------------------ checkbox */
.check {
	display: none;
	}

/* ------------------------------------------------ menu button */
.menu-btn {
	position: fixed;
	display: block;
	top: 0px;
	right: 0px;
	display: block;

	font-size: 10px;
	text-align: center;
	cursor: pointer;
	z-index: 3;
	}
.menu-btn img{
	width:120px;
	}


.menu-btn__text {
	position: absolute;
	bottom: -15px;
	left: 0;
	right: 0;
	margin: auto;
	color: #ffffff;
	-webkit-transition: all .5s;
	transition: all .5s;
	display: block;
	visibility: visible;
	opacity: 1;
	}

.menu-btn:hover .bar {
	background: #999;
}

.menu-btn:hover .menu-btn__text {
	color: #999;
}

.close-menu {
	position: fixed;
	top: 0;
	right: 100%;
	width: 100%;
	height: 100vh;
	background: rgba(0,0,0,0);
	cursor: url(../images/cross.svg),auto;
	-webkit-transition-property: all;
	transition-property: all;
	-webkit-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
	visibility: hidden;
	opacity: 0;
}

/* ------------------------------------------------ checked */
.check:checked ~ .drawer-menu {
	-webkit-transition-delay: .3s;
	transition-delay: .3s;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	opacity: 1;
	z-index: 2;

}

.check:checked ~ .contents {
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
	-webkit-transform: translateX(-300px);
	-ms-transform: translateX(-300px);
	transform: translateX(-300px);
}

.check:checked ~ .menu-btn .menu-btn__text {
	visibility: hidden;
	opacity: 0;
}

.check:checked ~ .menu-btn .bar.top {
	width: 56px;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.check:checked ~ .menu-btn .bar.middle {
	opacity: 0;
}

.check:checked ~ .menu-btn .bar.bottom {
	width: 56px;
	top: 40px;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.check:checked ~ .close-menu {
	-webkit-transition-duration: 1s;
	transition-duration: 1s;
	-webkit-transition-delay: .3s;
	transition-delay: .3s;
	background: rgba(0,0,0,.5);
	visibility: visible;
	opacity: 1;
	z-index: 3;
	}

textarea.wpcf7-textarea{
	max-width:250px;
	}







