/**
 * Featherlight - ultra slim jQuery lightbox
 * Version 1.2.1 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2015, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/
@media all{
*{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
.featherlight{
	display:none;
	position:fixed;
	top:0;right:0;
	bottom:0;
	left:0;
	z-index:10000;
	text-align:center;
	white-space:nowrap;
	cursor:pointer;
	background:#fff;
	width:100%;
	background:rgba(255,255,255,0);
}
.featherlight:last-of-type{
	background:rgba(255,255,255,.8)
}
.featherlight:before{
	content:'';
	display:inline-block;
	height:100%;
	vertical-align:middle;
	margin-right:-.25em
}
.featherlight .featherlight-content{
	position:relative;
	text-align:left;
	vertical-align:middle;
	display:inline-block;
	overflow-y:school;
	overflow-x:hidden;
	padding:55px 5px 5px 5px;
	border-bottom:5px solid transparent;
width: 100%;
	max-width: 980px;
	/*
		width:100%;
	margin-top:-5%;*/
	max-height:95%;
	background-color:#faf0ea;
	cursor:auto;
	white-space:normal;
}
.lightbox {
background-color: rgba(255, 255, 255, 0.8);
	padding:3px;
	margin-bottom:0;
	width:100%;
}
.featherlight .featherlight-inner{
	display:block;
}
.featherlight .featherlight-close-icon{
	position:absolute;
	z-index:9999;
	top:0;
	left:0;
	line-height:50px;
	width:50px;
	cursor:pointer;
	text-align:center;
	font:Arial,sans-serif;
	background:#DC7185;
	font-size:20px;
	color:#fff;
	font-weight:bold;
}
.featherlight .featherlight-close-oregnal{
	width:120px;
	margin:20px auto auto auto;
	cursor:pointer;
	text-align:center;
	display:block;
    border-radius: 10px;
	font:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	background:#DC7185;
	padding:3px;
	font-size:20px;
	color:#fff;
}

.featherlight .featherlight-image{
	width:100%
}
.featherlight-iframe .featherlight-content{
	border-bottom:0;
	padding:0
}
.featherlight iframe{
	border:0
}
/*@media print, screen and (min-width: 641px) {
.featherlight .featherlight-inner{
	width:100%;
}
}*/
@media print, screen and (min-width: 769px) {
.featherlight .featherlight-inner{
	width:900px;
	margin: 0 auto;
}
}
@media only screen and (max-width:640px){
.featherlight .featherlight-content{
	margin-left:0px;
	margin-right:0px;
	max-height:98%;
	border-bottom:5px solid transparent;
	overflow:scroll
}
}