@charset "UTF-8";

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, input {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: baseline;
    background: transparent;
    font-size: 100%;
}

a {
    color: inherit;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

button {
    cursor: pointer;
}


*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* MIXIN's */
.flex, .flex--center, .header__inner, .table__row, .footer__inner {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

html {
    font-size: 10px;
}

body {
    color: #333333;
    font-family: 'Roboto', Helvetica, sans-serif;
    background-color: #FFFFFF;
    -webkit-overflow-scrolling: touch;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body a:hover {
    text-decoration: none;
}

.content {
	width: 100%;
	line-height: 1.3rem;
	font-weight: 400;
}

.inner, .header__inner, .main__inner, .footer__inner {
    width: 100%;
    position: relative;
    margin: 0 auto;
}

.header__inner, .main__inner {
    padding: 8px 16px;
}

.header__logo {
    width: 30px;
	flex: 1 0 30px;
	margin-right: 16px;
    height: 42px;
    background-image: url(img/logo_m.svg);
    background-size: 100%;
    background-repeat: no-repeat;
}

.header__title {
    align-self: center;
    text-align: left;
    width: 100%;
    font-size: 16px;
	line-height: 18px;
    font-weight: bold;
}

.header__date {
    align-self: center;
    text-align: right;
    font-size: 14px;
}

.select {
	display: block;
	font-size: 12px;
	line-height: 1.3;
	padding: 8px 16px 7px 16px;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	margin: 0;
	border: 1px solid #DDDDDD;
	border-radius: 4px;
	 -moz-appearance: none;
	 -webkit-appearance: none;
	appearance: none;
	background-color: #fff;
	background-image: url(img/select.svg);
	background-repeat: no-repeat, repeat;
	background-position: right center;
	background-size: 24px;
}

.table {
    width: 100%;
	padding-top: 24px;
}

.table__time {
    position: absolute;
    width: 32px;
    top: -24px;
    z-index: 20;
    color: #017CC2;
    font-size: 10px;
    border-radius: 8px 0 0 8px;
    line-height: 16px;
	text-align: center;

}

.table__time::after {
    content: '';
    border-left: 1px dashed #017CC2;
    position: absolute;
    height: 100vh;
    right: 0;
	top: 4px;
}

.table__header {
	position: sticky;
	top: 0px;
	background-color: #F7F7F7;
}

.table__header>.table__col {
    text-align: center;
    align-self: center;
	font-size: 12px;
	font-weight: 600;
}

.table__content {
	display: none;
}

.table__row {
    width: 100%;
    min-height: 24px;
}

.table__row.table__row--title {
	line-height: 24px;
	padding-left: 8px
}

.table__row--sep {
    min-height: 30px;
}

.table__col {
    position: relative;
	flex: auto;
	box-shadow: 1px 0px 0px rgba(0, 0, 0, 0.1);
}

.table__col--title {
    min-width: 216px;
    max-width: 216px;
    border-left: none;
    align-self: center;
    padding-left: 8px;
	vertical-align: middle;
}

.table__col--center {
    text-align: center;
    width: 100%;
    background-color: #EAEAEA;
    color: #808080;
    align-self: center;
    line-height: 30px;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 4px;
	flex: 0 0 100%;
}

.table__event {
    content: attr(event);
    font-weight: bold;
    position: absolute;
    background-color: #C9DAF8;
    text-align: center;
    bottom: 0;
    top: 0;
    text-decoration: none;
    font-style: normal;
    z-index: -1;
    vertical-align: middle;
    display: table;
    min-height: 24px;
	overflow: hidden;
	display: block;
}

.table__event .table__col--tooltip {
    color: #333333;
}

.table__event--special {
    background-color: #FFE599;
}

.table__event--30m {
    margin-left: 25px;
}
