@charset "UTF-8";
/*----------------------------------------
Name: common.scss
import:
----------------------------------------*/
/* reset.css 
----------------------------------------------*/
body {
	-webkit-text-size-adjust: 100%;
	font-size: 15px;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	line-height: 1.875;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-style: normal;
	font-weight: normal;
	vertical-align: baseline;
	font-size: 100%;
}
div,h1,h2,h3,h4,h5,h6,p,dl,dt,dd,ol,ul,li,form,input,textarea,button,table,tr,th,td,article,aside,footer,header,hgroup,nav,section {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}

input, textarea {
	margin: 0;
	padding: 0;
}

input, select {
	vertical-align: middle;
}

ol, ul {
	list-style: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

caption, th {
	text-align: left;
}

img {
	vertical-align: top;
}

a:focus,
input[type="text"], 
input[type="password"], 
textarea, 
select,
button {
	outline: none;
}


/* clearfix */
.clearfix {
	*zoom: 1;
}

.clearfix:after {
	content: " ";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}

/* waves.css 
----------------------------------------------*/
/*!
 * waves v0.7.4
 * http://fian.my.id/Waves
 */
.waves-effect {
	position: relative;
	-webkit-tap-highlight-color: transparent;
}
.waves-effect .waves-ripple {
	background-clip: content-box;
	background-color: rgba(0, 0, 0, 0.3);
	border-radius: 50%;
	height: 60px;
	margin-top: -30px;
	margin-left: -30px;
	opacity: 0;
	position: absolute;
	-webkit-transform: scale(0) translate(0, 0);
			transform: scale(0) translate(0, 0);
	-webkit-transition-duration: 0.6s;
			transition-duration: 0.6s;
	-webkit-transition-property: opacity, -webkit-transform;
	transition-property: opacity, -webkit-transform;
	transition-property: opacity, transform;
	transition-property: opacity, transform, -webkit-transform;
	-webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
			transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	width: 60px;
}
.waves-effect.waves-light .waves-ripple {
	background-color: rgba(255, 255, 255, 0.3);
}

.waves-wrap {
	overflow: hidden;
	pointer-events: none;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	-webkit-user-select: none;
	 -moz-user-select: none;
		-ms-user-select: none;
			user-select: none;
}
.waves-circle > .waves-wrap {
	border-radius: 50%;
	-webkit-mask: url();
			mask: url();
	-webkit-transform: translateZ(0);
			transform: translateZ(0);
	-webkit-mask-image: -webkit-radial-gradient(circle, #ffffff 100%, #000000 100%);
}

/* slick.css 
----------------------------------------------*/
/* Slider */
.slick-slider {
	position: relative;

	display: block;
	box-sizing: border-box;

	-webkit-user-select: none;
		 -moz-user-select: none;
		-ms-user-select: none;
			user-select: none;

	-webkit-touch-callout: none;
	-khtml-user-select: none;
	-ms-touch-action: pan-y;
		touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}

.slick-list {
	position: relative;

	display: block;
	overflow: hidden;

	margin: 0;
	padding: 0;
}
.slick-list:focus {
	outline: none;
}
.slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
	height: 100%;

	-webkit-transform: translate3d(0, 0, 0);
		 -moz-transform: translate3d(0, 0, 0);
		-ms-transform: translate3d(0, 0, 0);
		 -o-transform: translate3d(0, 0, 0);
			transform: translate3d(0, 0, 0);
}

.slick-track {
	position: relative;
	top: 0;
	left: 0;

	display: block;
}
.slick-track:before,
.slick-track:after {
	display: table;

	content: '';
}
.slick-track:after {
	clear: both;
}
.slick-loading .slick-track {
	visibility: hidden;
}

.slick-slide {
	display: none;
	float: left;

	height: 100%;
	min-height: 1px;
}
[dir='rtl'] .slick-slide {
	float: right;
}
.slick-slide img {
	display: block;
}
.slick-slide.slick-loading img {
	display: none;
}
.slick-slide.dragging img {
	pointer-events: none;
}
.slick-initialized .slick-slide {
	display: block;
}
.slick-loading .slick-slide {
	visibility: hidden;
}
.slick-vertical .slick-slide {
	display: block;

	height: auto;

	border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
	display: none;
}

/* Slider */
.slick-loading .slick-list
{
	background: #fff url('./ajax-loader.gif') center center no-repeat;
}

/* Icons */
/* Arrows */
.slick-prev,
.slick-next {
	font-size: 0;
	line-height: 0;

	position: absolute;
	top: 50%;

	display: block;

	/*width: 50px;
	height: 50px;*/
	width: 40px;
	height: 40px;
	padding: 0;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);

	cursor: pointer;

	border: none;
	outline: none;
	
	background-color: rgba(81,81,81,0.8);
	/*border-radius: 50px;*/
	border-radius: 40px;
	box-shadow: 2px 2px 3px 0 rgba(0,0,0,0.3);
	-webkit-box-shadow: 2px 2px 3px 0 rgba(0,0,0,0.3);
	-moz-box-shadow: 2px 2px 3px 0 rgba(0,0,0,0.3);
	
	z-index: 10;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
	outline: none;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
	opacity: 1;
}
.slick-prev.slick-disabled,
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled,
.slick-next.slick-disabled:before {
	opacity: 0;
}

.slick-prev:after,
.slick-next:after {
	display: block;
	/*width: 50px;
	height: 50px;*/
	width: 40px;
	height: 40px;
	line-height: 1;

	color: transparent;

	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.slick-prev {
	/*left: 10px;*/
	left: 6px;
}
[dir='rtl'] .slick-prev {
	/*right: 10px;*/
	right: 6px;
	left: auto;
}
.slick-prev:after {
	content: '←';
	background: url('./icon_ya_left.png') no-repeat center center;
	background-size: 40px 40px;
}
[dir='rtl'] .slick-prev:after {
	content: '→';
	background: url('./icon_ya_right.png') no-repeat center center;
	background-size: 40px 40px;
}

.slick-next {
	/*right: 10px;*/
	right: 6px;
}
[dir='rtl'] .slick-next {
	right: auto;
	/*left: 10px;*/
	left: 6px;
}
.slick-next:after {
	content: '→';
	background: url('./icon_ya_right.png') no-repeat center center;
	background-size: 40px 40px;
}
[dir='rtl'] .slick-next:after {
	content: '←';
	background: url('./icon_ya_left.png') no-repeat center center;
	background-size: 40px 40px;
}

/* Dots */
.slick-dotted.slick-slider
{
	margin-bottom: 30px;
}

.slick-dots
{
	position: absolute;
	bottom: -25px;

	display: block;

	width: 100%;
	padding: 0;
	margin: 0;

	list-style: none;

	text-align: center;
}
.slick-dots li
{
	position: relative;

	display: inline-block;

	width: 20px;
	height: 20px;
	margin: 0 5px;
	padding: 0;

	cursor: pointer;
}
.slick-dots li button
{
	font-size: 0;
	line-height: 0;

	display: block;

	width: 20px;
	height: 20px;
	padding: 5px;

	cursor: pointer;

	color: transparent;
	border: 0;
	outline: none;
	background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
	outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
	opacity: 1;
}
.slick-dots li button:before
{
	font-family: 'slick';
	font-size: 6px;
	line-height: 20px;

	position: absolute;
	top: 0;
	left: 0;

	width: 20px;
	height: 20px;

	content: '•';
	text-align: center;

	opacity: .25;
	color: black;

	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
	opacity: .75;
	color: black;
}




/* パーツ
----------------------------------------------*/
.btn {
	position: relative;
	display: block;
	margin-bottom: 0;
	max-width: 100%;
	
	background-image: none;
	background-position: 50% 50%;
	background-size: 100% 100%;
	
	border: 0;
	border-radius: 5px;
	box-shadow: 3px 3px 8px 1px rgba(0,0,0,0.5);
	-webkit-box-shadow: 3px 3px 8px 1px rgba(0,0,0,0.5);
	-moz-box-shadow: 3px 3px 8px 1px rgba(0,0,0,0.5);
	
	color: #333;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
	user-select: none;
	cursor: pointer;
	overflow: hidden;
}

/* レイアウト
----------------------------------------------*/
html, body { 
	height: 100%;
	color: #333;
	background-color: #EDEDED;
}

#wrapper {
	height:100%;
}

#header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	/*height: 70px;*/
	height: 56px;
	background-color: #A3A3A3;
	
	box-shadow: 0 1px 2px 0 rgba(0,0,0,0.1);
	-webkit-box-shadow: 0 1px 2px 0 rgba(0,0,0,0.1);
	-moz-box-shadow: 0 1px 2px 0 rgba(0,0,0,0.1);
	
	z-index: 10;
}
#contents {
	height: 100%;
	box-sizing: border-box;
}
.inner {
	height: 100%;
}

/* #dateInfo
-------------------------------------*/
#dateInfo {
	padding: 0 25px;
}
#dateInfo div {
	color: #fff;
	/*font-size: 39px;*/
	font-size: 31px;
}
#dateInfo div {
	display: inline-block;
}
#dateInfo > div > span{
	/*font-size: 26px;*/
	font-size: 21px;
}
#dateInfo .week {
	/*font-size: 26px;*/
	font-size: 21px;
}

/* #nav
-------------------------------------*/
#nav {
	position: absolute;
	top: 20px;
	right: 20px;
	
	z-index: 1000;
}
#nav .dropdown-toggle {
	/*width: 90px;
	height: 90px;*/
	width: 72px;
	height: 72px;
	
	border: none;
	background-color: #515151;
	/*border-radius: 45px;*/
	border-radius: 36px;
	box-shadow: 2px 2px 3px 0 rgba(0,0,0,0.3);
	-webkit-box-shadow: 2px 2px 3px 0 rgba(0,0,0,0.3);
	-moz-box-shadow: 2px 2px 3px 0 rgba(0,0,0,0.3);
}
.dropdown-menu {
	position: absolute !important;
	top: 100%;
	left: 0;
	/*width: 320px;*/
	width: 256px;
	min-width: 100%;
	margin: 10px 0 0 !important;
	/*padding: 32px 25px;*/
	padding: 25.6px 20px;
	
	background-color: #fff;
	border: 1px solid rgba(0,0,0,.12);
	border-radius: 0 2px 2px;
	
	box-shadow: 0 1px 0 rgba(0,0,0,.06),0 0 3px rgba(0,0,0,.18),0 1px 3px rgba(0,0,0,.18);
	
	opacity: 0;
	-webkit-transform: scale(.3,0);
	transform: scale(.3,0);
	
	-webkit-transform-origin: 0 0;
	transform-origin: 0 0;
	
	transition-duration: .3s;
	-webkit-transition-property: opacity,-webkit-transform;
	transition-property: opacity,-webkit-transform;
	transition-property: opacity,transform;
	transition-property: opacity,transform,-webkit-transform;
	transition-timing-function: cubic-bezier(.4,0,.2,1);
	
	z-index: 1000;
}
.dropdown-menu .icon img {
	width: 34px;
	height: 34px;
}
.dropdown.open .dropdown-menu {
	opacity: 1;
	-webkit-transform: scale(1,1);
	transform: scale(1,1);
}
.dropdown-menu.dropdown-menu-right, .dropdown.pull-right .dropdown-menu {
	border-radius: 2px 0 2px 2px;
	right: 0;
	left: auto;
	-webkit-transform-origin: 100% 0;
	transform-origin: 100% 0;
}

.dropdown-menu li {
	/*margin-bottom: 32px;*/
	margin-bottom: 26px;
}
.dropdown-menu li:last-child {
	margin-bottom: 0;
}
.dropdown-menu li .icon {
	/*margin-right: 12px;*/
	margin-right: 10px;
}
.dropdown-menu li .icon img {
	width: 33px;
	height: 33px;
}
.dropdown-menu li a, .dropdown-menu li a:focus, .dropdown-menu li a:hover {
	display: block;
	width: 100%;
	
	color: #333;
	/*font-size: 31px;
	line-height: 41px;*/
	font-size: 25px;
	line-height: 33px;
	text-decoration: none;
}

/* #room
-------------------------------------*/
#room {
	position: absolute;
	/*top: 70px;*/
	top: 56px;
	left: 0;
	width: 100%;
	/*height: 76px;*/
	height: 61px;
	padding: 0 25px;
	
	/*font-size: 38px;*/
	font-size: 31px;
	
	background-color: rgba(255,255,255,0.7);
	box-shadow: 0 1px 2px 0 rgba(0,0,0,0.2);
	-webkit-box-shadow: 0 1px 2px 0 rgba(0,0,0,0.2);
	-moz-box-shadow: 0 1px 2px 0 rgba(0,0,0,0.2);
	
	z-index: 5;
}

/* #loaderWrapper
-------------------------------------*/
#loaderWrapper {
	position: absolute;
	top: 0;
	left: 0;
	display: -webkit-flex;
	display: flex;
	width: 100%;
	height: 100%;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	
	background-color: rgba(0,0,0,0.7);
	
	overflow: hidden;
	
	z-index: 10000;
}
.loader {
    position: relative;
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-animation: load8 1.1s infinite linear;
	animation: load8 1.1s infinite linear;
}
@-webkit-keyframes load8 {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@keyframes load8 {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}


/* #modalWrapper
-------------------------------------*/
#modalWrapper {
	position: absolute;
	top: 0;
	left: 0;
	display: -webkit-flex;
	display: flex;
	width: 100%;
	height: 100%;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	
	background-color: rgba(0,0,0,0.7);
	
	z-index: 10000;
}
.modalContent{
	position: relative;
	width: 60%;
	min-height: 50%;
	margin: 0 auto;
	
	background-clip: padding-box;
	background-color: #fff;
	border: 1px solid transparent;
	border-radius: 4px;

		box-shadow: 0 1px 30px rgba(0,0,0,0.5);
	-webkit-box-shadow: 0 1px 30px rgba(0,0,0,0.5);
	-moz-box-shadow: 0 1px 30px rgba(0,0,0,0.5);
		outline: 0;
		
}

/*汎用的なモーダルの設定*/
.modalContent .inner {
	padding: 20px 20px;
}
.modalContent .inner p {
	/*font-size: 27px;*/
	font-size: 22px;
}
.modalContent .modalBtnArea {
	position: absolute;
	bottom: 5px;
	left: 0;
	width: 100%;
	padding: 10px 20px;
	
	text-align: right;
	
}
.modalContent .modalBtn {
	display: inline-block;
	margin-left: 20px;
	padding: 5px 10px;
	color: #0277bd;
	text-decoration: none;
}
.modalContent .modalBtn:first-child {
	margin-left: 0;
}

/*時間表示*/
.modalContent .modalTimeDisp {
	margin: 20px auto;
	font-size: 50px;
	/*font-size: 40px;*/
	text-align: center;
}

/* #roomList
-------------------------------------*/
#roomList {
	position: relative;
	width: 90%;
	height: 90%;
	padding-top: 60px;
}
#roomList .btnClose {
	position: absolute;
	top: 16px;
	right: 20px;
}
#roomList .btnClose .icon {
	width: 24px;
	height: 24px;
}
#roomList .roomListHeader {
	height: 60px;
	margin-top: -60px;
	padding: 0 20px;
	/*font-size: 30px;*/
	font-size: 24px;
	line-height: 60px;
	border-bottom: 4px solid #eaeaea
}
#roomList .roomListHeader .time {
	display: inline-block;
	margin-left: 20px;
}
#roomList .roomListBoxWrapper {
	width: 100%;
	height: 100%;
	overflow: auto;
}
#roomList .roomListBoxWrapper .roomListBox {
	display: table;
	width: 100%;
	padding: 10px 10px;
	
	border: 1px solid #eaeaea;
}
#roomList .roomListBox > div {
	display: table-cell;
	padding: 0 10px;
	/*font-size: 26px;*/
	font-size: 21px;
}
#roomList .roomListBox .name {
	width: 30%;
}
#roomList .roomListBox .status {
	width: 96px;
	/*font-size: 20px;*/
	font-size: 16px;
	color: #fff;
	text-align: center;
}
#roomList .roomListBox .status .label {
	display: inline-block;
	width: 86px;
	padding: 6px 0;
	margin: 0 auto;
	text-align: center;
	line-height: 1;
}
#roomList .roomListBox .status .label.vacancyLabel {
	background-color: #4e9af4;
}
#roomList .roomListBox .status .label.unavailableLabel {
	background-color: #9e9e9e;
}
#roomList .roomListBox .roomListBtn {
	width: 230px;
}
#roomList .roomListBox .roomListBtn .btn {
	width: 210px;
}
#roomList .roomListBox .roomListBtn .btn.vacancyBtn {
	background-color: #c5e1a5;
}
@charset "UTF-8";
/*----------------------------------------
Name: input.scss
----------------------------------------*/
/* レイアウト
----------------------------------------------*/
#wrapper {
	/*padding-top: 146px;*/
	padding-top: 117px;
}


/* #main
-------------------------------------*/
#sub {
	position: relative;
	height: 100%;
	/*padding: 75px 25px 20px;*/
	padding: 60px 20px 16px;
}
#sub h1 {
	position: absolute;
	top: 8px;
	/*font-size: 30px;*/
	font-size: 24px;
}

/* #inputBox
-------------------------------------*/
#inputBox {
	position: relative;
	width: 100%;
	height: 100%;
	/*padding: 28px 28px;*/
	padding: 16px 22px;
	
	background-color: #fff;
	box-shadow: 0 1px 2px 0 rgba(0,0,0,0.1);
	-webkit-box-shadow: 0 1px 2px 0 rgba(0,0,0,0.1);
	-moz-box-shadow: 0 1px 2px 0 rgba(0,0,0,0.1);
}
#inputBox p {
	font-size: 21px; 
}

/* .inputTimeBox */
.inputTimeBox {
	display: table;
	width: 60%;
	margin: 20px auto 0;
	
	
	/*font-size: 30px;*/
	font-size: 24px;
}
.inputTimeBox > div {
	display: table-cell;
	text-align: center;
	vertical-align: middle;
}
.inputTimeBox > div.inputTime {
	width: 35%;
	/*font-size: 24px;*/
	font-size: 19px;
	text-align: left;
}
.inputTimeBox > div.inputTime input[type="time"] {
	width: 100%;
	margin-top: 5px;
	padding: 5px;
	font-size: 24px;
}

/* .btnArea */
.btnAreaSub {
	position: absolute;
	/*bottom: 28px;*/
	bottom: 25px;
	left: 0;
	width: 100%;
	
	text-align: center;
}
.btnAreaSub .btn {
	display: inline-block;
	width: 36%;
	padding: 8px 0;
	
	/*font-size: 26px;*/
	font-size: 26px;
}
.btnAreaSub .btn span {
	display: -webkit-flex;
	display: flex;
	width: 100%;
	height: 100%;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
}
/*利用開始する*/
.btnAreaSub .btn.start {
	margin-right: 3%;
	background-color: #B3E5FC;
	
}
/*キャンセルする*/
.btnAreaSub .btn.cancel {
	margin-left: 3%;
	background-color: #FFECB3;
}
@charset "UTF-8";
/*----------------------------------------
Name: main.scss
----------------------------------------*/

/* レイアウト
----------------------------------------------*/
/*背景色設定*/
body.use {
	background-color: #ffcdd2;
}
#wrapper {
	/*padding-top: 146px;*/
	padding-top: 117px;
}


/* #main
-------------------------------------*/
#main {
	height: 100%;
	/*padding: 20px 25px;*/
	padding: 16px 20px;
}
/* #state
-------------------------------------*/
#stateBox {
	position: relative;
	display: table;
	width: 100%;
	height: 40%;
	
	color: #fff;
	
	box-shadow: 0 1px 2px 0 rgba(0,0,0,0.2);
	-webkit-box-shadow: 0 1px 2px 0 rgba(0,0,0,0.2);
	-moz-box-shadow: 0 1px 2px 0 rgba(0,0,0,0.2);
	
	z-index: 5;
}
#stateBox .state {
	position: relative;
	display: table-cell;
	width: 30%;
	
	/*font-size: 62px;*/
	font-size: 50px;
	font-weight: bold;
	text-align: center;
	
	vertical-align: middle;
}
#stateBox .state:after {
	content: "";
	position: absolute;
	/*bottom: -38px;*/
	bottom: -30px;
	left: 7%;
	display: block;
	width: 0px;
	height: 0px;
	border-style: none;
	/*border-width: 38px 18px 0 18px;*/
	border-width: 30px 14px 0 14px;
	border-color: transparent transparent transparent transparent;
}
#stateBox .textArea {
	display: table-cell;
	width: 70%;
	/*padding: 0 32px;*/
	padding: 0 26px;
	
	/*font-size: 25px;*/
	font-size: 20px;
	
	vertical-align: middle;
}

/*使用中*/
.use .state {
	background-color: #D32424;
}
.use .state:after {
	border-style: solid !important;
	border-color: #D32424 transparent transparent transparent !important;
}
.use .textArea {
	background-color: #ED4A4A;
}
/*空室*/
.vacancy .state {
	background-color: #2f7ded;
}
.vacancy .state:after {
	border-style: solid !important;
	border-color: transparent transparent transparent transparent !important;
}
.vacancy .textArea {
	background-color: #4e9af4;
}
/*入室待ち*/
.wait .state {
	background-color: #ff8f00;
}
.wait .state:after {
	border-style: solid !important;
	border-color: #ff8f00 transparent transparent transparent !important;
}
.wait .textArea {
	background-color: #ffa726;
}
/*利用不可*/
.unavailable .state {
	background-color: #424242;
}
.unavailable .state:after {
	border-style: solid !important;
	border-color: transparent transparent transparent transparent !important;
}
.unavailable .textArea {
	background-color: #9e9e9e;
}

/* #bottom
-------------------------------------*/
#bottom {
	/*padding-top: 20px;*/
	padding-top: 16px;
	height: 60%;
}

/* #info
-------------------------------------*/
#info {
	position: relative;
	float: left;
	width: 68%;
	height: 100%;
}
#info .infoBox {
	width: 100%;
	height: 100%;
	
	background-color: #fff;
	box-shadow: 0 1px 2px 0 rgba(0,0,0,0.1);
	-webkit-box-shadow: 0 1px 2px 0 rgba(0,0,0,0.1);
	-moz-box-shadow: 0 1px 2px 0 rgba(0,0,0,0.1);

}
#info .caption {
	float: right;
	/*position: absolute;
	top: 0;
	right: 0;*/
	
	/*margin: 16px 20px;
	padding: 10px 15px;*/
	margin: 13px 16px;
	padding: 8px 12px;
	
	/*font-size: 29px;
	line-height: 40px;*/
	font-size: 23px;
	line-height: 32px;
	
	background-color: #e0e0e0;
	border-radius: 5px;
	
}
#info .title {
	/*padding: 10px 50px;*/
	padding: 8px 44px;
	/*font-size: 40px;*/
	font-size: 32px;
	
	border-bottom: 2px solid #eaeaea;
}
#info .time {
	/*padding: 0 50px;*/
	padding: 0 44px;
	/*font-size: 68px;*/
	font-size: 54px;
}
#info .person {
	/*padding: 0 50px;*/
	padding: 0 44px;
	/*font-size: 31px;*/
	font-size: 25px;
}
#info .person .ttl {
	/*margin-right: 10px;
	padding: 5px 10px;*/
	margin-right: 8px;
	padding: 4px 8px;
	color: #fff;
	/*font-size; 26px;*/
	font-size: 21px;
	background-color: #a3a3a3;
	border-radius: 3px;
}
/* .btnArea
-------------------------------------*/
.btnArea {
	float: right;
	width: 32%;
	height: 100%;
	/*padding-left: 16px;*/
	padding-left: 13px;
}
.btnArea .btn {
	width: 100%;
	
	/*font-size: 40px;*/
	font-size: 32px;
}
.btnArea .btn > span {
	display: -webkit-flex;
	display: flex;
	width: 100%;
	height: 100%;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	
	flex-flow: column nowrap;
}
.btnArea .btn .mainText {
	width: 100%;
	line-height: 1.1;
}
.btnArea .btn .subText {
	width: 100%;
	/*font-size: 30px;*/
	font-size: 24px;
}
/*退出する*/
.btnArea .btn.leave {
	height: 54%;
	margin-bottom: 4%;
	
	background-color: #B3E5FC;
}
/*延長する*/
.btnArea .btn.extend {
	height: 41%;
	background-color: #FFECB3;
}
/*延長不可*/
.btnArea .btn.disable {
	height: 41%;
	background-color: #9e9e9e;
}
/*入室する（即時予約）*/
.btnArea .btn.reservation {
	height: 100%;
	background-color: #dcedc8;
}
/*入室する*/
.btnArea .btn.enter {
	height: 100%;
	background-color: #ffcdd2;
}


/* 追加のスタイルはここに書く */
/* ------------------------------
   確認ダイアログのボタン表示
------------------------------ */
#confirmDialog .modalBtnArea {
    position: absolute;
    bottom: 25px;
    left: 0;
    width: 100%;
    
    text-align: center;
}
#confirmDialog .modalBtnArea .modalBtn {
    position: relative;
    margin-bottom: 0;
    max-width: 100%;
    
    background-image: none;
    background-position: 50% 50%;
    background-size: 100% 100%;
    
    border: 0;
    border-radius: 5px;
    box-shadow: 3px 3px 8px 1px rgba(0,0,0,0.5);
    -webkit-box-shadow: 3px 3px 8px 1px rgba(0,0,0,0.5);
    -moz-box-shadow: 3px 3px 8px 1px rgba(0,0,0,0.5);
    
    color: #333;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    user-select: none;
    cursor: pointer;
    overflow: hidden;
    display: inline-block;
    width: 36%;
    padding: 8px 0;
    
    font-size: 26px;
}
/*利用開始する*/
#confirmDialog .modalBtnArea #acceptButton {
    margin-right: 3%;
    background-color: #B3E5FC;
    
}
/*キャンセルする*/
#confirmDialog .modalBtnArea #cancelButton {
    margin-left: 3%;
    background-color: #FFECB3;
}
/* メイン画面用
-------------------------------------*/
/* 機能ごとにHTMLを用意したため合わせてスタイルを定義 */
#reserveRoom, #extendRoom, #otherReserveRoom {
	position: absolute;
	top: 56px;
	left: 0;
	width: 100%;
	height: 61px;
	padding: 0 25px;
	
	font-size: 31px;
	
	background-color: rgba(255,255,255,0.7);
	box-shadow: 0 1px 2px 0 rgba(0,0,0,0.2);
	-webkit-box-shadow: 0 1px 2px 0 rgba(0,0,0,0.2);
	-moz-box-shadow: 0 1px 2px 0 rgba(0,0,0,0.2);
	
	z-index: 5;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 100px;
}

/*非表示*/
.btnArea .btn.hidden {
	display: none;
}

/* 入力をinput type=timeではなく、JQueryのDateTimePickerに変更したため */
.inputTimeBox > div.inputTime input[type="text"] {
	width: 100%;
	margin-top: 5px;
	padding: 5px;
	font-size: 24px;
}

/* 設定画面用
-------------------------------------*/
/* .btnArea */
.btnArea {
	position: static;
}
.inputBox select.form-control {
	height: 36px;	
	padding-top: 0;
	font-size: 22px;
	line-height: 24px;
    /* パスが異なるため変更 */
    background: url(../Content/icon_select.png) no-repeat;
	background-position: 100% 11px;
	background-size: 12px 12px;
	padding-right: 20px;
    -webkit-appearance: none;
	-moz-appearance: none;
}

/* 自動キャンセル */
#info .cancel {
	padding: 12px 44px;
	font-size: 25px;
    color: #D32424;
    font-weight: bold;
}

/* 状態の下のサブテキスト */
#stateBox .state .subText {
    font-size: 24px;
}

#room {
    padding-right: 100px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

#info .title {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

#nextInfo .title {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

#backButton[disabled]{
    background-color: #9e9e9e;
}

.selectTimeBox {
    text-align: center;
}
.selectTimeBoxRow1 {
    position:absolute;
    width:95%; 
    bottom: 220px;
}
.selectTimeBoxRow2 {
    position:absolute;
    width:95%; 
    bottom: 140px;
}
.selectTimeButton {
    width: 16%;
    display: inline-block;
    font-size: 24px;
    margin-right:2%;
    margin-left:1%;
	padding: 6px 0;
    background-color: #ededed;
}
.selectTimeBox .disabled {
    background-color: #a3a3a3;
}

.inputTimeBox > div.inputTime input[type="text"] {
	width: 100%;
	margin-top: 5px;
	padding: 5px;
	font-size: 54px;
    text-align: center;
    border: 2px solid #a3a3a3;
}

/*即時入室制限会議室の背景色*/
/*-------------------------------------*/
.restrict .state {
	background-color: #483d8b;
}
.restrict .state:after {
	border-style: solid !important;
	border-color: transparent transparent transparent transparent !important;
}
.restrict .textArea {
	background-color: #9370db;
}

/* サーバー切断時（手動更新を促す） */
#dateInfo .disconnected {
    padding: 0 10px;
    color: #fff;
    font-size: 20px;
    margin: 0 15px;
    font-weight: bold;
    vertical-align: baseline;
}

#roomList .roomListBox .name {
    word-break: break-all;
}

/* IEで画面拡大を抑制する */
body {
    -ms-content-zooming: none;
}


/* 集中管理画面用
-------------------------------------*/
.listBox > .infoBox {
	padding-top: 10px;		
    min-width: 600px;
    max-width: 600px;
    overflow:hidden;
}

.listBox > .btnArea {
    min-width: 400px;
    max-width: 400px;
}

.listBox > .titleBox {
    position: relative;
	display: table-cell;
	min-width: 610px;
	max-width: 610px;
	padding-left: 10px;
	padding-top: 28px;
	
	font-size: 32px;
	font-weight: bold;
	vertical-align: top;
	line-height: 1.3;
	
	border-right: 1px solid #ddd;
}

#reservePanel.modalContent, #extendPanel.modalContent, #otherReservePanel.modalContent{
    height: 630px;
    width: 1150px;
}

#centralOtherReserveRoom {
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    
    width: 100%;
	padding-left: 25px;
	font-size: 31px;
	
	background-color: rgba(255,255,255,0.7);
	box-shadow: 0 1px 2px 0 rgba(0,0,0,0.2);
	-webkit-box-shadow: 0 1px 2px 0 rgba(0,0,0,0.2);
	-moz-box-shadow: 0 1px 2px 0 rgba(0,0,0,0.2);	
	z-index: 5;
}

#inputBox {
    height: 90%;
}
/* ------------------------------
   horizontialSlider
------------------------------ */
.marquee {
    overflow:hidden;
    position:relative;
}

.marquee span:after {
    content:"";
    white-space:nowrap;
}

.marquee span {
    margin:0;
    display:inline-block;
    white-space:nowrap;
    animation-name:marquee;
    animation-timing-function:linear;
    animation-duration:20s;
    animation-iteration-count:infinite;
    animation-delay:-9.99s;
}

@keyframes marquee {
    from { transform:translate(100%);  }
    to   { transform:translate(-100%); }
}

.scrollBox {
    overflow:hidden;
    white-space:nowrap;
    text-overflow:clip;
}

.roomSliderFrame {
    min-width: 510px;
    max-width: 510px;
    overflow: hidden;
}

.personSliderFrame {
    min-width: 170px;
    max-width: 170px;
    overflow: hidden;
    display: inline-block;
    position: absolute;
}

.titleSliderFrame {
    min-width: 610px;
    max-width: 610px;
    overflow: hidden;
    display: inline-block;
    position: absolute;
}

/* ------------------------------
   verticalSlider
------------------------------ */
.loopSliderWrap {
	overflow: hidden;
	position: absolute;
}

.loopSlider {
	height: 1080px;
	text-align: left;
	position: relative;
	overflow: hidden;
}

.loopSlider ul {
	overflow: hidden;
}

.loopSlider ul li {
	overflow: hidden;
}

/* ------------------------------
   集中管理端末会議室設定
------------------------------ */
#scrollUl {
    height:600px;
    width:calc(100% - 50px);
    position:absolute;
    right:0px;
    overflow-y:scroll;
    overflow-x:hidden;
    background-color:#FF0000;
    opacity:0.0;
}

.grabButton {
    min-width: 40px;
    max-height: 40px;
    margin-right: 10px;
    background-color:lightgray;
    font-size:22px;
    border-radius: 5px;
    color: #333;
    text-align: center;
    text-decoration: none;
    box-shadow: 3px 3px 8px 1px rgba(0,0,0,0.5);
    pointer-events: auto;
}

#selectedRoomsWrap {
    position:relative;
}

#selectedRooms {
    touch-action:none;
    position: absolute;
    width:100%;
}

.ms-elem-selection {
    display: flex;
    pointer-events: none;
}

.ms-container .ms-selection li.ms-elem-selection {
    padding-left: 5px;
}

.placeHolder {
    border:3px;
    border-radius:10px;
    border-style:dashed;
    border-color:gray;
    background-color:lightgray;
    min-height:50px;
    opacity:0.8;
}

.forceAbsolute {
	position: absolute;
}

.overrideBtn {
    max-width: 423px;
}

/* ------------------------------
   会議室一覧
------------------------------ */
#roomGroupList{
    font-size:18px;
}
.form-control{
    height: 34px;
    padding: 6px 12px;
    line-height: 1.4285;
    color: #555;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: inset 0px 1px 1px rgba(0,0,0,0,0.075);
}

/* ------------------------------
   集中端末表示画面改良
------------------------------ */
.stateBox_imp {
	position: absolute;
	left: 0;
	top: 30px;
	display: inline-block;
	width: 134px;
	margin: 0 10px 0 10px;
	padding: 8px 0;
	color: #fff;
	font-size: 24px;
	line-height: 24px;
	text-align: center;
	vertical-align: middle;
	
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.nameBox_imp {
	position: relative;
	display: table-cell;
	width: 700px;
	padding-left: 149px;
	padding-top: 30px;
	
	font-size: 29px;
	font-weight: bold;
	vertical-align: top;
	line-height: 1.3;
	
	border-right: 1px solid #ddd;
}

.listBox > .infoBox_imp {
	display: table-cell;
	padding: 0 10px;
	vertical-align: middle;
	border-right: 1px solid #ddd;
	padding-top: 10px;		
    min-width: 550px;
    max-width: 550px;
    overflow:hidden;
}

.infoBox_imp .time {
	position: relative;
	display: inline-block;
	min-width: 282px;
	margin-right: 10px;
	padding-left: 68px;
	font-size: 34px;
	vertical-align: middle;
	
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.infoBox_imp .time .iconNext {
	position: absolute;
	left: 0;
	top: 20px;
	display: inline-block;
	margin-top: -6px;
	margin-right: 20px;
	padding: 9px 4px;
	color: #fff;
	font-size: 14px;
	line-height: 1;
	vertical-align: middle;
	background-color: #a3a3a3;
}

.infoBox_imp .time .iconNext:after {
	content: "";
	position: absolute;
	top: 0;
	right: -34px;
	width: 0;
	height: 0;
	border: 16px solid transparent;
    border-left: 18px solid #a3a3a3;
}

.infoBox_imp .subscriber {
	display: inline-block;
	font-size: 30px;
	vertical-align: middle;
    min-width: 88px;
}

.infoBox_imp .subscriber .icon {
	display: inline-block;
	position: relative;
	margin-top: -6px;
	margin-right: 5px;
	padding: 9px 4px;
	color: #fff;
	font-size: 14px;
	line-height: 1;
	vertical-align: middle;
	background-color: #a3a3a3;
}

.listBox > .titleBox_imp {
    position: relative;
	display: table-cell;
	min-width: 210px;
	max-width: 210px;
	padding-left: 10px;
	padding-top: 30px;
	
	font-size: 32px;
	font-weight: bold;
	vertical-align: top;
	line-height: 1.3;
	
	border-right: 1px solid #ddd;
}

.roomSliderFrame_imp {
    min-width: 232px;
    max-width: 232px;
    overflow: hidden;
}

.personSliderFrame_imp {
    min-width: 150px;
    max-width: 150px;
    overflow: hidden;
    display: inline-block;
    position: absolute;
}

.titleSliderFrame_imp {
    min-width: 192px;
    max-width: 192px;
    overflow: hidden;
    display: inline-block;
    position: absolute;
}

/* ------------------------------
   集中端末表示画面拡張
------------------------------ */
.stateBox_widen {
	position: absolute;
	left: 0;
	top: 30px;
	display: inline-block;
	width: 134px;
	margin: 0 10px 0 10px;
	padding: 8px 0;
	color: #fff;
	font-size: 24px;
	line-height: 24px;
	text-align: center;
	vertical-align: middle;
	
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.nameBox_widen {
	position: relative;
	display: table-cell;
	width: 820px;
	padding-left: 164px;
	padding-top: 30px;
	
	font-size: 32px;
	font-weight: bold;
	vertical-align: top;
	line-height: 1.3;
	
	border-right: 1px solid #ddd;
}

.listBox > .infoBox_widen {
	display: table-cell;
	padding: 0 20px;
	vertical-align: middle;
	border-right: 1px solid #ddd;
	padding-top: 10px;		
    min-width: 800px;
    max-width: 800px;
    overflow:hidden;
}

.infoBox_widen .time {
	position: relative;
	display: inline-block;
	min-width: 282px;
	margin-right: 5px;
	padding-left: 79px;
	font-size: 34px;
	vertical-align: middle;
	
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.infoBox_widen .time .iconNext {
	position: absolute;
	left: 0;
	top: 20px;
	display: inline-block;
	margin-top: -6px;
	margin-right: 20px;
	padding: 9px 8px 9px 4px;
	color: #fff;
	font-size: 17px;
	line-height: 1;
	vertical-align: middle;
	background-color: #a3a3a3;
}

.infoBox_widen .time .iconNext:after {
	content: "";
	position: absolute;
	top: 0;
	right: -34px;
	width: 0;
	height: 0;
	border: 17px solid transparent;
    border-left: 17px solid #a3a3a3;
}

.infoBox_widen .subscriber {
	display: inline-block;
	font-size: 30px;
	vertical-align: middle;
    min-width: 88px;
}

.infoBox_widen .subscriber .icon {
	display: inline-block;
	position: relative;
	margin-top: -6px;
	margin-right: 10px;
	padding: 9px 8px;
	color: #fff;
	font-size: 17px;
	line-height: 1;
	vertical-align: middle;
	background-color: #a3a3a3;
}

.listBox > .titleBox_widen {
    position: relative;
	display: table-cell;
	min-width: 710px;
	max-width: 710px;
	padding: 30px 5px 0px 5px;	
	font-size: 32px;
	font-weight: bold;
	vertical-align: top;
	line-height: 1.3;
	
	border-right: 1px solid #ddd;
}

.roomSliderFrame_widen {
    min-width: 620px;
    max-width: 620px;
    overflow: hidden;
}

.personSliderFrame_widen {
    min-width: 370px;
    max-width: 370px;
    overflow: hidden;
    display: inline-block;
    position: absolute;
}

.titleSliderFrame_widen {
    min-width: 700px;
    max-width: 700px;
    overflow: hidden;
    display: inline-block;
    position: absolute;
}

/* ------------------------------
   名古屋拠点向け集中端末表示画面改修
------------------------------ */
.stateBox_4NGY {
    position: relative;
	left: 0;
    top: 10px;
    display: block;
    margin: 0;
	padding: 8px 0;
	color: #fff;
	font-size: 24px;
	line-height: 24px;
	text-align: center;
	vertical-align: middle;
	
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.nameBox_4NGY {
	display: table-cell;
    min-width: 150px;
    max-width: 150px;
    max-height: 98px;
    padding-left: 10px;
    padding-top: 5px;
    white-space: nowrap;
    overflow: hidden;
	
	font-size: 29px;
	font-weight: bold;
    vertical-align: middle;
	line-height: 1.3;
	
	border-right: 1px solid #ddd;
    flex-wrap: wrap;
    text-overflow: clip;
    box-sizing: border-box;
}

.listBox > .infoBox_4NGY {
	display: table-cell;
	padding: 0 10px;
	vertical-align: middle;
	border-right: 1px solid #ddd;
    min-width: 182px;
    max-width: 182px;
    overflow:hidden;
}

.infoBox_4NGY .time {
	position: relative;
	display: inline-block;
    min-width: 120px;
    max-width: 120px;
    text-align: center;
    line-height: 42px;
    height: 80px;
    white-space: normal;
	font-size: 29px;
	vertical-align: middle;
	
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.infoBox_4NGY2 {
	display: table-cell;
	padding: 0 10px;
	vertical-align: middle;
	border-right: 1px solid #ddd;
    min-width: 182px;
    max-width: 182px;
    overflow:hidden;
}

.infoBox_4NGY2 .time {
	position: relative;
	display: inline-block;
    min-width: 120px;
    max-width: 120px;
    text-align: center;
    line-height: 42px;
    height: 80px;
    white-space: normal;
	font-size: 29px;
	vertical-align: middle;
	
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
    background-color: #a3a3a3;
    margin-right: 0;
    color: white;
}

.timeNext {
	position: absolute;
	display: inline-block;
    min-width: 30px;
    line-height: 42px;
    height: 80px;
    vertical-align: middle;
    border-top: 40px solid transparent;
    border-bottom: 40px solid transparent;
    border-left: 30px solid #a3a3a3;
    margin: 0;
}

.infoBox_4NGY .subscriber {
    height: 100%;
    display: flex;
    flex-wrap: wrap;
	font-size: 30px;
	vertical-align: middle;
    min-width: 88px;
    position: relative;
    text-align: center;
}

.infoBox_4NGY .subscriber .icon {
	display: inline-block;
	position: relative;
    margin-top: 10px;
	padding: 9px 4px;
	color: #fff;
	font-size: 14px;
	line-height: 1;
	vertical-align: middle;
    width: 100%;
    text-align: center;
	background-color: #a3a3a3;
}

.listBox > .titleBox_4NGY {
    position: relative;
	display: table-cell;
    min-width: 521px;
    max-width: 521px;
	padding-left: 10px;
    padding-top: 5px;
	
	font-size: 32px;
	font-weight: bold;
    vertical-align: middle;
	line-height: 1.3;
	
	border-right: 1px solid #ddd;
}

.roomSliderFrame_4NGY {
    width: 100%;
    margin-top: 10px;
    display: block;
    text-overflow: clip;
    text-align: center;
    text-wrap: none;
    overflow: hidden;
}

.personSliderFrame_4NGY {
    min-width: 100%;
    max-width: 100%;
    overflow: hidden;
    display: inline-block;
    position: relative;
    font-size: 25px;
}

.titleSliderFrame_4NGY {
    max-width: 100%;
    max-height: 80px;
    overflow: hidden;
    display: inline-block;
    position: relative;
    overflow-wrap: break-word;
    text-overflow: clip;
}

.roomSliderFrame_4NGY > .roomText {
    display: block;
    min-width: 137px;
    max-width: 137px;
    overflow: hidden;
}

.titleSliderFrame_4NGY > .titleText {
    white-space: normal;
}

