@charset "UTF-8";
/* ========== SmartPhone Adjustment ========== */
body {
    -webkit-text-size-adjust: 100%!important;
}
img {
    max-width: 100%;
    height: auto;
}
iframe {
    width: 100%;
}
#wrapper {
    overflow: hidden;
}



/* ========== box-sizing: border-box RESET ========== */
/*
*, *:before, *:after {
    box-sizing: content-box;
}
*/



/* ========== Base Layout Section ========== */
html, body { height: 100%; }

body {
    margin: 0;
    padding: 0;
    color: #000;
    font-size: 100%;
    font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', '游ゴシック  Medium', meiryo, sans-serif;
    text-align: center;
    line-height: 1.4;
    background-color: #fff;
/*  background-image: url(img/back.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover; */
}

div#go-top {
    width: 100%;
    height: 50px;
    background-color: #fff;
}

div#wrapper {
    width: 100%;
    height: 100%;
    min-height: 100%;   /* フッタを最下にしないなら削除 */
    margin: 0 auto;
    padding: 0 0 10px;
    position: relative; /* フッタを最下にしないなら削除 */
    text-align: left;
    background-color: #fff;
}

/* フッタ…常に最下・フッタを最下にしないなら削除 */
body > div#wrapper {
    height: auto;
}

div#contents {
    width: 100%;
    padding-bottom: 200px;  /* フッタに指定した高さ・フッタを最下にしないなら削除 */
}
header {
    position: relative;
}
header img#open {
    position: absolute;
    width: 200px;
    bottom: 35px;
    right: 0px;
}
header img#phone {
    position: absolute;
    width: 250px;
    bottom: 5px;
    right: 0px;
}
header h1 {
    margin: 0;
}

footer {
    width: 100%;
    height: 200px;
    padding: 10px 5px;
    background-color: #333;
    position: absolute;     /* フッタを最下にしないなら削除 */
    bottom: 0px;            /* フッタを最下にしないなら削除 */
    text-align: center;
}

footer small {
    color: #fff;
    font-size: .7em;
    font-weight: bold;
}

footer small a:link,
footer small a:visited {
    color: #fff;
    text-decoration: none;
}

footer #proviso {
    margin: 50px .8em;
    text-align: left;
    color: #fff;
    font-size: .8em;
}

/* ========== List Tag Section ========== */
article ul,
article ol {
    margin: 0 0 0 25px;
}

/* ========== Heading Tag Section ========== */
h1 { font-size: 200%; margin: 15px 0; font-weight: bold; }
h2 { font-size: 180%; margin: 15px 0; font-weight: bold; }
h3 { font-size: 160%; margin: 15px 0; font-weight: bold; }
h4 { font-size: 140%; margin: 15px 0; font-weight: bold; }
h5 { font-size: 120%; margin: 15px 0; font-weight: bold; }
h6 { font-size: 100%; margin: 15px 0; font-weight: bold; }

/* ========== Linked Color Section ========== */
a:link {    /* 未訪問 */
    color: #1d3994;
    text-decoration: underline;
}
a:visited { /* 訪問済 */
    color: #1d3994;
    text-decoration: underline;
}
a:hover {   /* マウスオーバ */
    color: #1d3994;
    text-decoration: underline;
}
a:active {  /* アクティブ */
    color: #f00;
    text-decoration: underline;
}

/* ========== for Header Section ========== */
/* Global Navi */
/*!
 * Slidebars - A jQuery Framework for Off-Canvas Menus and Sidebars
 * Version: 2.0.2
 * Url: http://www.adchsm.com/slidebars/
 * Author: Adam Charles Smith
 * Author url: http://www.adchsm.com/
 * License: MIT
 * License url: http://www.adchsm.com/slidebars/license/
 */
/* ***** Canvas ***** */
[canvas] { z-index: 1; }
[canvas=container] {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    position: relative;
    background-color: white; /* Basic background color, overwrite this in your own css. */
    -webkit-overflow-scrolling: touch; /* Enables momentum scrolling on iOS devices, may be removed by setting to 'auto' in your own CSS. */
}
[canvas=container]:before, [canvas=container]:after {
    clear: both;
    content: '';
    display: table;
}

/* ***** Off-Canavs ***** */
[off-canvas] {
    display: none;
    position: fixed;
    overflow: hidden;
    overflow-y: auto;
    background-color: #333; /* Basic background color, overwrite this in your own css. */
    color: #fff; /* Basic colors, overwrite this in your own css. */
    -webkit-overflow-scrolling: touch; /* Enables momentum scrolling on iOS devices, may be removed by setting to 'auto' in your own CSS. */
}
[off-canvas*=top] {
    width: 100%;
    height: 255px;
    top: 50px; /* 上位置に対して固定表示メニュー用の余白 */
}
[off-canvas*=right] {
    width: 275px;
    height: 100%;
    margin-top: 50px; /* 上位置に対して固定表示メニュー用の余白 */
    top: 0;
    right: 0;
}
[off-canvas*=bottom] {
    width: 100%;
    height: 80px;
    bottom: 0;
}
[off-canvas*=left] {
    width: 275px;
    height: 100%;
    margin-top: 50px; /* 上位置に対して固定表示メニュー用の余白 */
    top: 0;
    left: 0;
}
[off-canvas*=reveal] { z-index: 3; }
[off-canvas*=push]   { z-index: 9000; }
[off-canvas*=overlay]{ z-index: 9997; }
[off-canvas*=shift]  { z-index: 9000; }

/* ***** Animation ***** */
[canvas], [off-canvas] {
    -webkit-transform: translate( 0px, 0px );
        -ms-transform: translate( 0px, 0px );
            transform: translate( 0px, 0px );
    -webkit-transition: -webkit-transform 300ms;
            transition:         transform 300ms;
    -webkit-backface-visibility: hidden; /* Prevents flickering, may be removed if experiencing problems with fixed background images in Chrome. */
}
[off-canvas*=shift][off-canvas*=top] {
    -webkit-transform: translate( 0px, 50% );
            transform: translate( 0px, 50% );
}
[off-canvas*=shift][off-canvas*=right] {
    -webkit-transform: translate( -50%, 0px );
            transform: translate( -50%, 0px );
}
[off-canvas*=shift][off-canvas*=bottom] {
    -webkit-transform: translate( 0px, -50% );
            transform: translate( 0px, -50% );
}
[off-canvas*=shift][off-canvas*=left] {
    -webkit-transform: translate( 50%, 0px );
            transform: translate( 50%, 0px );
}

/* ***** Print ***** */
@media print {
    [canvas] {
        -webkit-transform: translate( 0px, 0px ) !important;
            -ms-transform: translate( 0px, 0px ) !important;
                transform: translate( 0px, 0px ) !important;
    }
    [off-canvas] { display: none !important; }
}
/*! ***** that's All Over. Sliderbars ***** */

/* --- Header --- */
header p {
    margin-top: 0;
}


/* --- Fixed Navi(UNDER) ---*/
div#submenu {
    width: 100%;
    height: 70px;
    padding: -10px 0 0 0;
    position: fixed;
    bottom: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba( 255,255,255, 0) 20%, rgba( 255,255,255, 1) 80%);
    /*-webkit-backdrop-filter: contrast(20) blur(10px);*/
    border-bottom: 1px solid #666;
    text-align: center;
    letter-spacing: -1em;
    z-index: 2;
}

div#submenu li {
    vertical-align: top;
    width: calc(100% / 4);
    letter-spacing: 0;
    display: inline-block;
    font-size: .75em;
    font-weight: bold;
}
div#submenu li a {
    text-decoration: none;
    display: block;
}
div#submenu li a:link,
div#submenu li a:visited {
    color: #e50012;
}
div#submenu li img {
    width: 50px;
}
.animation-bounce {
    animation: bounce 1.5s ease infinite normal 0s none running;
}
@keyframes bounce {
    0%, 100%, 20%, 50%, 80% {
        transform: translateY(0px);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-2px);
    }
}



/* --- Fixed Navi --- */
div#fixedmenu {
    width: 100%;
    height: 50px;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(255,255,255,0.9);
    -webkit-backdrop-filter: contrast(2) blur(15px);
    border-bottom: 1px solid #666;
    text-align: center;
    z-index: 9998;
}

div#fixedmenu h1 {
    margin: 0 auto;
}

div#fixedmenu img#title {
    width: 220px;
    max-height: 50px;
}


div#fixedmenu .js-toggle-left-slidebar,
div#fixedmenu .js-toggle-right-slidebar,
div#fixedmenu .js-toggle-top-slidebar,
div#fixedmenu .js-toggle-bottom-slidebar {
    border: 0;
    padding: 0;
    width: 45px;
    height: 45px;
    background-color: transparent;
    position: absolute;
    top: 3px;
}
div#fixedmenu .js-toggle-left-slidebar  { left: 3px; }
div#fixedmenu .js-toggle-bottom-slidebar  { left: 50px; }
div#fixedmenu .js-toggle-bottom-slidebar i {
    position: absolute;
    width: 18px;
    height: 18px;
    font-size: 1em;
    border-radius: 50%;
    padding: 2px;
    display: block;
    right: 0;
    top: 0;
    display: block;
    font-style: normal;
    font-weight: bold;
    background-color: #f00;
    color: #fff;
    animation: Flash1 1s infinite;
}
div#fixedmenu .js-toggle-right-slidebar { right: 50px; }
div#fixedmenu .js-toggle-top-slidebar   { right: 3px; }
div#fixedmenu .js-toggle-left-slidebar img,
div#fixedmenu .js-toggle-right-slidebar img,
div#fixedmenu .js-toggle-top-slidebar img,
div#fixedmenu .js-toggle-bottom-slidebar img {
    max-height: 45px;
}

div#fixedmenu #gotop {
    width: 60px;
    height: 60px;
    background-color: transparent;
    position: absolute;
    top: 5px;
    right: 10px;
    display: block;
}
div#fixedmenu #gotop img {
    max-height: 60px;
}

/* --- Global Navigation --- */
[off-canvas="slidebar-1 left reveal"] {
    background-color: #333;
    padding: 0 0 1000px 0;
}

[off-canvas="slidebar-1 left reveal"] .js-close-any-slidebar {
    width: 50px;
    height: 50px;
    top: -1px;
    left: -1px;
    background-color: transparent;
    border: 0;
    border-right: 1px dashed #fff;
    padding: 0;
}

nav#global {
    width: 275px;
    height: 396px;
    /*letter-spacing: -1em;*/
}

nav#global ul {
    width: 275px;
    height: 396px;
    margin: 0;
    /*background: url(img/navi.png) no-repeat;*/
    background-size: 510px 396px;
    background-position-x: left;
}

nav#global ul li {
    display: inline-block;
    letter-spacing: 0em;
    vertical-align: bottom;
    position: relative;
    border-bottom: 1px solid #666;
    width: 275px;
}

nav#global ul li:not(:first-child):not(:last-child):not(:nth-child(8)):not(:nth-child(9)):not(:nth-child(10)) {
    width: 130px;
}

nav#outside ul {
    margin: 0 0 -15px 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}

nav#outside a {
    font-size: .9em;
    display: block;
    height: 40px;
    color: #fff;
    text-shadow: 1px 1px 0 #333;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    padding: 8px 6px;
}

nav#global #caba,
nav#outside #caba {
    background: #3231B3;
    background: linear-gradient(to bottom, #3231B3 30%, #16164F 100%);
}
nav#global #recr,
nav#outside #recr {
    background: #FF0066;
    background: linear-gradient(to bottom, #FF0066 30%, #9E003F 100%);
}

nav#global #ebook,
nav#outside #ebook {
    background: #893700;
    background: linear-gradient(to bottom, #893700 30%, #421A00 100%);
}

nav#outside #hote {
    background: #20B2AA;
    background: linear-gradient(to bottom, #20B2AA 30%, #115E59 100%);
}

nav#global ul li time {
    position: absolute;
    background-color: #e00;
    padding: 1px 10px;
    top: -1px;
    right: 0;
    font-size: .8em;
    font-weight: bold;
    color: #fff;
    border-radius: 15px;
}

nav#global ul li a {
    display: block;
    width: 100%;
    height: 44px;
    padding-top: 14px;

/*    height: 0;
    padding-top: 44px;
    overflow: hidden;*/
}

nav#global ul li a:link,
nav#global ul li a:visited {
    font-size: .9em;
    text-decoration: none;
    font-weight: bold;
    color: #fff;
}

/*nav#global ul li a:not(:first-child) {
    width: 130px;
}*/

/*
nav#global ul li a.active,
nav#global ul li a:focus,
nav#global ul li a:hover {
    background: url(img/navi.png) no-repeat;
    background-size: 510px 396px;
    background-position-x: right;
}

nav#global ul li:nth-of-type(1) a.active,
nav#global ul li:nth-of-type(1) a:focus,
nav#global ul li:nth-of-type(1) a:hover { background-position-y: calc(-44px * 0); }

nav#global ul li:nth-of-type(2) a.active,
nav#global ul li:nth-of-type(2) a:focus,
nav#global ul li:nth-of-type(2) a:hover { background-position-y: calc(-44px * 1); }

nav#global ul li:nth-of-type(3) a.active,
nav#global ul li:nth-of-type(3) a:focus,
nav#global ul li:nth-of-type(3) a:hover { background-position-y: calc(-44px * 2); }

nav#global ul li:nth-of-type(4) a.active,
nav#global ul li:nth-of-type(4) a:focus,
nav#global ul li:nth-of-type(4) a:hover { background-position-y: calc(-44px * 3); }

nav#global ul li:nth-of-type(5) a.active,
nav#global ul li:nth-of-type(5) a:focus,
nav#global ul li:nth-of-type(5) a:hover { background-position-y: calc(-44px * 4); }

nav#global ul li:nth-of-type(6) a.active,
nav#global ul li:nth-of-type(6) a:focus,
nav#global ul li:nth-of-type(6) a:hover { background-position-y: calc(-44px * 5); }

nav#global ul li:nth-of-type(7) a.active,
nav#global ul li:nth-of-type(7) a:focus,
nav#global ul li:nth-of-type(7) a:hover { background-position-y: calc(-44px * 6); }

nav#global ul li:nth-of-type(8) a.active,
nav#global ul li:nth-of-type(8) a:focus,
nav#global ul li:nth-of-type(8) a:hover { background-position-y: calc(-44px * 7); }

nav#global ul li:nth-of-type(9) a.active,
nav#global ul li:nth-of-type(9) a:focus,
nav#global ul li:nth-of-type(9) a:hover { background-position-y: calc(-44px * 8); }
*/

[off-canvas="slidebar-1 left reveal"] input[type="checkbox"] {
    display: none;
}

[off-canvas="slidebar-1 left reveal"] .hotel {
    text-align: left;
    height: 0;
    overflow: hidden;
    /*background: #ddd;*/
    padding: 0;
    margin: 0 0 10px;
}

[off-canvas="slidebar-1 left reveal"] input[id="hotel"]:checked ~ .hotel {
    height: auto;
    padding: 10px .8em;
}


[off-canvas="slidebar-1 left reveal"] .hotel h4 {
    margin: 10px 0;
    font-size: 1.1em;
    color: #FFD800;
}


/* --- Cast Search Form --- */
img.ads_search_top {
    position: absolute;
    top: -1px;
    right: 1px;
    width: 225px;
}

img.ads_search {
    margin: 12px auto 150px;
    width: 275px;
}


[off-canvas="slidebar-2 right shift"] .js-close-any-slidebar,
[off-canvas="slidebar-3 right push"] .js-close-any-slidebar {
    width: 50px;
    height: 50px;
    position: absolute;
    top: -1px;
    left: -1px;
    background-color: transparent;
    border: 0;
    border-right: 1px dashed #fff;
    padding: 0;
}

[off-canvas="slidebar-4 left push"] .js-close-any-slidebar {
    width: 50px;
    height: 50px;
    position: absolute;
    top: -1px;
    right: -1px;
    background-color: transparent;
    border: 0;
    border-left: 1px dashed #fff;
    padding: 0;
}
img.ads_favorite_top {
    position: absolute;
    top: -1px;
    left: 1px;
    width: 225px;
}

[off-canvas="slidebar-4 left push"] {
    padding: 55px 0 200px 0;
}

[off-canvas="slidebar-4 left push"] section {
    position: relative;
    margin: 0 0 3px 0;
    padding: 5px;
    border-bottom: 1px dashed #fff;
    text-align: left;
}

[off-canvas="slidebar-4 left push"] section::after {
  content: "";
  display: block;
  clear: both;
}

[off-canvas="slidebar-4 left push"] section a {
    display: block;
    text-decoration: none;
    color: #fff;
}

[off-canvas="slidebar-4 left push"] section .staynow {
    width: 80px;
    position: absolute;
    top: 35px;
    right: 5px;
}

[off-canvas="slidebar-4 left push"] section .license {
    position: absolute;
    top: 5px;
    right: 5px;
}

[off-canvas="slidebar-4 left push"] section .thum {
    margin: 0 5px 0 0;
    width: 60px;
    float: left;
}

[off-canvas="slidebar-4 left push"] section .banner {
    width: 120px;
}

[off-canvas="slidebar-4 left push"] section .name {
    color: #FF0AB5;
    font-weight: bold;
    font-size: 1.2em;
}
[off-canvas="slidebar-4 left push"] section #userid {
    display: block;
    text-align: center;
}
[off-canvas="slidebar-4 left push"] section #decode {
    font-size: 0.8em;
}
[off-canvas="slidebar-4 left push"] #tutorial {
    width: 160px;
}
[off-canvas="slidebar-4 left push"] hr {
    margin: 5px 10px;
    border: 1px dashed #666;
}

[off-canvas="slidebar-4 left push"] form[name="favdec"] input {
    width: 180px;
    font-size: 1.0em;
    margin: 0 20px;
    padding: 5px;
    text-align: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    display: inline-block;
}
[off-canvas="slidebar-4 left push"] form[name="favdec"] button {
    width: 80px;
    font-size: .8em;
    font-weight: bold;
    margin: 3px 20px;
    padding: 5px;
    text-align: center;
    background-color: #FFF;
    background: linear-gradient(to bottom, #FFF 0%, #eee 100%);
    -webkit-appearance: none;
    -moz-appearance: none;
    display: inline-block;
}


[off-canvas="slidebar-3 right push"] {
    padding: 0 0 700px 0;
}

[off-canvas="slidebar-3 right push"] form {
    margin: 55px 0 0 0;
}

[off-canvas="slidebar-3 right push"] dt {
    font-size: .9em;
    padding: 5px 10px 0;
    text-align: left;
    font-weight: bold;
}
[off-canvas="slidebar-3 right push"] dt span {
    font-size: .8em;
}
[off-canvas="slidebar-3 right push"] dd.sb {
    letter-spacing: -1em;
}

[off-canvas="slidebar-3 right push"] select[name="area"] {
    width: 245px;
    font-size: 1em;
    border: 1px solid #333;
    border-radius: 25px;
    padding: 5px 12px;
    background: #eee;
    background: linear-gradient(to bottom, #fff 30%, #ccc 100%);
    text-shadow: 1px 1px 0 #bbb;
}

[off-canvas="slidebar-3 right push"] div[id$="_range"] {
    width: 200px;
    margin: 0 0 15px 30px;
}

[off-canvas="slidebar-3 right push"] div.noUi-connect {
    background: #e50012;
    background: linear-gradient(to right, #6d0001 0%, #e50012 50%, #6d0001 100%);
}
[off-canvas="slidebar-3 right push"] div.noUi-horizontal {
    border-radius: 25px;
    height: 12px;
}
[off-canvas="slidebar-3 right push"] div.noUi-handle {
    height: 28px;
    width: 28px;
    border-radius: 30px;
}

[off-canvas="slidebar-3 right push"] input[name^="price_"],
[off-canvas="slidebar-3 right push"] input[name^="age_"] {
    font-size: 1.1em;
    background-color: transparent;
    color: #fff;
    border: 0;
    text-align: center;
}
[off-canvas="slidebar-3 right push"] input[name^="price_"] { width: 50px; }
[off-canvas="slidebar-3 right push"] input[name^="age_"]   { width: 30px; }


[off-canvas="slidebar-3 right push"] input[type="checkbox"] {
    display: none;
}

[off-canvas="slidebar-3 right push"] label {
    display: inline-block;
    color: #e50012;
    background: #eee;
    background: linear-gradient(to bottom, #fff 30%, #ccc 100%);
    text-shadow: 1px 1px 0 #bbb;
    text-align: center;
    /*transition: .2s;*/
    border-radius: 3px;
    margin: 1px;
    padding: 5px;
    letter-spacing: 0em;
    font-weight: bold;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #aaa;
    border-right: 1px solid #aaa;
}
[off-canvas="slidebar-3 right push"] label[for="deva"],
[off-canvas="slidebar-3 right push"] label[for="una"],
[off-canvas="slidebar-3 right push"] label[for="gossip"],
[off-canvas="slidebar-3 right push"] label[for="newface_sh"] {
    font-size: .8em;
    width: 84px;
}
[off-canvas="slidebar-3 right push"] label[for="downprice_sh"] {
    font-size: .9em;
    width: 180px;
}
[off-canvas="slidebar-3 right push"] label[for="sd"],
[off-canvas="slidebar-3 right push"] label[for="staynow_sh"] {
    font-size: .9em;
    width: 95px;
}
[off-canvas="slidebar-3 right push"] label[for^="type_"] {
    width: 55px;
}
[off-canvas="slidebar-3 right push"] input:checked + label {
    background: #6d0001;
    background: linear-gradient(to bottom, #6d0001 30%, #e50012 100%);
    text-shadow: 1px 1px 0 #000;
    color: #fff;
    border-top: 1px solid #6d0001;
    border-left: 1px solid #6d0001;
    border-bottom: 1px solid #e50012;
    border-right: 1px solid #e50012;
}

label[for^="type_"] .locked {
    /*background-color: #ff0;*/
    opacity: 0.35;
}

[off-canvas="slidebar-3 right push"] button[type="submit"] {
    font-size: 0.85em;
    color: #fff;
    border-top: 1px solid #666;
    border-bottom: 1px solid #000;
    border-left: 0;
    border-right: 0;
    font-weight: bold;
    text-shadow: 1px 1px 0 #000;
    margin: 12px auto;
    width: 100%;
    height: 50px;
    background-color: #709dff;
    background: linear-gradient(-45deg, #EE7752, #E73C7E, #23A6D5, #23D5AB);
    background-size: 400% 400%;
    animation: Gradient 7s ease infinite;
}
@keyframes Gradient {
      0% { background-position: 0% 50% }
     50% { background-position: 100% 50% }
    100% { background-position: 0% 50% }
}


/* --- Shop Search Navi --- */
[off-canvas="slidebar-2 right shift"] {
    padding: 0 0 700px 0;
}

[off-canvas="slidebar-2 right shift"] #shop {
    min-width: 300px;
    margin: 60px auto 0;
    padding: 0;
}

[off-canvas="slidebar-2 right shift"] #shop .snb {
    position: absolute;
    top: -8px;
    right: 0;
    font-size: 1.2em;
    animation: Flash1 1s infinite;
}

@keyframes Flash1{
  50%{
    opacity: 0;
  }
}

[off-canvas="slidebar-2 right shift"] #shop section {
    position: relative;
    border-bottom: 1px dashed #666;
    padding: 8px 0;
    line-height: 2.0;
}

[off-canvas="slidebar-2 right shift"] #shop input {
    display: none;
}
[off-canvas="slidebar-2 right shift"] #shop label {
    width: 85px;
    display: inline-block;
    color: #e50012;
    background: #eee;
    background: linear-gradient(to bottom, #fff 30%, #ccc 100%);
    text-shadow: 1px 1px 0 #bbb;
    text-align: left;
    /*transition: .2s;*/
    margin: 0 -3px 0 0;
    padding: 5px 10px;
    font-size: .85em;
    font-weight: bold;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #aaa;
    text-align: center;
}

[off-canvas="slidebar-2 right shift"] #shop div {
    text-align: left;
    transition: 0.2s;
    height: 0;
    overflow: hidden;
    /*background: #ddd;*/
    padding: 0 10px;
}
[off-canvas="slidebar-2 right shift"] #shop div a {
    font-size: .9em;
    font-weight: bold;
}
[off-canvas="slidebar-2 right shift"] #shop div a:link,
[off-canvas="slidebar-2 right shift"] #shop div a:visited {
    color: #FFD800;
    text-decoration: none;
}

[off-canvas="slidebar-2 right shift"] #shop div .banner {
    margin: 18px 0 0 0;
    width: 150px;
    /*width: 110px;*/
}

[off-canvas="slidebar-2 right shift"] #shop input[id="deli_central"]:checked + label,
[off-canvas="slidebar-2 right shift"] #shop input[id="deli_south"]:checked + label,
[off-canvas="slidebar-2 right shift"] #shop input[id="deli_north"]:checked + label {
    background: #6d0001;
    background: linear-gradient(to bottom, #6d0001 30%, #e50012 100%);
    text-shadow: 1px 1px 0 #000;
    color: #fff;
    border-top: 1px solid #6d0001;
    border-bottom: 1px solid #e50012;
}

[off-canvas="slidebar-2 right shift"] #shop input[id="deli_central"]:checked ~ .deli_central,
[off-canvas="slidebar-2 right shift"] #shop input[id="deli_south"]:checked ~ .deli_south,
[off-canvas="slidebar-2 right shift"] #shop input[id="deli_north"]:checked ~ .deli_north {
    height: auto;
    padding: 10px;
}

[off-canvas="slidebar-2 right shift"] #shop [class^="so_"] {
    width: 48px;
    height: 48px;
    display: block;
    position: absolute;
    text-align: center;
    font-size: .7em;
    border: 1px solid #666;
}

[off-canvas="slidebar-2 right shift"] #shop .so_shop {
    top: 6px;
    right: 117px;
}

[off-canvas="slidebar-2 right shift"] #shop .so_cast {
    top: 6px;
    right: 66px;
}

[off-canvas="slidebar-2 right shift"] #shop .so_tel {
    top: 6px;
    right: 15px;
}

/* ---BOOK info --- */
aside#book {
    border: 1px solid #c00;
    background: #fff;
    background: linear-gradient(to bottom, #fff 0%, #ddd 100%);
    margin: 0 auto 30px;
    padding: 5px;
    width: 98%;
    text-shadow: 1px 1px 0 #999;
    height: auto;
}

aside#book h2 {
    font-weight: bold;
    font-size: 1.2em;
    margin: 0 0 5px 0;
    color: #c00;
}

aside#book time {
    display: block;
    font-size: .8em;
    text-align: right;
    font-weight: bold;
}

aside#book a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #000;
}
aside#book p {
    font-weight: bold;
    font-size: .9em;
    margin: 0;
    line-height: 1.6;
    color: #0094FF;
}
aside#book nav {
    font-size: .8em;
    padding: 5px 12px;
    margin: 12px 3px 0;
    background: #00086B;
    background: linear-gradient(to bottom, #0013EA 30%, #00086B 100%);
    text-shadow: 1px 1px 0 #000;
    font-weight: bold;
    color: #fff;
    border-radius: 15px;
    box-shadow: 0px 0px 3px 1px #878787;
}

aside#book img#cover {
    width: 120px;
    border-radius: 10px;
    margin: 0 10px 0 0;
    float: left;
}