@charset "UTF-8";

/* staff
---------------------------------------------------------------------------*/
.page-title {
	margin-bottom: 85px;
}

/* .job-list
------------------------------------*/
.job-list {
	margin: 22px auto 0;
	text-align: center;
}

.job-list dl {
	display: inline-block;
	background-color: #FFFFFF;
	border-radius: 100px;
	padding: 18px 20px 18px 21px;
	text-align: center;
}

.job-list dl > div {
	display: inline-block;
	position: relative;
	white-space: nowrap;
	padding: 0 12px;
}

.job-list dl > div:after {
	display: block;
	content: '';
	position: absolute;
	top: 8px;
	right: -10px;
	background-color: #AAAAAA;
	width: 17px;
	height: 1px;
	transform: rotate(-62deg);
}

.job-list dl > div:last-of-type:after {
	display: none;
}

.job-list dt {
	display: inline-block;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.08em;
	font-feature-settings: 'palt' 1;
}

.job-list dt i {
	display: inline-block;
	margin: 0 0 0 4px;
	font-size: 11px;
	transform: translateY(-2px);
	opacity: 0.8;
}

.job-list dd {
	display: inline-block;
	font-size: 13px;
	font-weight: 500;
}

.job-list dd strong {
	padding-right: 2px;
	color: #F39800;
	font-family: var(--font-gothic-jp);
	font-size: 17px;
	font-weight: 500;
	transform: translateY(1px);
}

/* .staff-list 
------------------------------------*/
.staff-list-wrap {
	width: 1000px;
	margin: 0 auto;
}

.staff-list-wrap > h2 {
	margin-bottom: 50px;
	color: #F39800;
}

.staff-list-wrap > h2 em {
	padding-right: 12px;
	font-family: 'Futura PT', 'Gill Sans', 'Gill Sans MT', 'Lato', 'Lucida Grande', 'Hiragino Sans', "ヒラギノ角ゴ ProN W6", "HiraKakuProN-W3", 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W6', 'ＭＳ Ｐゴシック', Osaka, sans-serif;
	font-size: 37px;
	letter-spacing: 0.02em;
}

.staff-list-wrap > h2 strong {
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.1em;
}

.staff-list {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 60px 65px;
	width: 1000px;
	margin: 0 auto 140px;
}

.staff-list li {
	position: relative;
	width: 290px;
}

.staff-list li.active {
	cursor: pointer;
	transition: .15s ease-out;
}

.staff-list li.active:hover {
	opacity: 0.75;
}

.staff-list li .plus {
	display: none;
	position: absolute;
	top: -17px;
	right: -17px;
	z-index: 2;
	transition: .45s var(--easeOutQuint);
}

.staff-list li.active .plus {
	display: block;
}

.staff-list li:hover .plus {
	transform: rotate(270deg);
}

.staff-list li figure {
	display: block;
	margin-bottom: 18px;
	opacity: 1 !important;
}

.staff-list li figure img {
	width: 100%;
	height: auto;
}

.staff-list li h3 {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	line-height: 1.6;
}

.staff-list li h3 strong {
	padding-right: 20px;
	color: #F39800;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 0.14em;
}

.staff-list li h3 em {
	color: #929292;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	transform: translateY(-3px);
}

.staff-list li .label {
	margin: 4px 0 0 1px;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.1em;
}


/* .staff-modal
---------------------------------------------------------------------------*/
.staff-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10100;
	font-family: var(--font-gothic-jp);
	font-feature-settings: 'palt' 1;
}

.staff-modal-close {
	position: absolute;
	top: 40px;
	right: 40px;
	z-index: 10;
	cursor: pointer;
	opacity: 0;
}

.staff-modal-close img {
	display: block;
	transition: .15s ease-out;
}

.staff-modal-close:hover img {
	opacity: 0.7;
}

.staff-modal-inner {
	position: relative !important;
	width: 1020px;
	height: 100vh;
	margin: 0 auto;
}

.staff-modal-inner .slick-list,
.staff-modal-inner .slick-track {
	width: 100% !important;
	height: 100% !important;
}

.staff-modal-inner .slick-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	-webkit-appearance: none;
	background: none;
	border: none;
	width: 70px;
	height: 70px;
	text-indent: -9999px;
	cursor: pointer;
	z-index: 10;
}

.staff-modal-inner .slick-arrow:before,
.staff-modal-inner .slick-arrow:after {
	display: block;
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%) !important;
	background: url(../img/share/btn-modal-arrow.svg) no-repeat;
	width: 60px;
	height: 60px;
	transition: .15s ease-out;
	z-index: 1;
}

.staff-modal-inner .slick-arrow:after {
	background-image: url(../img/share/btn-modal-arrow-on.svg);
	z-index: 2;
	opacity: 0;
}

.staff-modal-inner .slick-arrow:hover:after {
	opacity: 1;
}

.staff-modal-inner .slick-prev {
	left: -75px;
	transform: translateY(-50%) scaleX(-1);
}

.staff-modal-inner .slick-next {
	right: -75px;
}

.staff-modal .nav-thum {
	position: absolute;
	top: calc(50% + 50px);
	background-color: #FFFFFF;
	border-radius: 6px;
	box-shadow: 4px 4px 10px #E4CC6C;
	width: 160px;
	height: 160px;
	opacity: 0;
}

.staff-modal .nav-thum figure {
	position: absolute;
	top: 8px;
	left: 8px;
	width: 144px;
	height: 144px;
	opacity: 0;
}

.staff-modal .nav-thum img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.staff-modal .nav-thum.prev {
	left: calc(50% - 695px);
	transform-origin: right top;
}

.staff-modal .nav-thum.next {
	right: calc(50% - 695px);
	transform-origin: left top;
}

.staff-modal article {
	position: absolute !important;
	top: 50% !important;
	left: 50% !important;
	transform: translate(-50%,-50%) !important;
	box-sizing: border-box;
	overflow: hidden;
	background-color: #FFFFFF;
	border-radius: 36px;
	width: 980px !important;
	height: auto;
	margin: 0;
	padding: 55px 25px 48px 55px;
	opacity: 0;
	z-index: 998 !important;
}

.staff-modal article.slick-active {
	z-index: 990 !important;
}

.staff-modal article.slick-current {
	z-index: 1000 !important;
}

.staff-modal article:nth-of-type(1) {
	position: relative !important;
}

.staff-modal article .inner {
	display: flex;
	justify-content: space-between;
	max-height: 640px;
}

@media (max-height: 800px) {
	.staff-modal article .inner {
		max-height: calc(100vh - 80px);
	}
}

.staff-modal article .img {
	width: 270px;
	min-width: 270px;
	margin-right: 55px;
}

.staff-modal article .img figure {
	align-self: flex-start;
	margin-bottom: 28px;
}

.staff-modal article .img figure img {
	width: 100%;
	height: auto;
}

.staff-modal article .img h3 {
	line-height: 1.6;
}

.staff-modal article .img h3 strong {
	display: inline-block;
	margin-right: 5px;
	margin-left: -1px;
	color: #F49800;
	font-size: 21px;
	font-weight: 600;
	letter-spacing: 0.12em;
}

.staff-modal article .img h3 em {
	display: inline-block;
	color: #9D9D9D;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
}

.staff-modal article .img h4 {
	margin-top: 8px;
	font-size: 13px;
}

.staff-modal article .img .list {
	position: relative;
	margin-top: 26px;
	padding-top: 13px;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.08em;
}

.staff-modal article .img .list:before {
	display: block;
	content: '';
	position: absolute;
	top: 0;
	left: 1px;
	background-color: #CCCCCC;
	width: 21px;
	height: 1px;
}

.staff-modal article .txt {
	overflow-y: scroll;
	width: 100%;
	min-height: 450px;
	max-height: calc(100vh - 80px - 103px);
	padding-right: 30px;
}

.staff-modal article .txt::-webkit-scrollbar { width: 2px; }
.staff-modal article .txt::-webkit-scrollbar-track { border-radius: 2px; background: #FFFFFF; }
.staff-modal article .txt::-webkit-scrollbar-thumb { border-radius: 2px; background: #F49800; }

.staff-modal article .txt > h4 {
	margin-bottom: 20px;
	color: #F49800;
	font-family: 'Futura PT', 'Gill Sans', 'Gill Sans MT', 'Lato', 'Lucida Grande', 'Hiragino Sans', "ヒラギノ角ゴ ProN W6", "HiraKakuProN-W3", 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W6', 'ＭＳ Ｐゴシック', Osaka, sans-serif;
	font-size: 25px;
	letter-spacing: 0.03em;
}

.staff-modal article .txt > p {
	margin-bottom: 12px;
	font-size: 14px;
	line-height: 1.95;
	letter-spacing: 0.08em;
	text-align: justify;
}

.staff-modal article .txt .dl {
	margin-top: 40px;
}

.staff-modal article .txt dl {
	display: flex;
}

.staff-modal article .txt dl:not(:last-of-type) {
	margin-bottom: 8px;
}

.staff-modal article .txt dt {
	position: relative;
	width: 130px;
	min-width: 130px;
	color: #F49800;
	font-size: 14px;
	line-height: 1.5;
	letter-spacing: 0.1em;
}

.staff-modal article .txt dt:after {
	display: block;
	content: '';
	position: absolute;
	top: 9px;
	left: 1px;
	background-color: #CCCCCC;
	width: calc(100% - 14px);
	height: 1px;
}

.staff-modal article .txt dt span {
	display: inline-block;
	position: relative;
	background-color: #FFFFFF;
	padding-right: 10px;
	z-index: 1;
}

.staff-modal article .txt dd p {
	margin-bottom: 9px;
	font-size: 13px;
	line-height: 1.75;
	letter-spacing: 0.08em;
}

.staff-modal article .txt dd p:last-of-type {
	margin-bottom: 0;
}


/* .calendar
---------------------------------------------------------------------------*/
#calendar {
  margin-top: 150px;
  clear: both;
}

.fc-view-container {
	margin-bottom:80px;
}

.fc {
	direction: ltr;
	text-align: left;
}

body .fc {
	font-size:1em;
}

/* Colors
--------------------------------------------------------------------------------------------------*/
.fc-unthemed th,.fc-unthemed td,.fc-unthemed hr,.fc-unthemed thead,.fc-unthemed tbody,.fc-unthemed .fc-row {
	border-color:#ddd;
}

.fc-unthemed .fc-popover {
	background-color:#fff;
}

.fc-unthemed hr,.fc-unthemed .fc-popover .fc-header {
	background:#eee;
}

.fc-unthemed .fc-today {
	background:#fcf8e3;
	color:#F39800;
}

/* Icons (inline elements with styled text that mock arrow icons)
--------------------------------------------------------------------------------------------------*/
.fc-icon {
	display:inline-block;
	font-family:'Gill Sans','Gill Sans MT','Lato','Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3','ＭＳ Ｐゴシック',Osaka,sans-serif;
}

.fc-icon-left-single-arrow:after {
	content:"\02039";
}

.fc-icon-right-single-arrow:after {
	content:"\0203A";
}

/* Buttons (styled <button> tags, normalized to work cross-browser)
--------------------------------------------------------------------------------------------------*/
.fc button {
	margin:0;
	font-size:1.15em;
	color:#F39800;
	white-space:nowrap;
	cursor:pointer;
}

.fc button::-moz-focus-inner {
	margin:0;
	padding:0;
}

.fc-state-default {
	border:1px solid;
}

.fc-state-default.fc-corner-left {
	border-top-left-radius:4px;
	border-bottom-left-radius:4px;
}

.fc-state-default.fc-corner-right {
	border-top-right-radius:4px;
	border-bottom-right-radius:4px;
}

.fc button .fc-icon {
	position:relative;
	top:.05em;
	margin:0 .1em;
}

.fc-state-default {
	background-color:#f5f5f5;
	background-image:-moz-linear-gradient(top,#fff,#e6e6e6);
	background-image:-webkit-gradient(linear,0 0,0 100%,from(#fff),to(#e6e6e6));
	background-image:-webkit-linear-gradient(top,#fff,#e6e6e6);
	background-image:-o-linear-gradient(top,#fff,#e6e6e6);
	background-image:linear-gradient(to bottom,#fff,#e6e6e6);
	background-repeat:repeat-x;
	border-color:#e6e6e6 #e6e6e6 #bfbfbf;
	border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
	color:#333;
	text-shadow:0 1px 1px rgba(255,255,255,0.75);
	box-shadow:inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);
}

.fc-state-down,.fc-state-active,.fc-state-disabled {
	color:#333;
	background-color:#e6e6e6;
}

.fc-state-down,.fc-state-active {
	background-color:#ccc;
	background-image:none;
	box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05);
}

.fc-state-disabled {
	cursor:default;
	background-image:none;
	opacity:.65;
	filter:alpha(opacity=65);
	box-shadow:none;
}


/* Buttons Groups
--------------------------------------------------------------------------------------------------*/
.fc-button-group {
	display:inline-block;
}

.fc-today-button,.fc-state-default,.fc .fc-button-group > * {
	float:left;
	font-weight:700;
	margin:0 0 0 -1px;
	background:none;
	text-shadow:none;
	box-shadow:none;
	font-family:'Gill Sans','Gill Sans MT','Lato','Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3','ＭＳ Ｐゴシック',Osaka,sans-serif;
	font-size:16px;
	letter-spacing:1px;
	margin-left:10px;
	color:#F39800;
	text-decoration:underline;
	border-radius:4px;
	padding:10px 14px;
	background:#fff;
	border:1px solid #F39800;
}

.fc-today-button {
	font-size:12px;
}


/* Popover
--------------------------------------------------------------------------------------------------*/
.fc-unthemed .fc-popover {
	border-width:1px;
	border-style:solid;
}

.fc-unthemed .fc-popover .fc-header .fc-close {
	font-size:25px;
	margin-top:4px;
}

.fc-popover > .ui-widget-header + .ui-widget-content {
	border-top:0;
}


/* Misc Reusable Components
--------------------------------------------------------------------------------------------------*/
.fc hr {
	height:0;
	margin:0;
	padding:0 0 2px;
	border-style:solid;
	border-width:1px 0;
}

.fc-clear {
	clear:both;
}

.fc-bg,.fc-bgevent-skeleton,.fc-highlight-skeleton,.fc-helper-skeleton {
	position:absolute;
	top:0;
	left:0;
	right:0;
}

.fc-bg table {
	height:100%;
}


/* Tables
--------------------------------------------------------------------------------------------------*/
.fc table {
	width:100%;
	table-layout:fixed;
	border-collapse:collapse;
	border-spacing:0;
	font-size:1em;
}

.fc th {
	text-align:center;
}

.fc th,.fc td {
	border:1px solid #dedede;
	padding:0;
	vertical-align:top;
}

.fc td.fc-today {
	border-style:double;
}

.fc-widget-header {
	border:none!important;
	color:#f39800;
	font-style:italic;
	padding:20px 0;
	font-size:18px;
	letter-spacing:1px;
	font-family:'Gill Sans','Gill Sans MT','Lato','Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3','ＭＳ Ｐゴシック',Osaka,sans-serif;
}

.fc-widget-header th,.fc-widget-header td,/* .fc-unthemed th,.fc-unthemed td,.fc-unthemed hr,*/.fc-unthemed thead,.fc-unthemed tbody,.fc-unthemed .fc-row,.fc-unthemed .fc-popover,.fc-widget-header thead {
	border:none!important;
	background:none!important;
	border-color:none;
}


/* Fake Table Rows
--------------------------------------------------------------------------------------------------*/
.fc .fc-row {
	border-style:solid;
	border-width:0;
}

.fc-row table {
	border-left:0 hidden transparent;
	border-right:0 hidden transparent;
	border-bottom:0 hidden transparent;
}

.fc-row:first-child table {
	border-top:0 hidden transparent;
}


/* Day Row (used within the header and the DayGrid)
--------------------------------------------------------------------------------------------------*/
.fc-row {
	position:relative;
}

.fc-row .fc-bg {
	z-index:1;
}

.fc-row .fc-content-skeleton {
	position:relative;
	z-index:4;
	padding-bottom:2px;
}

.fc-row .fc-content-skeleton td,.fc-row .fc-helper-skeleton td {
	background:none;
	border-color:transparent;
	border-bottom:0;
}

.fc-row .fc-content-skeleton tbody td,/* cells with events inside (so NOT the day number cell) */
.fc-row .fc-helper-skeleton tbody td {
	border-top:0;
}


/* Scrolling Container
--------------------------------------------------------------------------------------------------*/
/* Global Event Styles
--------------------------------------------------------------------------------------------------*/
.fc-event {
	position:relative;
	display:block;
	font-size:.85em;
	line-height:1.3;
	border-radius:3px;
	border:1px solid #3a87ad;
	background-color:#3a87ad;
	font-weight:400;
}

.fc-event,.fc-event:hover,.ui-widget .fc-event {
	color:#fff;
	text-decoration:none;
}

.fc-event[href],.fc-event.fc-draggable {
	cursor:pointer;
}

.fc-not-allowed,/* causes a warning cursor. applied on body */
.fc-not-allowed .fc-event {
	cursor:not-allowed;
}

/* DayGrid events
----------------------------------------------------------------------------------------------------*/
.fc-day-grid-event {
	margin:1px 2px 0;
	padding:0 1px;
}

.fc-ltr .fc-day-grid-event.fc-not-start,.fc-rtl .fc-day-grid-event.fc-not-end {
	margin-left:0;
	border-left-width:0;
	padding-left:1px;
	border-top-left-radius:0;
	border-bottom-left-radius:0;
}

.fc-ltr .fc-day-grid-event.fc-not-end,.fc-rtl .fc-day-grid-event.fc-not-start {
	margin-right:0;
	border-right-width:0;
	padding-right:1px;
	border-top-right-radius:0;
	border-bottom-right-radius:0;
}

.fc-day-grid-event > .fc-content {
	white-space:nowrap;
	overflow:hidden;
}

.fc-day-grid-event .fc-resizer {
	position:absolute;
	top:0;
	bottom:0;
	width:7px;
}

.fc-ltr .fc-day-grid-event .fc-resizer {
	right:-3px;
	cursor:e-resize;
}

.fc-rtl .fc-day-grid-event .fc-resizer {
	left:-3px;
	cursor:w-resize;
}


/* Event Limiting
--------------------------------------------------------------------------------------------------*/
a.fc-more {
	margin:1px 3px;
	font-size:.85em;
	cursor:pointer;
	text-decoration:none;
}

a.fc-more:hover {
	text-decoration:underline;
}

.fc-limited {
	display:none;
}

.fc-day-grid .fc-row {
	z-index:1;
}

.fc-more-popover {
	z-index:2;
	width:220px;
}

.fc-more-popover .fc-event-container {
	padding:10px;
}


/* Toolbar
--------------------------------------------------------------------------------------------------*/
.fc-toolbar {
	text-align:center;
	margin-bottom:30px;
	font-family:'Gill Sans','Gill Sans MT','Lato','Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3','ＭＳ Ｐゴシック',Osaka,sans-serif;
	position:relative;
}

.fc-toolbar .fc-left {
	float:left;
	font-size:18px;
	color:#F39800;
	letter-spacing:1px;
	padding-top:5px;
}

.fc-toolbar .fc-left h2:after{
  content: 'の獣医師出勤カレンダー';
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 1px;
  padding-left: 10px;
}

.fc-toolbar .fc-right {
	float:right;
}

.fc-toolbar .fc-center {
	position:absolute;
	right:0;
	display:inline-block;
}

.fc .fc-toolbar > * > * {
	float:left;
	margin-left:.75em;
}

.fc .fc-toolbar > * > :first-child {
	margin-left:0;
}

.fc-toolbar h2 {
	margin:0;
}

.fc-toolbar button { position:relative; }
.fc-toolbar .fc-state-hover,.fc-toolbar .ui-state-hover { z-index:2; }
.fc-toolbar .fc-state-down { z-index:3; }
.fc-toolbar .fc-state-active,.fc-toolbar .ui-state-active { z-index:4; }
.fc-toolbar button:focus { z-index:5; }


/* View Structure
--------------------------------------------------------------------------------------------------*/
.fc-view-container *,.fc-view-container :before,.fc-view-container :after {
	box-sizing:content-box;
}	

.fc-view > table thead tr > .fc-widget-header {
	border:none!important;
}


/* BasicView
--------------------------------------------------------------------------------------------------*/
.fc-basicWeek-view .fc-content-skeleton,.fc-basicDay-view .fc-content-skeleton {
	padding-top:1px;
	padding-bottom:1em;
}

.fc-basic-view tbody .fc-row {
	min-height:4em;
}

.fc-row.fc-rigid {
	overflow:hidden;
}

.fc-row.fc-rigid .fc-content-skeleton {
	position:absolute;
	top:0;
	left:0;
	right:0;
}

.fc-basic-view .fc-week-number,.fc-basic-view .fc-day-number {
	padding:0 2px;
}

.fc-basic-view td.fc-week-number span,.fc-basic-view td.fc-day-number {
	padding-top:2px;
	padding-bottom:2px;
}

.fc-basic-view .fc-week-number {
	text-align:center;
}

.fc-basic-view .fc-week-number span {
	display:inline-block;
	min-width:1.25em;
}

.fc-ltr .fc-basic-view .fc-day-number {
	text-align:right;
	padding-bottom:5px;
}

.fc-rtl .fc-basic-view .fc-day-number {
	text-align:left;
}

.fc-day-number.fc-other-month {
	opacity:.3;
}


/* AgendaView all-day area
--------------------------------------------------------------------------------------------------*/
.fc-agenda-view .fc-day-grid {
	position:relative;
	z-index:2;
}

.fc-agenda-view .fc-day-grid td,.fc-agenda-view .fc-day-grid th,.fc-agenda-view .fc-row {
	border:none;
	background:none;
}

.fc-agenda-view .fc-day-grid .fc-row {
	min-height:3em;
}

.fc-agenda-view .fc-day-grid .fc-row .fc-content-skeleton {
	padding-top:1px;
	padding-bottom:1em;
}


/* TimeGrid axis running down the side (for both the all-day area and the slot area)
--------------------------------------------------------------------------------------------------*/
.fc .fc-axis {
	vertical-align:middle;
	padding:0 4px;
	white-space:nowrap;
}

.fc-ltr .fc-axis {
	text-align:right;
}

.fc-rtl .fc-axis {
	text-align:left;
}

.ui-widget td.fc-axis {
	font-weight:400;

}


/* TimeGrid Structure
--------------------------------------------------------------------------------------------------*/
.fc-time-grid > .fc-bg {
	z-index:1;
}

.fc-time-grid .fc-slats,.fc-time-grid > hr {
	position:relative;
	z-index:2;
}

.fc-time-grid .fc-bgevent-skeleton,.fc-time-grid .fc-content-skeleton {
	position:absolute;
	top:0;
	left:0;
	right:0;
}

.fc-time-grid .fc-highlight-skeleton { z-index:4; }
.fc-time-grid .fc-content-skeleton { z-index:5; }
.fc-time-grid .fc-helper-skeleton { z-index:6; }


/* TimeGrid Slats (lines that run horizontally)
--------------------------------------------------------------------------------------------------*/
.fc-slats td {
	height:1.5em;
	border-bottom:0;
}

.fc-slats tr th,.fc-slats tr td {
	padding:2px 0;
}

.fc-slats tr:nth-child(2n) td {
	border:1px dotted #dedede;
}

.fc-slats .fc-minor td div {
	border-top-style:dotted!important;
	border:none;
}

.fc-slats .ui-widget-content {
	background:none;
}


/* TimeGrid Highlighting Slots
--------------------------------------------------------------------------------------------------*/
.fc-time-grid .fc-highlight-container {
	position:relative;
}

.fc-time-grid .fc-highlight {
	position:absolute;
	left:0;
	right:0;
}


/* TimeGrid Event Containment
--------------------------------------------------------------------------------------------------*/
.fc-time-grid .fc-event-container,/* a div within a cell within the fc-content-skeleton */
.fc-time-grid .fc-bgevent-container {
	position:relative;
}

.fc-ltr .fc-time-grid .fc-event-container {
	margin:0 2.5% 0 2px;
}

.fc-rtl .fc-time-grid .fc-event-container {
	margin:0 2px 0 2.5%;
}

.fc-time-grid .fc-event,.fc-time-grid .fc-bgevent {
	position:absolute;
	z-index:1;
}

.fc-time-grid .fc-bgevent {
	left:0;
	right:0;
}


/* TimeGrid Event Styling
----------------------------------------------------------------------------------------------------*/
.fc-time-grid-event.fc-short .fc-time span {
	display:none;
}

.fc-time-grid-event.fc-short .fc-time:before {
	content:attr(data-start);
}

.fc-time-grid-event.fc-short .fc-time:after {
	content:"\000A0-\000A0";
}

.fc-time-grid-event.fc-short .fc-title {
	font-size:.85em;
	padding:0;
}

.fc-time-grid-event .fc-resizer {
	position:absolute;
	z-index:3;
	left:0;
	right:0;
	bottom:0;
	height:8px;
	overflow:hidden;
	line-height:8px;
	font-size:11px;
	font-family:monospace;
	text-align:center;
	cursor:s-resize;
}

.fc-time-grid-event .fc-resizer:after {
	content:"=";
}

.fc-today {
	background:#ff0;
}

.fc-cell-overlay {
	background:#bce8f1;
	opacity:.3;
}

.fc-widget-content {
	background:rgba(255,255,255,1.0);
}