
@media all and (min-width: 750px){
    .programplan_SP table{
        display:none;
    }

    .programplan_PC table{
        padding : 10px 20px 10px 20px;
    }
    .programplan_PC table th{
        width : auto;
    }
    .programplan_PC table th:first-child{
        width : 20%;
    }
    .programplan_PC table th:last-child{
        width :auto;
    }
    .programplan_PC table td{
        width : auto;
    }
    .programplan_PC table td:first-child{
        width : 20%;
    }
    .programplan_PC table td:last-child{
        width : auto;
    }

}

@media all and (max-width: 750px){
    .programplan_PC table{
        display:none;
        font-size : 1rem;
    }

    .programplane_SP table th {
        width :50%;
        font-size : 1rem;
    }
    .programplane_SP table td {
        width :50%;
        font-size : 1rem;
    }

    .programplan_SP table th:first-child{
        width : 50%;
        font-size : 1rem;
    }
    .programplan_SP table td:first-child,
    .programplan_SP table td:last-child{
        width : 50%;
        font-size : 1rem;
    }
}

@media all and (max-width: 750px){
.reservemenu table{
    font-size : 1rem;
}
}



/*==================================================*/
/* pop up menu css */

.open {
	cursor:pointer; /* マウスオーバーでカーソルの形状を変えることで、クリックできる要素だとわかりやすいように */
}
#pop-up {
	display: none; /* label でコントロールするので input は非表示に */
}
.overlay {
	display: none; /* input にチェックが入るまでは非表示に */
}
#pop-up:checked + .overlay {
	display: block;
	z-index: 9999;
	background-color: #00000070;
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
}
.window {
	width: 90vw;
	max-width: 680px;
	height: 480px;
	background-color: #ffffff;
	border-radius: 6px;
	display: flex;
	justify-content: center;
	align-items: center;

    
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.text {
	font-size: 18px;
	margin: 0;
}
.close {
	cursor:pointer;
	position: absolute;
	top: 4px;
	right: 4px;
	font-size: 20px;
}