body {
	margin: 0;
	padding: 0;
}

.contents {
	display: table;
	width: 100%;
	height: 100vh;
	padding: 0;
	margin: 0;
	background: #f6bc60;
	box-shadow: 0 0 50px 0 rgba(0,0,0,.8);
	-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: center;
}

.contents__inner h1 {
	margin: 0;
	padding: 0;
	color: #000;
	font-size: 40px;
	font-style: italic;
}

.contents__inner p {
	margin-top: 20px;
	color: #000;
	font-size: 20px;
}

.contents__inner p span {
	border-bottom: 1px solid #fff;
}

/* ------------------------------------------------ drawer menu */
.drawer-menu {
	box-sizing: border-box;
	position: fixed;
	top: 0;
	right: 0;
	width: 300px;
	height: 100%;
	padding: 120px 0;
	background: #FFF;
	-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 li {
	text-align: center;
}

/* text */
.drawer-menu ul {
	border-top: 1px solid #FF8A73;	
}
.drawer-menu li a {
	letter-spacing: 0.1em;
	display: block;
	height: 50px;
	line-height: 50px;
	font-size: 14px;
	color: #FF8A73;
	-webkit-transition: all .8s;
	transition: all .8s;
	border-bottom: 1px solid #FF8A73;
}

.drawer-menu li a:hover {
	color: #FFF;
	background: #FF8A73;
}

/* ------------------------------------------------ checkbox */
.check {
	display: none;
}

/* ------------------------------------------------ menu button */
.menu-btn {
	position: fixed;
	display: block;
	display: block;
	text-align: center;
	cursor: pointer;
	z-index: 99999;
}

.bar {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	height: 1px;
	background: #FF8A73;
	-webkit-transition: all .5s;
	transition: all .5s;
	-webkit-transform-origin: left top;
	-ms-transform-origin: left top;
	transform-origin: left top;
	color: #FF8A73;
	z-index: 99999;
}

.bar.middle {
	opacity: 1;
	z-index: 99999;
}

.bar.bottom {
	-webkit-transform-origin: left bottom;
	-ms-transform-origin: left bottom;
	transform-origin: left bottom;
	z-index: 99999;
}

.menu-btn__text {
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	color: #555;
	-webkit-transition: all .5s;
	transition: all .5s;
	display: block;
	visibility: visible;
	opacity: 1;
	z-index: 99999;
}

/* PC */
@media screen and (min-width: 769px){

.menu-btn {
	display: none;
	top: 25px;
	right: 40px;
	width: 40px;
	height: 40px;
	font-size: 10px;
}

.bar {
	width: 40px;
}

.bar.middle {
	top: 15px;
}

.bar.bottom {
	top: 30px;
}

.menu-btn__text {
	bottom: -15px;
}

}

/* tablet */
@media screen and (max-width: 768px){

.menu-btn {
	top: 25px;
	right: 30px;
	width: 40px;
	height: 40px;
	font-size: 10px;
}

.bar {
	width: 40px;
}

.bar.middle {
	top: 15px;
}

.bar.bottom {
	top: 30px;
}

.menu-btn__text {
	bottom: -15px;
}

}

/*  SP */
@media screen and (max-width:640px){

.menu-btn {
	top: 20px;
	right: 25px;
	width: 33px;
	height: 33px;
	font-size: 10px;
}

.bar {
	width: 33px;
}

.bar.middle {
	top: 10px;
}

.bar.bottom {
	top: 20px;
}

.menu-btn__text {
	bottom: -15px;
}

}

.menu-btn:hover .bar {
	background: #FF8A73;
}

.menu-btn:hover .menu-btn__text {
	color: #FF8A73;
}

.close-menu {
	position: fixed;
	top: 0;
	right: 300px;
	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 {
	background: #FFF;
	-webkit-transition-delay: .3s;
	transition-delay: .3s;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	opacity: 1;
	z-index: 99997;
}

.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;
	color: #FF8A73;
}

.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: 99998;
}