/**
 * @author sara
 * Copyright (c) 2018 sara Co., Ltd.
 * All rights reserved.
 */
 
 @import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
 
/* リセット
–––––––––––––––––––––––––––––––––––––––––––––––––– */

body , html {
	width: 100%;
	height: 100%;
	overflow: hidden;
}
body{
	margin:0;
	padding:0;
	font-family: rift-soft,aie,sans-serif;
	font-style: normal;
}

h1,h2,h3,h4,h5,h6,p,dl,dt,dd,ol,ul,li{margin:0;padding:0;}
ul{list-style: none}
.clearfix:after	{
	height: 0;
	visibility: hidden;
	content: ".";
	display: block;
	clear: both;
}

img{
	max-width: 100%;
	height: auto;
	display:block;
}
img[src$=".svg"] {
	width: 100%;
}

a:link { color: #000;text-decoration: none; }
a:visited { color: #000;text-decoration: none; }
a:hover { color: #000; text-decoration: none;}
a:active { color: #000; text-decoration: none;}

input[type="checkbox"]{display: none}


.overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, .45);
	overflow: hidden;
	overflow-y: auto; /* scrollにはしないことでスクロールの必要がないときはスクロールバーを表示させない */
	-webkit-overflow-scrolling: touch;
}


/* body
–––––––––––––––––––––––––––––––––––––––––––––––––– */
#container {
	width: 100%;
	height: 100%;
}

.panolens-container{
	z-index:0;
}
#panel_body{
	display: none;
}
#panel_body.active{
	display: block;
}
#panel_body.onload{
	display: block;
}
.panel_wrapper{
	display: flex;
	justify-content: left;
	flex-flow: column;
	position: absolute;
	left:0;
	top:0;
	z-index: 1000;
	height: calc(100vh - 10px);
	opacity: 0;
	transform: translateX(-100%);
	transition: all .3s;
	transform-origin: top left;
}

#panel_body.active .panel_wrapper{
	transition-delay: 500ms;
	opacity: 1;
	transform: translateX(0);
	transition: all .3s;
}
.panel{
	border-bottom-right-radius: 25px;
	width:300px;
	display: flex;
	flex-flow: column;
	align-items: left;
	background-color: white;
}
.panel .label{
	background: rgba(36, 55, 147, 1.0);
	border-bottom-right-radius: 25px;
	position: relative;
	width: 80%;
	height: 70px;
}
.panel .label p {
	height: 100%;
	color:white;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size:33px;
}
.panel .label .close{
	position: absolute;
	right: -17%;
	top: 15%;
	width: 30px;
}

.panel .mainbody{
	padding: 15px 20px 20px;
}

.panel .title{
	margin:0 0 10px;
}
.panel .product{
	font-size: 21px;
}
.panel .code{
	font-size: 21px;
}

.panel a{
	color: #5cc2e6;
	text-decoration: none;
}
.panel .image{
	display:flex;
	justify-content:center;
}
.panel .image img{
	max-height: 260px;
}



.close{

	width: 30px;
	height: 30px;
	background-image: url(../asset/img/close.png);
	background-size: cover;
	cursor: pointer;
}
.bottom_link_wrapper {
	position: relative;
	width: 80%;
	height: 40px;
	background-color: #ffffff;
	border-bottom-right-radius: 25px;
	/* border: solid 1px lightgray; */
	border-top: none;
}
.bottom_link_base {
	width: 100%;
	height: 60px;
	background-color: rgba(36, 55, 147, 1.0);
	border-top-left-radius: 25px;
	border-bottom-right-radius: 25px;
}
.toast_bottom_span {
	padding-top: 4px;
	justify-content: center;
	display: flex;
}
.link_message {
	padding: 0;
	margin: 0;
	text-align: center;
	color: #ffffff;
	font-weight: 600;
	width: 120px;
}
.toast_bottom_span > p::before,
.toast_bottom_span2 > p::before {
	font-size: 20px;
	content: "詳細はこちら";
}
.toast_bottom_span > p::after {
	font-size: 15px;
	font-weight: 100;
	letter-spacing: 1.5px;
	content: "CLICK HERE!";
}
.toast_bottom_span2 > p::after {
	font-size: 15px;
	font-weight: 100;
	letter-spacing: 1.5px;
	content: "10/26 公開予定";
}
.toast_bottom_link_image {
	height: 30px;
	width: 30px;
	position: absolute;
	top: 36%;
	right: 8%;
	pointer-events: none;
	-webkit-user-drag: none;
	-moz-user-select: none;
}

/*スクリーンショット*/
#outputBtn {
	position: absolute;
	left: 2%;
	bottom: 3.5%;
	width: 100px;
}
#outputBtn img {
	cursor: pointer;
}