@charset "UTF-8";

*,
*::before,
*::after {
    box-sizing: border-box;
}
html {
    height: 100%;
}
body {
    margin: 0;
    padding: 0;
    font-family: "M PLUS 1p", sans-serif;
    text-align: justify;
    overflow-wrap: break-word;
}
h1,
h2 {
    margin: 0;
    padding: 0;
    line-height: 1;
}
img {
    display: block;
    margin: 0 auto;
    vertical-align: bottom;
}
a {
    display: block;
    color: #555;
    text-decoration: none;
    transition: opacity .3s ease;
}
a:hover {
    opacity: .7;
}

@media (min-width: 801px) {
    .pc_none {
        display: none;
    }
}

@media (max-width: 800px) {
    .sp_none {
        display: none;
    }
}

/* =========================== */
.reserve-wrapper{
	background-color: #F2DEBA;
}

.reserve-date-wrap{
	display:flex;
	justify-content:center;
	align-items:center;
	gap:20px;
	margin-bottom:30px;
	align-items:center;
	padding-top: 20px;
}

.reserve-date{
	text-align: center;
	position: relative;
	display: inline-block;
}
.reserve-date select{
	width: 140px;
	padding: 10px 10px 10px 15px;
	font-size: 14px;
	font-weight: 700;
	border: 1px solid #ccc;
	border-radius: 999px;
	background: #fff;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}
.reserve-date::after{
	content: "▼";
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
	font-size: 12px;
	color: #666;
}

.reserve-date-arrow{
	font-size:32px;
	font-weight:bold;
	line-height:1;
	color:#333;
}
.reserve-date-arrow-hidden{
	visibility: hidden;
}

.reserve-list{
	margin: 0 auto;
	max-width: 860px;
	display: grid;
	grid-template-columns: repeat(auto-fill, 200px);
	gap: 20px;
	justify-content: center;
}
.reserve-mem-assy{
	max-width: 200px;
	font-size: clamp(12px, 2vw, 15px);
	color: #333;
	background-color: #fff;
	text-align: center;
	
	display: flex;
	flex-direction: column;
}
.reserve-mem-pic{
	width:100%;
	aspect-ratio: 2 / 2.5;
	background-color: red;
	overflow: hidden;
}
.reserve-mem-pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.reserve-mem-names{
	padding: 10px 0;
	background-color: #fff;
}
.reserve-mem-specs{
}

.reserve-mem-places{
	color:#fff;
	padding:5px;
}

.place-01{
	background:#e74c3c;
	margin: 0 10px;
	border-radius: 20px;
}
.place-02{
	background:#3498db;
	margin: 0 10px;
	border-radius: 20px;
}
.place-03{
	background:#33DC53;
	margin: 0 10px;
	border-radius: 20px;
}
.place-other{
	background:#777;
	margin: 0 10px;
	border-radius: 20px;
}

.reserve-mem-times{
	background-color: #fff;
}
.reserve-mem-comments{
	padding: 10px;
	font-size: 0.9em;
	text-align: left;
}
.reserve-mem-button{
	margin: auto 10px 10px;
	padding: 10px 0;
	border-radius: 10px;
	background-color: antiquewhite;
}

@media screen and (max-width: 650px){

	.reserve-list{
		grid-template-columns: repeat(2, 1fr);
		width:100%;
		max-width:none;
		gap:10px;
	}
	.reserve-mem-assy{
		max-width:none;
		width:auto;
	}
	.reserve-mem-pic{
		max-width:none;
		width:100%;
	}
}












/* ==================== reserve.php ==================== */
.person-wrapper{
	background-color: #F2DEBA;
}
.person-container{
	margin: 0 auto;
	max-width: 860px;
	justify-content: center;
	background-color: greenyellow;
}
.person-charadata{
	width: 100%;
	display: flex;
}
.person-pic{
	width: 120px;
	height: 150px;
	overflow: hidden;
	background-color: red;
}
.person-pic img{
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}
.person-text{
	background-color: lightgreen;
}
.person-text-name{
	display: block;
	background-color: gold;
}












