html {
    overflow-y: scroll;
}

ul {
    list-style:none;
}

/* Vue 設定 */
[v-cloak] {  display: none; }

.v-enter-active {
    -webkit-transition: opacity 1s;
    -o-transition: opacity 1s;
    transition: opacity 1s;
}

.v-enter, .v-leave-to, .v-leave-active {
    opacity: 0;
}

/* 読み込みローダー */
.loader {
    position: relative;
    text-indent: -9999em;
    margin: 88px auto;
    width: 80px;
    height: 80px;
    background-image: url('/cmn/img/loader.gif');
}

/* カレンダー main */
#calendar {
    width: 100%;
    margin: 0 0 40px;
}

#calendar .titleWrapper{
    border-top: none;
    padding:20px 0;
}

#calendar .titleText {
    float: left;
    padding-left: 10px;
    font-size: 13px;
    line-height: 1.2em;
    color: #666;
    background-repeat: no-repeat;
    background-position: 10px center;
}

#calendar .titleText h1{
    font-size: 24px;
    line-height: 1.3;
    color: #192b5b;
}

#calendar .titleDate{
	font-size: 15px;
}

.titleText.noIcon {
    padding-left: 0;
    background: none!important;
}

.titleText h2{
    font-size:24px;
    line-height:1.3;
    color:#192b5b;
}

/* 商材切替タブ */
.releaseTab{
    display:table;
    width:100%;
    margin-bottom:20px;
    border-bottom:1px solid #192b5b;
}

.releaseTab li{
    display: table-cell;
    width: 25%;
    vertical-align: top;
    border-collapse: collapse;
    height: 40px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    background: #eee;
    color: #192b5b;
    line-height: 40px;
    text-align: center;
    text-decoration: none;
}

.releaseTab li:hover{
    background:#ddd;
}

.releaseTab li.active,
.releaseTab li.router-link-active
{
    position:relative;
    top:1px;
    height:41px;
    border-top:6px solid #192b5b;
    border-left:1px solid #192b5b;
    border-right:1px solid #192b5b;
    background:#fff;
    line-height:33px;
}

.releaseTab li a,
.releaseTab li a:active,
.releaseTab li a:visited {
    text-decoration: none;
    color: #192b5b;
    display: block;
    cursor: pointer;
}

/* コントロールパネル */
.ctrl-panel {
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

.calendar-week {
    width: 700px;
    margin: 20px auto 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
    overflow: hidden;
}

.calendar-week p {
    background: #fed006;
    font-size: 16px;
    color: #192b5b;
    line-height: 40px;
}

.calendar-week a {
    display: block;
    width: 60px;
    margin: -40px 0 0;
    background: #fff;
    text-decoration: none;
    line-height: 40px;
    color: inherit;
    border: none;
    cursor: pointer;
}

.calendar-week a.prev {
    float: left;
    border-right: 1px solid #ddd;
}

.calendar-week a.prev::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border: 1px solid #192b5b;
    border-right: none;
    border-bottom: none;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
}

.calendar-week a.next {
    float: right;
    border-left: 1px solid #ddd;
}

.calendar-week a.next::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border: 1px solid #192b5b;
    border-left: none;
    border-top: none;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
}

#calendar .cursor::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin: 0 -5px 0 5px;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 10px solid transparent;
    border-left: 10px solid #192b5b;
}

.ctrls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 2em;
}

.product-counter {
    -webkit-box-flex: 50%;
        -ms-flex: 50%;
            flex: 50%;
    margin: 5px;
}

.adult-checker {
    -webkit-box-flex: 50%;
        -ms-flex: 50%;
            flex: 50%;
    margin: 5px;
    text-align: right;
}

/* 成人商材 スイッチ */
.switch {
    position: relative;
    display: inline-block;
    width: 2.5em;
    height: 1.5em;
}

.switch input { 
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 1.3em;
    width: 1.3em;
    left: 1.5px;
    bottom: 1px;
    background-color: white;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #ff99cc;
}

input:checked + .slider:before {
    -webkit-transform: translateX(1em);
    -ms-transform: translateX(1em);
    transform: translateX(1em);
}

.slider.round {
    border-radius: 1em;
}

.slider.round:before {
    border-radius: 50%;
}

/* 商材もっと見る */
.calender-more {
    display: block;
    margin: 15px 20px;
    border: 1px solid #192b5b;
    color: #192b5b;
    text-decoration: none;
    line-height: 3;
    font-size: 14px;
    text-align: center;
    position: relative;
}

.calender-more:after {
    position: absolute;
    width: 9px;
    height: 9px;
    top: -6px;
    right: 10px;
    bottom: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
    border-bottom: 1px solid #192b5b;
    border-right: 1px solid #192b5b;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
        transform: rotate(45deg);
}

/* ページャー */
.pager {
    border-top: 1px solid #ddd;
    font-size: 12px;
    color: #666;
    text-align: center;
}

.pager ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    padding: 13px 0;
}

.pager ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2em;
    font-size: 14px;
    margin: 0 2px 0;
    color: #192b5b;
    border: 1px solid #ddd;
    line-height: 22px;
}

.pager ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.pager ul li:not(.is-disabled) {
    cursor: pointer;
}

.pager ul li.is-disabled {
    cursor: default;
    pointer-events: none;
}

.pager ul li.active,
.pager ul li:nth-of-type(n).router-link-active {
    border: 1px solid #192b5b;
    background: #192b5b;
    color: #fff;
}

.pager ul li:first-child,
.pager ul li:first-child.router-link-active {
    width: 30px;
    padding-left: 5px;

    background: #fff;
    border: 1px solid #ddd;
    color: #192b5b;
}

.pager ul li:nth-child(2),
.pager ul li:nth-child(2).router-link-active {
    padding-left: 5px;

    background: #fff;
    border: 1px solid #ddd;
    color: #192b5b;
}

.pager ul li:nth-last-child(2),
.pager ul li:nth-last-child(2).router-link-active {
    padding-right: 5px;

    background: #fff;
    border: 1px solid #ddd;
    color: #192b5b;
}

.pager ul li:last-child,
.pager ul li:last-child.router-link-active {
    width: 30px;
    padding-right: 5px;

    background: #fff;
    border: 1px solid #ddd;
    color: #192b5b;
}

.pager ul li a,
.pager ul li a:active,
.pager ul li a:visited {
    text-decoration: none;
    color: #192b5b;
    display: block;
    cursor: pointer;
}

.arrow-prev::before,
.arrow-next::before,
.arrow-prev2::after,
.arrow-next2::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border: 1px solid #192b5b;
    position: relative;
    top: -1px;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
}

.arrow-prev::before,
.arrow-prev2::after {
    border-right: none;
    border-bottom: none;
}

.arrow-next::before,
.arrow-next2::after {
    border-left: none;
    border-top: none;
}

/* 商材リスト */
.item-container ul {
    margin: 0;
}

.release-item {
    margin: 10px 0;
    padding: 0 0 10px;
    border-bottom: 1px solid #ddd;
    overflow: hidden;
    position: relative;
}

.release-item a::after{
	float: right;
	position: absolute;
	width: 8px;
	height: 8px;
	top:0;
	bottom:0;
	right:8px;
	margin:auto;
	content:"";
	vertical-align: middle;
	border-top: 1px solid #192b5b;
	border-right: 1px solid #192b5b;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.release-item a {
    text-decoration: none;
    width: 100%;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.release-item:last-child {
    border-bottom: none;
}

/* 商材イメージ */
.item-left {
    box-sizing: border-box;
    padding-right: 20px;
    padding-left: 10px;
    width: 150px;
    height: 170px;
}

.item-left img {
    width:auto;
    height:auto;
    max-width:100%;
    max-height:100%;
    margin: 0 auto;
}

/* 商材情報 */
.item-right {
    box-sizing: border-box;
    width: calc(100% - 150px);
    padding-right: 10px;
}

.item-category {
    background: #eee;
    color: #666;
    display: inline-block;
    font-size: 12px;
    line-height: 12px;
    margin: 0 0 5px;
    padding: 5px 6px 4px;
    text-align: center;
}

.item-rsv
{
    background: #00d200;
    color: #fff;
    display: inline-block;
    font-size: 12px;
    line-height: 12px;
    margin: 0 0 5px;
    padding: 5px 6px 4px;
    text-align: center;
}

.item-rsv-end
{
    background: #808080;
    color: #fff;
    display: inline-block;
    font-size: 12px;
    line-height: 12px;
    margin: 0 0 5px;
    padding: 5px 6px 4px;
    text-align: center;
}

.item-right h2 {
    color: #000000;
    font-size: 20px;
}

.item-data {
    position: relative;
    min-height: 120px;
}

.item-detail {
    margin: 5px 0px 0px;
    color: #666;
    font-size: 14px;
}

.item-detail dt {
    width: 8.5em;
    float: left;
    position: relative;
}

.item-detail dt::after {
    content:'：';
    position: absolute;
    right: 0;
}

.item-detail dd {
    margin: 0 0 0 9em;
}

.item-link {
    position: absolute;
    right: 15px;
    bottom: 10px;
}

.item-link button {
    height: 50px;
    margin: 0 auto 10px;
    width: 200px;
}

.item-link button div.loading {
    width: 100%;
    height: 30px;
    background-image: url(/cmn/img/loader.gif);
    background-size: 30px;
    background-position: center center;
    background-repeat: no-repeat;
}

.item-link button.alertBtn {
    font-size: 14px;
}

.item-link button.alertDoneBtn {
    background-color: #ddd;
    color: #192B5B;
    font-size: 14px;
}

.no-release {
    text-align: center;
    font-size: 20px;
    padding: 30px;
}

/* 共通 modal */
.modal.modal-overlay
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;

    background: rgba(0, 0, 0, .5);
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.modal-window
{
    background: #fff;
    border: #47557C 5px solid;
    overflow: hidden;
    padding: 30px;
    width: 480px;
}

.modal-content
{
    text-align: center;
}

.modal-content h3
{
    border-bottom: 1px solid #ddd;
    color: #192b5b;
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 20px;
    padding: 0 0 20px;
}

.modal-content p
{
    color: #666;
    font-size: 14px;
    text-align: left;
}

.rental .modal-content p.mailadress {
    border-bottom: 1px solid #DDDDDD;
    color: #192B5B;
    font-size: 16px;
    text-align: center;
    margin: -10px 0 0 0;
    padding: 0 0 10px;
    word-break: break-all;
    word-wrap: break-word;
}

.modal-content .caution
{
    color: #192b5b;
    font-size: 24px;
    margin: 20px 0 10px;
}


.modal-content a.arrow-link,
.modal-content button.arrow-link {
    color: #192b5b;
}

.modal-content button.arrow-link::after {
    border-left: 4px solid #192b5b;
    border-bottom: 4px solid transparent;
    border-top: 4px solid transparent;
    content: '';
    display: inline-block;
    height: 4px;
    width: 4px;
}

.modal-content .arrow-link::before {
    border-left: 4px solid #192b5b;
    border-bottom: 4px solid transparent;
    border-top: 4px solid transparent;
    content: '';
    display: inline-block;
    height: 4px;
    margin: 0 4px 0 0;
    width: 4px;
}


.modal-content a:link{
    color: #192b5b;
    text-decoration: none;
}

.modal-footer
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 64px 0;

    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.modal-footer button
{
    cursor: pointer;
    height: 40px;
    width: 120px;
}

.modal-footer button:hover
{
    opacity: .7;
    text-decoration: none!important;
}

.modal-footer button.negative
{
    background: #fff;
    border: 1px solid #ddd;
    color: #192b5b!important;
}

.modal-footer button.positive
{
    background: #192b5b;
    border: none;
    color: #fff!important;
}

.modal-enter-active .modal-window,
.modal-leave-active .modal-window
{
    -webkit-transition: opacity 0.4s, -webkit-transform 0.4s;
    transition: opacity 0.4s, -webkit-transform 0.4s;
    -o-transition: opacity 0.4s, transform 0.4s;
    transition: opacity 0.4s, transform 0.4s;
    transition: opacity 0.4s, transform 0.4s, -webkit-transform 0.4s;
}

.modal-leave-active
{
    -webkit-transition: opacity 0.6s ease 0.4s;
    -o-transition: opacity 0.6s ease 0.4s;
    transition: opacity 0.6s ease 0.4s;
}

.modal-enter,
.modal-leave-to
{
    opacity: 0;
}

.modal-enter .modal-window,
.modal-leave-to .modal-window
{
    opacity: 0;

    -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
            transform: translateY(-20px);
}

/* 成人認証 modal */
.adult .modal-window
{
    background: #fff;
    border: #f9c 5px solid;
    overflow: hidden;
    padding: 30px;
    width: 480px;
}

.adult .modal-content p
{
    text-align: center;
}

.adult .modal-content h3
{
    color: #f9c;
    font-weight: normal;
}

.adult .modal-content .caution
{
    color: #ff99cc;
}

/* レンタル開始確認 modal */
.rental .modal-content p {
    padding: 10px 0;
}

/* レンタル開始受付完了 modal */
.rental_done .modal-content p {
    padding: 4px 0;
}

/* レンタル開始受付解除 modal */
.rental_release .modal-content p {
    padding: 4px 0;
}

/* CSSスタッキング対策 */
#contentsWrapper.onTransition {
    position: relative;
    z-index: 1;
}
