@charset "utf-8";
/* CSS Document */

body ,h1, h2, h3, h4, h5, h6, p, ol, ul, li, blockquote, pre, a,div {
  margin: 0;
  padding: 0;
  font-size:100%;
  line-height: inherit;
  box-sizing: border-box;
}
body {
  -webkit-text-size-adjust: 100%;
  line-height: 1;
}
ol, ul {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
th, td {
  vertical-align: top;
  text-align:left;
  font-weight: normal;
}


img {
  border: 0;
  vertical-align: bottom;
}
a { text-decoration: none; }



body{
  background:#555;
  padding: 20px;
}
.photo-editor-stage{
	padding: 10px;
	box-shadow: 0px 2px 5px rgba(0,0,0,0.5);
	background: #fff;
	border-radius:10px;
	width: 820px;
	max-width: 100%;
	margin: 0 auto;
}
.photo-block {
	width: 100%;
	overflow: hidden;
	background: #000;
}
.photo-block img {
	width: 100%;
}
.bar {
	margin: 20px;
	padding: 40px 0;
}
.bar #zoomRange {
	display: block;
}
.bar #brightnessRange,
.bar #rotateRange {
	display: none;
}

.controllers {
	width: 100%;
	display: flex;
	justify-content: center;
	flex-flow: row-reverse;
	text-align: center;
	margin-bottom: 10px;
}
.control-btn {
	width: 45px;
	height: 45px;
	background: #8096A1;
	border-radius: 30px;
	margin: 10px;
	cursor: pointer;
}
.control-btn img {
	width: 100%;
}

.controllers2 {
	width: 100%;
	display: flex;
	justify-content: center;
	text-align: center;
}
.controllers2 .left-block {
	width: 60%;
	display: flex;
}
.controllers2 .right-block {
	width: 40%;
	display: flex;
}
.controllers2 p{
	padding-top: 5px;
	font-size: 75%;
	text-align: center;
}

.controllers2 .icon-img {
	width: 60px;
	border-radius: 5px;
	margin: 5px;
	cursor: pointer;
}
.controllers2 .btn-set.crt .icon-img {
	background: #CCC;
}
.controllers2 .right-block {
	justify-content: flex-end;
}
#resetBtn, #downloadBtn, #downloadBtn2{
	background: #000;
}


input[type=range] {
	-webkit-appearance: none;
	appearance: none;
	margin: 5px 0;
	width: 100%;
	height: 5px;
	border-radius: 3px;
}
input[type=range]:focus {
	outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
	width: 100%;
	height: 10px;
	cursor: pointer;
	background: #EFEFEF;
	border-radius: 5px;
}
input[type=range]::-webkit-slider-thumb {
	height: 30px;
	width: 30px;
	border-radius: 50%;
	margin-top: -12px;
	background: #8096A1;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
	box-shadow: 0px 2px 5px rgba(0,0,0,0.5);
}
input[type=range]:focus::-webkit-slider-runnable-track {
	/*background: #8096A1;*/
}
input[type=range]::-moz-range-track {
	width: 100%;
	height: 10px;
	cursor: pointer;
	animate: 0.2s;
}
input[type=range]::-moz-range-thumb {
	height: 30px;
	width: 30px;
	border-radius: 50%;
	background: #8096A1;
	border: none;
	cursor: pointer;
	box-shadow: 0px 2px 5px rgba(0,0,0,0.5);
}
input[type=range]::-ms-track {
	width: 100%;
	height: 10px;
	cursor: pointer;
	background: transparent;
	border-color: transparent;
	color: transparent;
}
input[type=range]::-ms-fill-lower {
	background: #E8E8E8;
	border-radius: 10px;
}
input[type=range]::-ms-fill-upper {
	background: #8096A1;
	border-radius: 10px;
}
input[type=range]::-ms-thumb {
	margin-top: 1px;
	height: 10px;
	width: 5px;
	border: none;
	background: #8096A1;
	cursor: pointer;
}

.icon-img {
	text-align: center;
}
.icon-img img {
	width: 80px;
	max-width: 100%;
}
._label {
	text-align: center;
}

/* スマホ画面縦の場合 */

@media screen and (max-width:480px){
	body {
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 0;
	}
	.photo-editor-stage{
		padding: 50px 0px;
		box-shadow: none;
		background: #fff;
		border-radius: 0;
		width: 100%;
		max-width: 100%;
		height: 100vh;
		margin: 0 auto;
		position: relative;
		overflow: hidden;
	}
	.bar {
		margin: 20px;
		padding: 50px 0;
	}
	.controllers2 {
		position: fixed;
		bottom: 10px;
		padding: 0.5em;
	}
}



/* 画面横の場合 
@media only screen and (max-device-width: 932px) and (orientation: landscape){
body{
  padding: 15px;
}
.photo-editor-stage{
	padding: 10px;
	box-shadow: 0px 2px 5px rgba(0,0,0,0.5);
	background: #fff;
	border-radius:10px;
	width: 820px;
	max-width: 90%;
	height: 92vh;
	margin: 0 auto 0 15px;
	position: relative;
	overflow: hidden;
}
.photo-block {
	width: 100%;
	overflow: hidden;
	background: #000;
	max-height: 100%; 
}
.photo-block img {
	width: 100%;
}
.bar {
	margin: 20px;
	padding: 0;
	position: absolute;
	bottom: 2px;
	left: 20px;
	width: 90%;
	opacity: 0.7;
}
.bar #zoomRange {
	display: block;
}
.bar #brightnessRange,
.bar #rotateRange {
	display: none;
}

.controllers {
	width: 60px;
	height: 100%;
	display: flex;
	justify-content: center;
	flex-flow: row-reverse;
	flex-flow: column;
	text-align: center;
	margin-bottom: 10px;
	position: absolute;
	right: 80px;
	top: 10px;
}
.control-btn {
	width: 45px;
	height: 45px;
	background: #8096A1;
	border-radius: 30px;
	margin: 10px;
	cursor: pointer;
}
.control-btn img {
	width: 100%;
}

.controllers2 {
	width: 60px;
	height: 100vh;
	display: flex;
	justify-content: center;
	flex-flow: column;
	text-align: center;
	position: fixed;
	right: 0;
	top: 0;
	background: #FFF;
}
.controllers2 .left-block {
	width: 100%;
	display: block;
}
.controllers2 .right-block {
	width: 100%;
	display: block;
}
.controllers2 p{
	padding-top: 2px;
	font-size: 50%;
	text-align: center;
}

.controllers2 .icon-img {
	width: 50px;
	border-radius: 5px;
	margin: 5px;
	cursor: pointer;
}
.controllers2 .btn-set.crt .icon-img {
	background: #CCC;
}
.controllers2 .right-block {
	justify-content: flex-end;
}
#resetBtn, #downloadBtn {
	background: #000;
}
}
*/

