/*! sanitize.css | CC0 Public Domain | github.com/jonathantneal/sanitize.css */
pre,textarea{overflow:auto}
[hidden],audio:not([controls]),template{display:none}
details,main,summary{display:block}
input[type=number]{width:auto}
input[type=search]{-webkit-appearance:textfield}
input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}
progress{display:inline-block}
small{font-size:75%}
textarea{resize:vertical}
[unselectable]{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}
*,::after,::before{box-sizing:inherit;border-style:solid;border-width:0}
*{font-size:inherit;line-height:inherit;margin:0;padding:0}
::after,::before{text-decoration:inherit;vertical-align:inherit}
:root{-ms-overflow-style:-ms-autohiding-scrollbar;overflow-y:scroll;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;text-size-adjust:100%;box-sizing:border-box;cursor:default;font:16px/1.5 sans-serif;text-rendering:optimizeLegibility}
a{text-decoration:none}
audio,canvas,iframe,img,svg,video{vertical-align:middle}
button,input,select,textarea{background-color:transparent;color:inherit;font-family:inherit;font-style:inherit;font-weight:inherit;min-height:1.5em}
code,kbd,pre,samp{font-family:monospace,monospace}
nav ol,nav ul{list-style:none}
select{-moz-appearance:none;-webkit-appearance:none}
select::-ms-expand{display:none}
select::-ms-value{color:currentColor}
table{border-collapse:collapse;border-spacing:0}
::-moz-selection{background-color:#B3D4FC;text-shadow:none}
::selection{background-color:#B3D4FC;text-shadow:none}
@media screen{[hidden~=screen]{display:inherit}
[hidden~=screen]:not(:active):not(:focus):not(:target){clip:rect(0 0 0 0)!important;position:absolute!important}
}
/*
 *      oldIE
 */
article, section, nav, aside, header, footer {
    display: block;
}
/*
 *      init
 */
* {
    /* 要素をタップしたときの枠 */
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    /* iOSでリンクを長押ししたときのポップアップメニュー */
    -webkit-touch-callout: none;
}
button:active, button:focus {
    outline: 0;
}
a {
    color: #ff1493;
}
a:hover {
    text-decoration: underline;
}
a img,
a i.fa {
    opacity: 1;
    -webkit-transition: opacity .3s;
            transition: opacity .3s; /* IE10+ */
}
a:hover img,
a:hover i.fa {
    opacity: .7;
}
img {
    max-width: 100%;
    height: auto;
}
iframe {
    max-width: 100%;
}
#map img, #gmap img, #gMap img, .gmap img, .gMap img, .googlemaps img {
    max-width: none;
}
hr {
    border: 0;
    height: 1px;
    background: #666;
    background-image: -webkit-linear-gradient(left, #ccc, #666, #ccc);
    background-image: linear-gradient(to right, #ccc, #666, #ccc);
}
.fa-phone,
.fa-phone-square {
    color: #002665;
}
.fa-envelope,
.fa-envelope-o {
    color: #c89932;
}
.fa-facebook,
.fa-facebook-official {
    color: #305097;
}
.fa-google-plus,
.fa-google-plus-square {
    color: #db4a39;
}
.fa-twitter,
.fa-twitter-square {
    color: #00aced;
}
.fa-instagram {
    color: #3f729b;
}
.fa-pinterest,
.fa-pinterest-square {
    color: #cc2127;
}
.fa-tumblr,
.fa-tumblr-square {
    color: #34526f;
}
/*
 *      utils
 */
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}
.text-center {
    text-align: center;
}
.pull-left {
    float: left !important;
}
.pull-right {
    float: right !important;
}
img.pull-left {
    margin-right: 1em;
}
img.pull-right {
    margin-left: 1em;
}
.clearfix:before,
.clearfix:after {
    display: table;
    content: " ";
}
.clearfix:after {
    clear: both;
}
/*
 *
 *      grid
 *
 */
.container {
    margin: 0 auto;
    padding: 0 .5rem;
    max-width: 1024px;
}
.container:before,
.container:after {
    display: table;
    content: " ";
}
.container:after {
    clear: both;
}
.wrapper {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
}
.col-1p4,
.col-3p4,
.col-1p3,
.col-2p3,
.col-1p2 {
    width: 100%;
    margin: .5rem 0;
    padding: 0 .5rem;
}
@media screen and (min-width: 600px) { /* IE9+ */
    .col-1p2 {
        float: left;
        width: 50%;
    }
    .col-1p4 {
        float: left;
        width: 25%;
    }
    .col-3p4 {
        float: left;
        width: 75%;
    }
    .col-1p3 {
        float: left;
        width: 33.3333333333%;
    }
    .col-2p3 {
        float: left;
        width: 66.6666666667%;
    }
}
/*
 *
 *      汎用
 *
 */
.imgbox {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 100%; // 正方形
    box-sizing: content-box; /* IE8+ */
}
.imgbox > div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    text-align: center;
    background-color: #fff;
    background-position: center top;
    background-size: cover; /* IE9+ */
}
.imgbox:hover > div {
    opacity: .75;
}
.imgbox > div img {
    opacity: 0;
    width: 100%;
    height: 100%;
}
.scrooler {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
}
.flex {
    display:  -webkit-box;
    display:     -moz-box;
    display:  -ms-flexbox; /* IE10 */
    display: -webkit-flex;
    display:         flex; /* IE11+ */
}
/*
 *
 *      IE8 AND OLD BROWSER
 *
 */
#browserupgrade {
    margin: 1em 2em;
    padding: 1em;
    background-color: #fce4ec;
}
/*
 *
 *      root
 *
 */
html {
    color: #f8f8f8;
    background-color: #212121;
    width: 100%;
    height: 100%;
    min-width: 320px;
    overflow: hidden;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
body {
    width: 100%;
    height: 100vh;
    overflow: scroll;
    font-family: "Helvetica Neue", "Calibri", "Open Sans", Helvetica, Arial, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    background-color: #fff;
}
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    text-shadow: 0 0 1px rgba(0,0,0,.2);
}
/*
 *
 *      tnav - touch device nav
 *
 */
#tnav {
    position: absolute;
    top: 0;
    right: 0;
    width: 16rem;
    height: 100%;
    color: #f8f8f8;
    background-color: #212121;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
}
#tnav ul {
    list-style: none;
    line-height: 2.75em;
    white-space: nowrap;
    text-shadow: 1px 0 1px rgba(255,255,255,.3);
}
#tnav li {
    padding: 0 .5em;
    border-bottom: 1px solid #777;
}
#tnav a {
    display: block;
    color: #f8f8f8;
    height: 100%;
}
@media screen and (min-width: 801px) {
    #tnav {
        overflow: hidden;
    }
}
/*
 *
 *      body
 *
 */
#body {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    color: #212121;
    background-color: #f8f8f8;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
    -webkit-transition: -webkit-transform .3s ease-in-out;
            transition:         transform .3s ease-in-out;
}
#body.navshow {
    -webkit-transform: translateX(-16rem);
            transform: translateX(-16rem);
}
/*
 *
 *      header table-row table-cell vertical-align: middle top bottom
 *
 */
#header {
    margin-top: 1em;
    margin-bottom: 1em;
}
#header a:hover {
    text-decoration: none;
}
#header_img {
    overflow: hidden;
}
#brand {
    float: left;
    margin-right: 1rem;
    max-width: 240px;
}
#tnav_open_btn {
    float: right;
    display: inline-block;
    width: 44px;
    line-height: 1;
    text-align: center;
    padding: 1px 0;
    color: #585858;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 1px 1px 1px rgba(0,0,0,.3);
}
#tnav_open_btn .fa {
    display: block;
    width: 100%;
    font-size: 32px;
}
#tnav_open_btn span {
    display: block;
    width: 100%;
    font-size: 10px;
}
#phone {
    text-align: right;
    font-size: 14px;
    line-height: 1.2;
}
#phone a {
    font-size: 24px;
}
@media screen and (min-width: 600px) {
    #header {
        margin-top: 2em;
    }
    #header_img {
        text-align: center;
    }
    #brand {
        float: none;
        margin-right: 0;
        max-width: none;
    }
    #tnav_open_btn {
        display: none;
    }
    #phone {
        text-align: center;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
}
/*
 *
 *      nav
 *
 */
#gnav {
    display: none;
    text-align: center;
    margin: 1em 0;
    height: 3.375em;
    background-color: rgba(255,255,255,.85);
}
#gnav_main {
    display: inline-block;
    position: relative;
    list-style-type: none;
    font-size: 1.125em;
    margin: 0;
    padding: 0;
    line-height: 3;
    height: 3em;
    -webkit-transition: .3s;
            transition: .3s; /* IE10+ */
}
#gnav_main li {
    display: block;
    float: left;
}
#gnav_main a {
    display: block;
    padding: 0 1.25em;
    color: inherit;
    -webkit-transition: .3s;
            transition: .3s; /* IE10+ */
}
#gnav_main a:hover {
    text-decoration: none;
    opacity: .6;
}
#gnav_main li#gnav_drop {
    float: right;
}
#gnav_drop span {
    display: block;
    padding: 0 1em;
    -webkit-transition: .3s;
            transition: .3s; /* IE10+ */
}
#gnav_drop span:hover {
    opacity: .6;
}
#gnav_drop ul {
    position: absolute;
    top: 2.4em;
    right: 1px;
    z-index: 9;
    height: 0;
    overflow: hidden;
    box-shadow: 2px 2px 5px rgba(0,0,0,.5);
    -webkit-transition: .3s;
            transition: .3s; /* IE10+ */
}
#gnav_drop:hover > ul {
    height: auto;
}
#gnav_drop li {
    float: none;
    background-color: rgba(255,255,255,.85);
    -webkit-transition: .8s;
            transition: .8s; /* IE10+ */
}
#gnav_drop li:hover {
    background-color: rgba(192,192,192,.7);
}
#gnav_drop a {
    display: block;
}
#gnav_drop a:hover {
    opacity: 1;
}
@media screen and (min-width: 600px) {
    #gnav {
        display: block;
    }
}
/*
 *
 *      content_box
 *
 */
.content_box {
    margin: 1em .5em;
    padding: 1em;
    background-color: rgba(255,255,255,.85);
    overflow: hidden;
}
.content_box h1 {
    font-size: 1.5rem;
    font-weight: normal;
}
.content_box h1 a {
    color: inherit;
}
@media screen and (min-width: 600px) {
    .content_box {
        margin: 1em;
        padding: 1em;
    }
}
@media screen and (min-width: 801px) {
    .content_box {
        margin: 1em 1.5em;
        padding: 2em;
    }
}
/*
 *
 *      breadcrumbs
 *
 */
#breadcrumbs {
    background-color: #fff;
    margin-bottom: 3em;
}
#breadcrumbs ol {
    list-style: none;
    font-size: 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}
#breadcrumbs li {
    display: inline-block;
    font-size: .875em;
    font-size: .875rem;
    line-height: 2em;
}
#breadcrumbs li {
    padding-left: 2.4em;
}
#breadcrumbs li a {
    position: relative;
    display: block;
    color: inherit;
}
#breadcrumbs li a:hover {
    opacity: .65;
}
#breadcrumbs li:first-child {
    padding-left: 1.1em;
}
#breadcrumbs li a:after {
    content: ' ';
    display: block;
    width: 0;
    height: 0;
    border-top: 1.5em solid transparent;
    border-bottom: 1.5em solid transparent;
    border-left: 1.5em solid #fff;
    position: absolute;
    top: 50%;
    margin-top: -1.5em;
    left: 100%;
    z-index: 2;
}
#breadcrumbs li a:before {
    content: ' ';
    display: block;
    width: 0;
    height: 0;
    border-top: 1.5em solid transparent;
    border-bottom: 1.5em solid transparent;
    border-left: 1.5em solid rgba(0,0,0,.15);
    position: absolute;
    top: 50%;
    margin-top: -1.5em;
    margin-left: 2px;
    left: 100%;
    z-index: 1;
}
/*
 *
 *      carousel
 *
 */
#carousel {
    position: relative;
    overflow: hidden;
}
#carousel_ul {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    list-style-type: none;
    margin: 0;
    padding: 0;
}
#carousel_ul > li {
    position: relative;
    width: 50%;
    display: block;
    float: left;
}
#carousel_ul > li > img {
    width: 100%;
    height: auto;
}
#carousel_prev,
#carousel_next {
    position: absolute;
    top: 0;
    left: 0;
    width: 44px;
    height: 100%;
    color: rgba(255,255,255,.3);
    background-color: rgba(0,0,0,0);
    -webkit-transition: .5s;
        -ms-transition: .5s;
            transition: .5s;
    cursor: pointer;
}
#carousel_next {
    left: auto;
    right: 0;
}
#carousel_prev:hover,
#carousel_next:hover {
    color: rgba(255,255,255,.8);
    background-color: rgba(0,0,0,.1);
}
#carousel_prev i.fa,
#carousel_next i.fa {
    position: absolute;
    top: 45%;
    left: 25%;
    font-size: 1.625em;
}
@media screen and (max-width: 599px) {
    #carousel_prev,
    #carousel_next {
        width: 28px;
    }
    #carousel_prev i.fa,
    #carousel_next i.fa {
        font-size: 90%;
    }
}
/*
 *
 *      main - sidebar
 *
 */
#main_wrap {
    margin-top: 2rem;
}
#main {
    overflow: hidden;
}
#sidebar {
    margin-top: 3em;
    overflow: hidden;
}
@media screen and (min-width: 801px) {
    #main {
        float: left;
        width: 63.5%;
    }
    #sidebar {
        float: right;
        width: 30.159%;
        margin-top: 0;
    }
}
/*
 *
 *      footer
 *
 */
#footer {
    text-align: center;
    color: #666;
    background-color: rgba(255,255,255,.85);
    padding-top: 2em;
    padding-bottom: 2em;
    margin-top: 1em;
}
#sns_links {
    font-size: 2.5em;
}
#sns_links i,
#sns_links img {
    vertical-align: middle;
}
/*
 *
 *      gotop
 *
 */
#gotop {
    display: none;
    position: absolute;
    font-size: 2.2em;
    font-size: 2.2rem;
    text-align: center;
    line-height: 1;
    right: .45455em;
    right: 1rem;
    bottom: .68182em;
    bottom: 1.5rem;
    width: 1.25em;
    width: 2.75rem;
    height: 1.25em;
    height: 2.75rem;
    overflow: hidden;
    color: #fff;
    background-color: rgba(0,0,0,.5);
    border-radius: .17em;
    border-radius: .375rem;
    cursor: pointer;
}
/*
 *
 *      pagination
 *
 */
.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}
.pagination > li {
  display: inline;
}
.pagination > a,        /* 956 */
.pagination > span,     /* 956 */
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  line-height: 1.428571429;
  text-decoration: none;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  margin-left: -1px;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}
.pagination > a:hover,          /* 956 */
.pagination > span:hover,       /* 956 */
.pagination > a:focus,          /* 956 */
.pagination > span:focus,       /* 956 */
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  background-color: #d0c7ba;
}
.pagination > .current > a,             /* 956 */
.pagination > .current > span,          /* 956 */
.pagination > .current > a:hover,       /* 956 */
.pagination > .current > span:hover,    /* 956 */
.pagination > .current > a:focus,       /* 956 */
.pagination > .current > span:focus     /* 956 */
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  z-index: 2;
  color: #ffffff;
  background-color: #878179;
  border-color: #878179;
  cursor: default;
}
.pagination > .disabled > span,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #bbbdb6;
  background-color: #ffffff;
  border-color: #dddddd;
  cursor: not-allowed;
}
.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
}
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
}
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px;
}
.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
}
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}
.pager {
  padding-left: 0;
  margin: 20px 0;
  list-style: none;
  text-align: center;
}
.pager:before,
.pager:after {
  content: " ";
  /* 1 */

  display: table;
  /* 2 */

}
.pager:after {
  clear: both;
}
.pager:before,
.pager:after {
  content: " ";
  /* 1 */

  display: table;
  /* 2 */

}
.pager:after {
  clear: both;
}
.pager li {
  display: inline;
}
.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 15px;
}
.pager li > a:hover,
.pager li > a:focus {
  text-decoration: none;
  background-color: #d0c7ba;
}
.pager .next > a,
.pager .next > span {
  float: right;
}
.pager .previous > a,
.pager .previous > span {
  float: left;
}
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #bbbdb6;
  background-color: #ffffff;
  cursor: not-allowed;
}
/*
 *
 *      gMap
 *
 */
#gmap {
    width: 100%;
    height: 420px;
    margin: 0 auto;
}
#gmap img {
    max-width:none;
}
/*
 *
 *      common
 *
 */
#sidebar aside {
    margin-bottom: 2rem;
    font-size: .875em;
}
.contents h1,
#contents h1,
#sidebar h1 {
    font-size: 1.5em;
    font-weight: 200;
    margin-bottom: 1em;
}
.contents h2,
#contents h2,
#sidebar h2 {
    font-size: 1.25em;
    font-weight: 200;
    margin-bottom: 1em;
}
.contents h3,
#contents h3,
#sidebar h3 {
    font-size: 1.125em;
    font-weight: 200;
    margin-bottom: 1em;
}
.contents h4,
#contents h4,
#sidebar h4 {
    font-size: 1em;
    font-weight: normal;
    margin-bottom: 1em;
}
.contents h5,
#contents h5,
#sidebar h5 {
    font-size: .875em;
    font-weight: normal;
    margin-bottom: 1em;
    padding-left: .5em;
    border-left: .5em solid #aaa;
}
.contents h6,
#contents h6,
#sidebar h6 {
    font-size: .875em;
    font-weight: bold;
    margin-bottom: 1em;
    border-bottom: 1px dotted #aaa;
}
.contents p,
#contents p,
#sidebar p {
    margin: 1em 0;
}
.contents ul,
#contents ul,
#sidebar ul {
    margin: 1em 0;
    padding-left: 2em;
    list-style-type: disc;
}
.contents ol,
#contents ol,
#sidebar ol {
    margin: 1em 0;
    padding-left: 2em;
    list-style-type: decimal;
}
.contents sup,
#contents sup,
#contents sub,
.sidebar sup,
#sidebar sup,
#sidebar sub {
    font-size: smaller;
}
/*
 *
 *      share button
 *
 */
#sidebar .share,
.sns_links {
    list-style-type: none;
    margin: 1em 0;
    padding: 0;
}
.share li,
.sns_links li {
    display: inline-block;
    margin: 0 .5em .5em 0;
    vertical-align: top;
}
.sns_links li {
    font-size: 2.625em;
    margin: 0;
}
/*
 *
 *      main
 *
 */
#main > h1 {
    font-size: 1.75em;
    margin-bottom: 1em;
}
#article {
    margin-bottom: 2em;
    overflow: hidden;
}
#article header h1 {
    font-size: 1.5em;
    margin-bottom: 1rem;
}
.publish {
    text-align: right;
    font-size: .875em;
}
#main aside,
#main section {
    margin-bottom: 2em;
    overflow: hidden;
}
#contents_list ul,
#contents_table ul,
#streem_table ul {
    list-style-type: none;
}
#contents_list li,
#contents_table li,
#streem_table li {
    overflow: hidden;
}
#contents_table li,
#streem_table li {
    margin-bottom: 1em;
}
#contents_list h1,
#contents_table h1,
#streem_table h1 {
    font-size: 1.25em;
}
#contents_table h1 {
    margin-bottom: -.5rem;
}
#streem_table h1 {
    white-space: nowrap;
    overflow: hidden;
}
h1 span,
h2 span,
h3 span {
    font-size: .8em;
}
/*
 *
 *      whats
 *
 */
#whats h1 {
    font-size: 1.5em;
}
#whats dl {
    margin: 1em .5em;
}
#whats dt {
    float: left;
    clear: left;
    width: 6em;
}
#whats dd {
    padding-left: 6em;
    padding-bottom: .5em;
    margin-bottom: .5em;
    border-bottom: 1px dotted #aaa;
}
/*
 *
 *      price list
 *
 */
#menu h1 {
    font-size: 1.5em;
    margin-bottom: 1rem;
}
#menu > p {
    font-size: .875em;
    margin: -1rem 0 1rem 3rem;
}
#menu ul {
    margin: 1em 1em 2em 1em;
    list-style-type: none;
}
#menu li {
    position: relative;
    overflow: hidden;
    padding-bottom: .5em;
    margin-bottom: .5em;
    border-bottom: 1px dotted #999;
}
.menu_name {
    float: left;
}
.price {
    width: 100%;
    text-align: right;
}
.menu_note {
    clear: both;
    font-size: .875em;
    margin-left: 2rem;
}
/*
 *
 *      gallery
 *
 */
#gallery {
    position: relative;
    overflow: hidden;
}
#gallery > ul {
    position: relative;
    top: 0;
    left: 0;
    width: 200%;
    list-style-type: none;
    margin: 0;
    padding: 0;
}
#gallery > ul li {
    width: 50%;
    display: block;
    float: left;
}
#gallery_prev,
#gallery_next {
    position: absolute;
    top: 0;
    left: 0;
    width: 36px;
    height: 100%;
    color: rgba(255,255,255,.3);
    background-color: rgba(0,0,0,0);
    -webkit-transition: .5s;
        -ms-transition: .5s;
            transition: .5s;
    cursor: pointer;
}
#gallery_next {
    left: auto;
    right: 0;
}
#gallery_prev:hover,
#gallery_next:hover {
    color: rgba(255,255,255,.8);
    background-color: rgba(0,0,0,.1);
}
#gallery_prev i.fa,
#gallery_next i.fa {
    position: absolute;
    top: 45%;
    left: 25%;
    font-size: 1.25em;
}
/*
 *
 *      staff
 *
 */
#gcal {
    margin: 2em 0 3em;
}
