@charset "UTF-8";
/*********************************
 * IMPORT
 *********************************/
abbr, address, article, aside, audio, b, blockquote, body, canvas, caption, cite, code, dd, del, details, dfn, div, dl, dt, em, fieldset,
figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav,
object, ol, p, pre, q, samp, section, small, span, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, ul, var, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: 0 0;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

ul, ol {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: 0 0;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: 700;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

* {
  box-sizing: border-box;
}

/*********************************
 * COLORS
 *********************************/
/*********************************
 * FONT
 *********************************/
/*********************************
 * MIXIN
 *********************************/
/*********************************
 * EXTEND
 *********************************/
fieldset {
  margin: 0.25em 0;
}
fieldset.submit {
  text-align: center;
}

label {
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  margin: 0 0.5em 0 0;
}

input, textarea, select {
  -moz-appearance: none;
  -webkit-appearance: none;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  font-family: Arial, Helvetica, "YuGothic", "游ゴシック", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-size: 1.6rem;
}
input:-moz-placeholder, textarea:-moz-placeholder, select:-moz-placeholder {
  color: #e8e8e8;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder, select::-webkit-input-placeholder {
  color: #e8e8e8;
}

input[type="text"], input[type="password"],
textarea {
  max-width: 100%;
  width: 100%;
  padding: 0.5em;
  border: none;
  background: #f7f7f7;
  border: 1px solid rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.05) inset;
  -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.05) inset;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.05) inset;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  -moz-transition: background 0.2s, border 0.2s;
  -o-transition: background 0.2s, border 0.2s;
  -webkit-transition: background 0.2s, border 0.2s;
  transition: background 0.2s, border 0.2s;
  outline: none;
}
input[type="text"]:focus, input[type="password"]:focus,
textarea:focus {
  background: #fff;
  border: 1px solid #00b4d4;
}
input[type="text"].inline, input[type="password"].inline,
textarea.inline {
  width: auto;
}

textarea {
  min-height: 100px;
}

input[type="radio"] {
  display: none;
}
input[type="radio"] + label {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  padding: 0 0 0 2em;
}
input[type="radio"] + label:before, input[type="radio"] + label:after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  position: absolute;
  top: 50%;
}
input[type="radio"] + label:before {
  width: 1.5em;
  height: 1.5em;
  margin-top: -0.75em;
  background: #f7f7f7;
  border: 1px solid rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.05) inset;
  -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.05) inset;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.05) inset;
  left: 0;
}
input[type="radio"] + label:hover:before {
  background: #fff;
}
input[type="radio"] + label:after {
  width: 0.75em;
  height: 0.75em;
  margin-top: -0.3em;
  left: 0.45em;
  background: #00b4d4;
  -moz-transform: scale(2);
  -ms-transform: scale(2);
  -webkit-transform: scale(2);
  transform: scale(2);
  opacity: 0;
}
input[type="radio"]:checked + label:before {
  background: #fff;
  border: 1px solid #00b4d4;
}
input[type="radio"]:checked + label:after {
  opacity: 1;
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}

input[type="checkbox"] {
  display: none;
}
input[type="checkbox"] + label {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  padding: 0 0 0 2em;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
input[type="checkbox"] + label:before, input[type="checkbox"] + label:after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  position: absolute;
  top: 50%;
}
input[type="checkbox"] + label:before {
  width: 1.5em;
  height: 1.5em;
  margin-top: -0.75em;
  background: #f7f7f7;
  border: 1px solid rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.05) inset;
  -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.05) inset;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.05) inset;
  left: 0;
}
input[type="checkbox"] + label:hover:before {
  background: #fff;
}
input[type="checkbox"] + label:after {
  display: inline-block;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  font-size: 1.6rem;
  color: #00b4d4;
  left: 0.25em;
  margin-top: -0.5em;
  -moz-transform: scale(0.5);
  -ms-transform: scale(0.5);
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  opacity: 0;
}
input[type="checkbox"]:checked + label:before {
  background: #fff;
  border: 1px solid #00b4d4;
}
input[type="checkbox"]:checked + label:after {
  opacity: 1;
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}

select {
  text-indent: .01px;
  /* Firefox */
  text-overflow: "";
  /* Firefox */
  padding: 0.25em 50px 0.25em 0.5em;
  border: 1px solid #e8e8e8;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  background: url(/reserve/common/images/select.svg) no-repeat right 10px center #fff;
}
select:after {
  content: '\e807';
  font-family: 'ic';
  display: block;
}

.file {
  position: relative;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
}
.file:before {
  content: 'ファイルを選択';
  display: inline-block;
  width: 140px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border: 1px solid #e8e8e8;
  background: #f7f7f7;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
}
.file input[type="file"] {
  cursor: pointer;
  background: #0ff;
  position: absolute;
  right: 0;
  top: 0;
  font-size: 100px;
  opacity: 0;
}
.file input[type="text"] {
  padding: 0;
  border: none;
  background: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin: 0 0 0 0.5em;
  color: #e8e8e8;
}

input[type="submit"] {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.075);
  -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset;
  -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  text-decoration: none;
  padding: 0.5em 0.75em;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y3ZjdmNyIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2U4ZThlOCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f7f7f7), color-stop(100%, #e8e8e8));
  background-image: -moz-linear-gradient(top, #f7f7f7, #e8e8e8);
  background-image: -webkit-linear-gradient(top, #f7f7f7, #e8e8e8);
  background-image: linear-gradient(to bottom, #f7f7f7, #e8e8e8);
  color: #555;
  text-shadow: 0 -1px 0 white;
}

/*********************************
 * HELPER
 *********************************/
/* margin:top */
.mt0 {
  margin-top: 0px !important;
}

.mt1 {
  margin-top: 1px !important;
}

.mt2 {
  margin-top: 2px !important;
}

.mt3 {
  margin-top: 3px !important;
}

.mt4 {
  margin-top: 4px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mt6 {
  margin-top: 6px !important;
}

.mt7 {
  margin-top: 7px !important;
}

.mt8 {
  margin-top: 8px !important;
}

.mt9 {
  margin-top: 9px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt55 {
  margin-top: 55px !important;
}

.mt60 {
  margin-top: 60px !important;
}

/* margin:right */
.mr0 {
  margin-right: 0px !important;
}

.mr1 {
  margin-right: 1px !important;
}

.mr2 {
  margin-right: 2px !important;
}

.mr3 {
  margin-right: 3px !important;
}

.mr4 {
  margin-right: 4px !important;
}

.mr5 {
  margin-right: 5px !important;
}

.mr6 {
  margin-right: 6px !important;
}

.mr7 {
  margin-right: 7px !important;
}

.mr8 {
  margin-right: 8px !important;
}

.mr9 {
  margin-right: 9px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.mr35 {
  margin-right: 35px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.mr45 {
  margin-right: 45px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.mr55 {
  margin-right: 55px !important;
}

.mr60 {
  margin-right: 60px !important;
}

/* margin:bottom */
.mb0 {
  margin-bottom: 0px !important;
}

.mb1 {
  margin-bottom: 1px !important;
}

.mb2 {
  margin-bottom: 2px !important;
}

.mb3 {
  margin-bottom: 3px !important;
}

.mb4 {
  margin-bottom: 4px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb6 {
  margin-bottom: 6px !important;
}

.mb7 {
  margin-bottom: 7px !important;
}

.mb8 {
  margin-bottom: 8px !important;
}

.mb9 {
  margin-bottom: 9px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

/* margin:left */
.ml0 {
  margin-left: 0px !important;
}

.ml1 {
  margin-left: 1px !important;
}

.ml2 {
  margin-left: 2px !important;
}

.ml3 {
  margin-left: 3px !important;
}

.ml4 {
  margin-left: 4px !important;
}

.ml5 {
  margin-left: 5px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.ml11 {
  margin-left: 11px !important;
}

.ml12 {
  margin-left: 12px !important;
}

.ml13 {
  margin-left: 13px !important;
}

.ml14 {
  margin-left: 14px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.ml35 {
  margin-left: 35px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.ml45 {
  margin-left: 45px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.ml55 {
  margin-left: 55px !important;
}

.ml60 {
  margin-left: 60px !important;
}

/* padding */
.p0 {
  padding: 0px !important;
}

.p5 {
  padding: 5px !important;
}

.p10 {
  padding: 10px !important;
}

.p15 {
  padding: 15px !important;
}

.p20 {
  padding: 20px !important;
}

.p25 {
  padding: 25px !important;
}

.p30 {
  padding: 30px !important;
}

.p35 {
  padding: 35px !important;
}

.p40 {
  padding: 40px !important;
}

.p45 {
  padding: 45px !important;
}

.p50 {
  padding: 50px !important;
}

/* padding:top */
.pt0 {
  padding-top: 0px !important;
}

.pt1 {
  padding-top: 1px !important;
}

.pt2 {
  padding-top: 2px !important;
}

.pt3 {
  padding-top: 3px !important;
}

.pt4 {
  padding-top: 4px !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pt50 {
  padding-top: 50px !important;
}

/* padding:right */
.pr0 {
  padding-right: 0px !important;
}

.pr5 {
  padding-right: 5px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pr25 {
  padding-right: 25px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.pr35 {
  padding-right: 35px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.pr45 {
  padding-right: 45px !important;
}

.pr50 {
  padding-right: 50px !important;
}

/* padding:bottom */
.pb0 {
  padding-bottom: 0px !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

/* padding:left */
.pl0 {
  padding-left: 0px !important;
}

.pl5 {
  padding-left: 5px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.pl12 {
  padding-left: 12px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.pl25 {
  padding-left: 25px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.pl35 {
  padding-left: 35px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.pl45 {
  padding-left: 45px !important;
}

.pl50 {
  padding-left: 50px !important;
}

/*********************************
 * SETTINGS
 *********************************/
html {
  font-size: 62.5%;
}

html, body {
  width: 100%;
}

body {
  color: #222;
  font-family: Arial, Helvetica, "YuGothic", "游ゴシック", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-size: 1.4rem;
}

a {
  color: #00b4d4;
  text-decoration: none;
}
a:hover {
  color: #00687b;
  text-decoration: none;
}

::-moz-selection {
  background: #46c8af;
  color: #fff;
}

::-webkit-selection {
  background: #46c8af;
  color: #fff;
}

::selection {
  background: #46c8af;
  color: #fff;
}

img::selection {
  background: transparent;
}

img::-moz-selection {
  background: transparent;
}

/*********************************
 * LAYOUT
 *********************************/
#wrapper {
  position: relative;
  width: 100%;
  padding: 5px;
}

#globalNav {
  position: relative;
  *zoom: 1;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  padding: 4px 0;
  background: url(/reserve/common/images/dot.png) #fff;
  background-size: 10px 10px;
}
#globalNav:after {
  content: "";
  display: table;
  clear: both;
}
#globalNav ul {
  display: table;
  width: 100%;
  table-layout: fixed;
}
#globalNav ul li {
  display: table-cell;
  font-weight: bold;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
#globalNav ul li:first-child {
  border-right: 1px solid #e8e8e8;
}
#globalNav ul li a {
  display: block;
  padding: 1.25em 0;
  color: #222;
  -moz-transition: color 0.2s;
  -o-transition: color 0.2s;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
#globalNav ul li a:hover {
  color: #00b4d4;
}
#globalNav ul li a i.fa-caret-up {
  display: none;
}
#globalNav ul li.active i.fa-caret-down {
  display: none;
}
#globalNav ul li.active i.fa-caret-up {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
}
#globalNav ul.sub {
  display: block;
  width: 100%;
  background: url(/reserve/common/images/dot.png) #fff;
  background-size: 10px 10px;
  border-bottom: 1px solid #e8e8e8;
  position: absolute;
  left: 0;
  z-index: 1000;
  display: none;
}
#globalNav ul.sub li {
  display: block;
  border-top: 1px solid #e8e8e8;
}
#globalNav ul.sub li:first-child {
  border-right: none;
}
#globalNav ul.open {
  display: block;
}

#content > h1 {
  font-size: 2.2rem;
  border-left: 5px solid #00b4d4;
  padding: .2em 0 .15em 12px;
  margin: 40px 0;
}

#loading {
  width: 100%;
  height: 100%;
  background: #fff;
  text-align: center;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
  position: fixed;
  left: 0;
  top: 0;
  display: none;
}
#loading i {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -0.5em 0 0 -0.5em;
}

/*********************************
 * GLOBAL ELEMENTS
 *********************************/
.sec {
  margin: 40px 0 0;
}
.sec h1 {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  font-size: 1.6rem;
  color: #00b4d4;
  border: 1px solid #00b4d4;
  padding: .5em 1em;
  margin: 0 0 1em;
}

ul.select {
  border-bottom: 1px solid #e8e8e8;
}
ul.select li {
  position: relative;
}
ul.select li a:not(.more) {
  display: block;
  line-height: 1.285;
  padding: .5em 5em .5em 1em;
  border-top: 1px solid #e8e8e8;
  color: #222;
  -moz-transition: background 0.2s, color 0.2s;
  -o-transition: background 0.2s, color 0.2s;
  -webkit-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
}
ul.select li a:not(.more) i {
  height: 34px;
  line-height: 34px;
  margin: 2px 5px 2px 0;
  color: #e8e8e8;
  -moz-transition: color 0.2s;
  -o-transition: color 0.2s;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
ul.select li a:not(.more):hover {
  background: #f7f7f7;
}
ul.select li a:not(.more):hover i {
  color: #00b4d4;
}
ul.select li a:not(.more) span {
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  width: 34px;
  height: 34px;
  -moz-border-radius: 17px;
  -webkit-border-radius: 17px;
  border-radius: 17px;
  background-position: top center;
  background-size: cover;
  margin: 2px 5px 2px 0;
}
ul.select li.active a:not(.more) {
  color: #00b4d4;
  background: #eefcff;
  font-weight: bold;
}
ul.select li.active a:not(.more) i {
  color: #00b4d4;
}
ul.select li a.more {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.075);
  -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset;
  -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  text-decoration: none;
  padding: 0.5em 0.75em;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y3ZjdmNyIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2U4ZThlOCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f7f7f7), color-stop(100%, #e8e8e8));
  background-image: -moz-linear-gradient(top, #f7f7f7, #e8e8e8);
  background-image: -webkit-linear-gradient(top, #f7f7f7, #e8e8e8);
  background-image: linear-gradient(to bottom, #f7f7f7, #e8e8e8);
  color: #555;
  text-shadow: 0 -1px 0 white;
  position: absolute;
  right: 10px;
  top: 50%;
  margin: -1em 0 0;
}

dl.confirm {
  background: #e8e8e8;
  padding: 10px;
}
dl.confirm dt, dl.confirm dd {
  background: #fff;
  padding: 15px;
}
dl.confirm dt {
  font-weight: bold;
  margin: 1em 0 0;
}
dl.confirm dt:nth-of-type(1) {
  margin-top: 0;
}
dl.confirm dd {
  line-height: 1.571;
  border-top: 2px solid #e8e8e8;
}
dl.confirm dd .bd {
  border-top: 1px dashed #ddd;
  padding-top: 10px;
  margin-top: 10px;
}
dl.confirm dd input {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.075);
  -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset;
  -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  text-decoration: none;
  padding: 0.5em 0.75em;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y3ZjdmNyIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2U4ZThlOCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f7f7f7), color-stop(100%, #e8e8e8));
  background-image: -moz-linear-gradient(top, #f7f7f7, #e8e8e8);
  background-image: -webkit-linear-gradient(top, #f7f7f7, #e8e8e8);
  background-image: linear-gradient(to bottom, #f7f7f7, #e8e8e8);
  color: #555;
  text-shadow: 0 -1px 0 white;
  font-size: 1.2rem;
  display: block;
  text-align: center;
  padding: 2px 5px;
  margin: 5px auto 0 auto;
}
dl.confirm dd figure {
  margin: 10px 0 0;
  text-align: center;
}
dl.confirm dd figure img {
  max-width: 100%;
  height: auto;
}
dl.confirm .str {
  font-weight: bold;
}

.submit {
  margin: 20px 0;
  text-align: center;
}
.submit a, .submit input {
  font-size: 1.6rem;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.075);
  -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset;
  -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  text-decoration: none;
  padding: 0.5em 0.75em;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzk1OTU5NSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzU1NTU1NSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #959595), color-stop(100%, #555555));
  background-image: -moz-linear-gradient(top, #959595, #555555);
  background-image: -webkit-linear-gradient(top, #959595, #555555);
  background-image: linear-gradient(to bottom, #959595, #555555);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
}

#calendar .nav {
  margin: 15px 0;
}
#calendar .nav ul {
  text-align: center;
}
#calendar .nav ul li {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  margin: 0 3px;
}
#calendar .nav ul li a {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.075);
  -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset;
  -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  text-decoration: none;
  padding: 0.5em 0.75em;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzk1OTU5NSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzU1NTU1NSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #959595), color-stop(100%, #555555));
  background-image: -moz-linear-gradient(top, #959595, #555555);
  background-image: -webkit-linear-gradient(top, #959595, #555555);
  background-image: linear-gradient(to bottom, #959595, #555555);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
}
#calendar .nav ul li span {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.075);
  -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset;
  -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  text-decoration: none;
  padding: 0.5em 0.75em;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzk1OTU5NSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzU1NTU1NSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #959595), color-stop(100%, #555555));
  background-image: -moz-linear-gradient(top, #959595, #555555);
  background-image: -webkit-linear-gradient(top, #959595, #555555);
  background-image: linear-gradient(to bottom, #959595, #555555);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
  opacity: .5;
  cursor: default;
}
#calendar table {
  width: 100%;
  table-layout: fixed;
}
#calendar table th, #calendar table td {
  border: 1px solid #e8e8e8;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
}
#calendar table thead th, #calendar table tfoot th {
  background: #f7f7f7;
}
#calendar table th {
  padding: 1.5em 0.25em;
}
#calendar table td {
  background: url(/reserve/common/images/dot.png) #fff;
  background-size: 10px 10px;
}
#calendar table td a {
  display: block;
  padding: 1em 0.25em;
  text-align: center;
  background: #fff;
  color: #555;
  -moz-transition: background 0.2s;
  -o-transition: background 0.2s;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
#calendar table td a:hover {
  background: #eefcff;
}
#calendar table td a p {
  font-size: 1.2rem;
  margin: 1em 0 0;
}
#calendar .caption {
  padding: 10px;
  background: #f7f7f7;
  text-align: center;
  margin: 15px 0;
}

.pagenation {
  text-align: center;
  margin: 20px 0 0;
}
.pagenation ul {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  list-style: none;
  margin: 0;
  *zoom: 1;
}
.pagenation ul:after {
  content: "";
  display: table;
  clear: both;
}
.pagenation ul li {
  float: left;
  margin: 0 3px;
}
.pagenation ul li > a, .pagenation ul li > span {
  display: block;
  width: 2.5em;
  height: 2.5em;
  line-height: 2.5em;
  font-weight: bold;
  color: #7b7b7b;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  background: #e8e8e8;
}
.pagenation ul li > a:hover, .pagenation ul li > span:hover {
  background: #f0f0f0;
}
.pagenation ul li.current span {
  color: #fff;
  background: #00b4d4;
}

.rest {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.075);
  -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset;
  -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  text-decoration: none;
  padding: 0.5em 0.75em;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y3ZjdmNyIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2U4ZThlOCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f7f7f7), color-stop(100%, #e8e8e8));
  background-image: -moz-linear-gradient(top, #f7f7f7, #e8e8e8);
  background-image: -webkit-linear-gradient(top, #f7f7f7, #e8e8e8);
  background-image: linear-gradient(to bottom, #f7f7f7, #e8e8e8);
  color: #555;
  text-shadow: 0 -1px 0 white;
}
.rest i {
  font-size: 1.8rem;
  color: #00b4d4;
}
.rest i.fa-exclamation-triangle {
  color: #f5a623;
}
.rest i.fa-times-circle {
  color: #f96373;
}

.sort {
  padding: 10px;
  background: #e8e8e8;
  text-align: center;
  margin: 15px 0;
}

.msg-confirm {
  margin: 40px 0;
  color: #46c8af;
  background: #e3f7f3;
  font-weight: bold;
  text-align: center;
  padding: 1em;
}

.msg-error {
  margin: 40px 0;
  color: #f96373;
  background: #feedee;
  font-weight: bold;
  text-align: center;
  padding: 1em;
}

.msg-complete {
  margin: 40px 0;
  color: #46c8af;
  background: #e3f7f3;
  font-weight: bold;
  text-align: center;
  padding: 1em;
}

.msg-read {
  margin: 40px 0;
  line-height: 2;
}

.msg-detail {
  line-height: 1.571;
}

.require {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1;
  padding: .25em .5em;
  background: #d0021b;
  color: #fff;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  margin: -0.175em .25em 0;
}

.annotation {
  line-height: 1.571;
  margin: 40px 0;
}
.reserve-detail .annotation {
  margin-right: 10px;
  margin-left: 10px;
}

/*********************************
 * PAGES
 *********************************/
.reserve-top #loading {
  display: block;
}

.reserve-detail #content {
  padding: 0 10px;
}
.reserve-detail #globalNav {
  display: none;
}

/*********************************
 * close
 *********************************/
.close #globalNav {
  display: none;
}
.close #content {
  text-align: center;
}
.close #content h1 {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  font-size: 2rem;
  line-height: 1;
  font-weight: normal;
  background: #f7f7f7;
  color: #555;
  border: 4px solid #eee;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  padding: 1em 3em .75em;
  margin: 60px 0 0;
}
