@charset "utf-8";


body {
    animation: fadeIn 1.2s ease-in 0s 1 normal;
    -webkit-animation: fadeIn 1.2s ease-in 0s 1 normal;
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

/* ----------------------------------------
 *  Core Style:
 * ---------------------------------------- */
.lastSidebar {
	opacity:0.97;
	width: 30%;
	height: 100%;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 9998;
	overflow: scroll;
	-webkit-overflow-scrolling: touch;
	background: #fff;
	-webkit-box-shadow: 8px 0 8px -8px #666 inset;
	-moz-box-shadow: 8px 0 8px -8px #666 inset;
	box-shadow: 8px 0 8px -8px #eee inset;
}
#lastOverlay {
	width: 100%;
	height: 100%;
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9997;
	background: rgba(0, 0, 0, 0.2);
}
body.noscroll {
	width: 100%;
	position: fixed;
	left: 0;
	right: 0;
	overflow: hidden;
}


/* ----------------------------------------
 *  Responsive Style:
 * ---------------------------------------- */
@media only screen and (max-width: 769px) {
	.lastSidebar {width: 30%;}
}
@media only screen and (max-width: 768px) {
	.lastSidebar {width: 55%;}
}
@media only screen and (max-width: 480px) {
	.lastSidebar {width: 80%;}
}

li .arrownav.icon {
	-color: #f66;
	right:8%;
	position: absolute;
	background-color: currentColor;
}
li .arrownav.icon:before {
	content: '';
	top:18px;
	position: absolute;
	right: 1px;
	width: 12px;
	height: 12px;
	border-top: solid 2px currentColor;
	border-right: solid 2px currentColor;
	-webkit-transform: rotate(45deg);
			transform: rotate(45deg);
}

/* ----------------------------------------
 *  User Style:
 * ---------------------------------------- */
#slideMenu p {
	margin: 0;
	padding: 24px 16px;
	color: #f66;
	font-size:calc(20px + 0.3vw);
}
.globalNavi {
	border-top: dotted 1px #ccc;
}
.globalNavi li {
	border-bottom: dotted 1px #ccc;
}
.globalNavi a li {
	color:#555;
	padding: 0 16px;
	line-height: 3.2em;
    -webkit-transition:0.5s; -moz-transition:0.5s; -o-transition:0.5s; -ms-transition:0.5s;
}
.globalNavi a li:hover {
	color:#fff;
	background:#bbb;
}
@media only screen and (max-width: 680px) {
.globalNavi a li:hover {
	color:#fff;
	background:#bbb;
}
}


.triggerBtn {
	width: 32px;
	height: 32px;
	display: block;
	position: fixed;
	top: 12px;
	right: 20px;
	left: auto;
	z-index: 9999;
	background: none;
}
#menuTrigger,
#menuTrigger span {
	display: inline-block;
	box-sizing: border-box;
	transition: all .4s;
}
#menuTrigger {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
#menuTrigger:active {
	background: rgba(255, 255, 255, 0.4);
}
#menuTrigger span {
    width: 28px;
    height: 2px;
    position: absolute;
    left: 0px;
    border-radius: 4px;
    background-color: #000000;
    -webkit-box-shadow: 0 0 4px #fff;
    -moz-box-shadow: 0 0 4px #fff;
    box-shadow: 0 0 4px #fff;
}

#menuBottom {
	color: #2e2e2e;
	position:fixed;
	right:18px;
	transition: .4s;
	top:50px;
}

#menuTrigger.active + #menuBottom {
	color: #fff;
}

#menuTrigger span:nth-of-type(1) {top: 4px;}
#menuTrigger span:nth-of-type(2) {top: 15px;}
#menuTrigger span:nth-of-type(3) {bottom: 4px;}
#menuTrigger.active span:nth-of-type(1) {
	background-color: #f66; /* ★★×の色★★ */
	-webkit-transform: translateY(11px) rotate(-45deg);
	transform: translateY(11px) rotate(-45deg);
}
#menuTrigger.active span:nth-of-type(2) {
	opacity: 0;
}
#menuTrigger.active span:nth-of-type(3) {
	background-color: #f66; /* ★★×の色★★ */
	-webkit-transform: translateY(-11px) rotate(45deg);
	transform: translateY(-11px) rotate(45deg);
}
