/* jsCalendar customize */

div#calendar.jsCalendar {
    display: flex;
    justify-content: center;
}

.jsCalendar tbody td,
.jsCalendar thead .jsCalendar-week-days th {
    border-radius: 18px;
    cursor: default;
    display: inline-block;
    font-size: 12px;
    font-weight: lighter;
    height: 95px !important;
    line-height: 95px !important;
    margin: 1px 2px;
    text-align: center;
    transition: color .1s, background-color .2s;
    width: 95px !important;
}

.price-inside-day {
    position: absolute;
    top: 30%;
    width: 100%;
    height: 70%;
}


/* The Modal (background) */

.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 9999;
    /* Sit on top */
    padding-top: 50px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
}


/* Modal Content */

.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 80%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    animation-name: animatetop;
    animation-duration: 0.4s;
    max-height: 400px;
    overflow-y: scroll;
    overscroll-behavior: contain;
}

body.modal-open {
    overflow: hidden;
}


/* Add Animation */

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }
    to {
        top: 0;
        opacity: 1
    }
}


/* The Close Button */

.close {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
    padding: 2px 16px;
    background-color: #5cb85c;
    color: white;
}

.modal-body {
    padding: 2px 16px;
}

.modal-footer {
    padding: 2px 16px;
    background-color: #5cb85c;
    color: white;
}

.block-contents {
    width: 100vw;
}

.block-sidebar {
    float: right;
    width: 25vw;
}

.block-detail {
    float: left;
    width: 75vw;
}

.detail-slide__container {
    display: grid;
}

.swiper-container {
    max-width: 100%;
}

.detail-box__container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: #ffee02;
}

.detail-box__container>div {
    display: flex;
    align-items: flex-start;
    background: #ffffff;
}

.detail-content__container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    margin: 30px;
}

.detail-content__left {
    width: 65%;
    margin: 20px;
}

.detail-content__right {
    min-width: 300px;
    margin: 20px;
}

.detail-content__title {
    text-align: left;
    background-size: auto auto;
    background-color: #e6ebee;
    /* background-image: repeating-linear-gradient( 
45deg, transparent, transparent 6px, rgb(179 179 179) 6px, rgb(179 179 179) 7px); */
    padding: 15px 20px 15px 40px;
    /* border-bottom: 10px solid #fef000; */
    font-weight: bold;
    font-size: 1.2em;
	margin-top: 0px;
}

@media screen and (max-width:780px) {
	.jsCalendar tbody td, .jsCalendar thead .jsCalendar-week-days th {
    border-radius: 18px;
    cursor: default;
    display: inline-block;
    font-size: 14px!important;
    font-weight: lighter;
    height: 75px !important;
    line-height: 75px !important;
    margin: 1px 2px;
    text-align: center;
    transition: color .1s, background-color .2s;
    width: 75px !important;
}
	.price-inside-day {
    font-size: 14px;
}
}

@media screen and (max-width:600px) {
	.jsCalendar tbody td, .jsCalendar thead .jsCalendar-week-days th {
    border-radius: 18px;
    cursor: default;
    display: inline-block;
    font-size: 12px!important;
    font-weight: lighter;
    height: 50px !important;
    line-height: 50px !important;
    margin: 1px 2px;
    text-align: center;
    transition: color .1s, background-color .2s;
    width: 50px !important;
}
	.price-inside-day {
    font-size: 12px;
}
	.price-inside-day::after {
    content: "円";
    font-size: 0.8em;
}
}
@media screen and (max-width:420px) {
	.price-inside-day::after {
		display: none;
	}
	.jsCalendar tbody td, .jsCalendar thead .jsCalendar-week-days th {
    border-radius: 18px;
    cursor: default;
    display: inline-block;
    font-size: 12px!important;
    font-weight: lighter;
    height: 45px !important;
    line-height: 45px !important;
    margin: 1px 2px;
    text-align: center;
    transition: color .1s, background-color .2s;
    width: 45px !important;
}
	.price-inside-day {
    font-size: 11px;
}
	.jsCalendar table{
		    margin: 5px 0px;
	}
}