@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: setting.scss
----------------------------------------*/
/* レイアウト
----------------------------------------------*/
#wrapper {
	min-height: 626px;
}


/* #main
-------------------------------------*/
#main {
	position: relative;
	height: 100%;
	/*padding: 75px 25px 20px;*/
	padding: 60px 20px 16px;
}
#main h1 {
	position: absolute;
	top: 8px;
	/*font-size: 30px;*/
	font-size: 24px;
}
/* .settingBox #inputBox01 #inputBox02
-------------------------------------*/
.settingBox {
	position: relative;
	width: 100%;
	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);
}
#settingBox01 {
	height: 67%;
	
	margin-bottom: 14px;
	/*padding: 28px 28px;*/
}
#settingBox02 {
	height: 30%;
}
.settingBox p {
	margin-bottom: 10px;
	font-size: 21px; 
}


/* .inputBox */
.inputBoxWrapper {
	margin-bottom: 10px;
} 
.inputBoxWrapper:last-child {
	margin-bottom: 0;
}

.inputBox {
	display: table;
	width: 100%;
	margin: 0 auto 5px;
	
	
	/*font-size: 30px;*/
	font-size: 24px;
}
.inputBox:last-child {
	margin-bottom: 0;
}
.inputBox > div {
	display: table-cell;
}
.inputBox .inputBoxLabel {
	width: 20%;
	text-align: right;
}

.inputBox .inputBoxForm {
	padding-left: 20px;
}
.inputBox .form-control {
	display: block;
	width: 100%;
	height: 36px;
	padding: 8px 0 7px;
	
	color: inherit;
	/*font-size: 30px;*/
	font-size: 24px;
	line-height: 20px;
	
	background-color: transparent;
	background-image: none;
	border: 0;
	border-bottom: 1px solid rgba(0,0,0,.12);
	border-radius: 0;
	box-shadow: none;
}
.inputBox select.form-control {
	height: 36px;
	
	padding-top: 0;
	
	font-size: 22px;
	line-height: 24px;

	background: url(../images/icon_select.png) no-repeat;
	background-position: 100% 11px;
	background-size: 12px 12px;
	padding-right: 20px;
	
    -webkit-appearance: none;
	-moz-appearance: none;
}
.inputBox select.form-control option {
	box-sizing: border-box;
}
.inputBox .form-control:focus {
	padding-bottom: 6px;
	border-bottom: 2px solid #f7ea78;
}


/* .btnArea */
.btnArea {
	position: absolute;
	/*bottom: 28px;*/
	bottom: 16px;
	left: 0;
	width: 100%;
	
	text-align: center;
}
.btnArea .btn {
	display: inline-block;
	width: 36%;
	padding: 8px 0;
	
	/*font-size: 26px;*/
	font-size: 26px;
}
.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;
}
/*会議室一覧を取得する*/
.btnArea .btn.get {
	background-color: #B3E5FC;
	
}
/*端末を会議室に設定する*/
.btnArea .btn.setting {
	margin-right: 3%;
	background-color: #B3E5FC;
	
}
/*キャンセルする*/
.btnArea .btn.cancel {
	margin-left: 3%;
	background-color: #FFECB3;
}
