/* ------------------------------------------------

    reservation

--------------------------------------------------- */
/* ------------------------------------------------
    共通 Header
--------------------------------------------------- */
.site-header {
    display: none;
}
.content-area {
    padding-top: 0;
}
/* ------------------------------------------------
    共通 Footer
--------------------------------------------------- */
body footer {
    display: none;
}

/* ------------------------------------------------
    スライダー
--------------------------------------------------- */
.reservation .reservation-content {
    width: 100%;
	height: 100vh;
    position: relative;
    overflow: hidden;
}
.reservation .slick-slider {
    /*width: 100%;
    height: 100vh;*/
}
.reservation .slick-slider img {
	height: 100vh;
	margin: auto;
	max-height: 100%;
	max-width: 100%;
	object-fit: cover;
	width: 100%;
    filter: brightness(70%);
}


/* ------------------------------------------------
    コンテンツ （店舗選択ページ）
--------------------------------------------------- */
.reservation .reservation-content .info {
	position: fixed;
    width: 100%;
    height: auto;
    top: 50%;
    overflow: auto;
    transform: translateY(-50%);
}
.reservation .reservation-content .info .inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
	border-bottom: none;
}
.reservation .reservation-content .info .logo img {
    width: 100px;
    height: auto;
}
.reservation .reservation-content .info h2 {
    margin: 0;
    font-family: "Helvetica Neue LT Bold", Helvetica, Arial, sans-serif;
    color: #ffffff;
    font-size: 32px;
    font-weight: bold;
    text-align: left;
    line-height: 1.6;
}
.reservation .reservation-content .info p {
    color: #ffffff;
    font-size: 16px;
    font-weight: normal;
    text-align: left;
}
/* ------------------------------------------------
    form
--------------------------------------------------- */
.reservation form {
	margin-bottom: 80px;
}
.reservation form label {
    font-size: 16px;
    display: block;
    color: #ffff;
}
.reservation form select {
    color: #000;
    font-size: 16px;
    border: solid 1px #e6e6e6;
    margin-top: 0.6em;
    padding: 1em 1.5em;
    -webkit-appearance: none;
    appearance: none;
}
.reservation form button#reserve-button {
    display: block;
    margin: 40px 0 0;
    padding: 1em 3em;
    width: 180px;
    height: 50px;
    border-radius: 0;
    background: none;
    border: 1px solid #fff;
    font-weight: bold;
}
.reservation form button#reserve-button:hover {
    background: #505759;
    border: 1px solid #505759;
}
.reservation form button#reserve-button:disabled {
    pointer-events: none;
    /* background: none; */
    opacity: 0.4;
    cursor: not-allowed;
    /* border: 1px solid #fff; */
}
.reservation form button#reserve-button:disabled:hover {
    background-color: initial;
    color: initial; 
}
/* ------------------------------------------------
    コンテンツ （店舗予約ページ）
--------------------------------------------------- */
.reservation section.reservation-content.shop {
    display: flex;
    flex-direction: row;
}
.reservation section.reservation-content.shop .slick-slider {
    width: 50%;
    height: 100%;
}
.reservation section.reservation-content.shop .shop-info {
    width: 50%;
    height: 100%;
    display: block;
    overflow: scroll;
}
.reservation section.reservation-content.shop .logo {
    position: absolute;
    top: 52px;
    left: 87px;
}
.reservation section.reservation-content.shop .logo img {
    width: 99px;
    height: auto;
}
/* 埋め込みフォーム側の調整*/
.calendly-inline-widget {
    position: relative;
    padding-bottom: 0;
    height: 100%;
    overflow: hidden;
}
.calendly-inline-widget iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 1200px) {
	.reservation .reservation-content .info .inner {
		margin: 0 24px;
	}
    .reservation section.reservation-content.shop .logo {
        top: 35px;
        left: 56px;
    }

}

@media screen and (max-width: 1079px) {
    /* ------------------------------------------------
        コンテンツ （店舗選択ページ）
    --------------------------------------------------- */
    .reservation .reservation-content .info .inner {
        padding: 0;
        gap: 20px;
    }
    .reservation .reservation-content .info .logo img {
    width: 80px;
    height: auto;
    }
    .reservation .reservation-content .info h2 {
        font-size: 24px;
    }
    /* ------------------------------------------------
        コンテンツ （店舗予約ページ）
    --------------------------------------------------- */

	.reservation section.reservation-content.shop {
		height: initial;
		flex-wrap: wrap;
	}
    .reservation section.reservation-content.shop .slick-slider {
        width: 100%;
		height: 400px;
    }
    .reservation section.reservation-content.shop .slick-slider img {
        height: 400px;
    }
    .reservation section.reservation-content.shop .logo {
        left: 25px;
    }
	.reservation section.reservation-content.shop .shop-info {
        width: 100%;
        /* height: 2500px; */
		padding: 28px;
    }
    /* ------------------------------------------------
        form
    --------------------------------------------------- */
    .reservation form {
        margin-bottom: 0;
    }

}
@media screen and (max-width: 767px) {
    .reservation .reservation-content .info p {
        font-size: 14px;
    }
   
}
