@charset "utf-8";
@media screen and (max-width:767px){
*{
	margin: 0;
	padding: 0;
}
.pc{
	display: none;
}
img{
	display: block;
	border: none;
	width: 100%;
	height: auto;
}
a{
	text-decoration: none;	
}
a:hover{
	opacity: 0.7;
}
ul, li{
	list-style-type: none;
}
#header-upper{
	width: 100%;
	height: 75px;
	background-color: rgba(0,0,0,0.48);
	border-bottom: 1px solid #FFF;
}
#header-logo{
	margin-left: auto;
	margin-right: auto;
	padding-top: 5px;
	width: 20%;
	height: auto;
}
#nav-toggle{
	width: 30px;
	height: 25px;
	margin-top: 5px;
	position: fixed;
	z-index: 1000;
	top: 20px;
	left: 5%;
}
#nav-toggle>div{
	position: relative;
	width: 100%;
	height: 100%;
}
#nav-toggle span{
	width: 100%;
	height: 2px;
	background: #fff;
	display: block;
	position: absolute;
	transition: 0.5s;
}
#nav-toggle span:nth-child(1){
	top: 0;	
}
#nav-toggle span:nth-child(2){
	top: 10px;	
}
#nav-toggle span:nth-child(3){
	top: 20px;	
}
.open #nav-toggle span:nth-child(1){
	top: 10px;
	transform: rotate(45deg);
}
.open #nav-toggle span:nth-child(2){
	opacity: 0;	
}
.open #nav-toggle span:nth-child(3){
	top: 10px;	
	transform: rotate(-45deg);
}
#hamburger-menu{
	width: 100%;
	height: 100vh;
	background-color: #f3f0ec;
	position: fixed;
	top: 0;
	left: 0;
	transform: translateY(-100vh);
	transition: 0.5s;
	z-index: 1000;
	visibility: hidden;
	opacity: 0;
	display: flex;
	flex-direction: column;
}
.open #hamburger-menu{
	transform: translateY(0);
	visibility: visible;
	opacity: 1;
}
#submenu{
	order: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}
#submenu li{
	margin-bottom: 10px;
}
#submenu li a{
	color: #000;	
}
#submenu li a:hover{
	opacity: 0.5;
}
#menu-list{
	order: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	margin-top: 80px;
}
#menu-list li{
	margin-bottom: 10px;
}
#menu-list li a{
	color: #000;
}
#menu-list li a:hover{
	opacity: 0.5;
}
h2{
	text-align: center;
	margin-top: 100px;
	font-size: 30px;
}
h2 span{
	font-size: 18px;
}
#contact-formArea{
	display: flex;
	margin: 50px auto;
	margin-bottom: 150px;
	width: 80%;
    gap: 7%;
}
#contact-formArea img{
	width: 45%;
}
table{
	margin: 0 auto;
}
table tr{
	margin: 0 auto;
    display: grid;
}
table td, table th {
    padding-bottom: 10px;
	margin: 0 auto;
}
table th{
	font-size: 18px;
	text-align: right;
    padding-right: 20px;
    color:#5C5C5C;	
}
table th span{
	margin-left: 5px;
	font-size: 12px;
	color: red;
}
table td input{
	height: 30px;
	width: 150px;
}
.form-button{
  justify-content: center;
  display: grid;
  margin: 40px auto;
  background-color: #000; 
  color: white;               
  border: none;               
  padding: 20px 80px;         
  font-size: 16px;             
  border-radius: 5px;         
  cursor: pointer;             
  transition: background-color 0.3s ease; 
}
.form-button:hover {
  background-color: #999; 
}
footer {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		height: auto;
		padding: 20px;
		text-align: center;
		position: static;
		margin-top: 50px;
		background-image: url("/LealeaHotel/common/image/footerimg.jpeg");
}
footer ul, #reservation_box, #privacy {
		position: static;
		margin: 20px 0;
}
footer ul {
	justify-content: center;
	display: flex;
	width: 30%;
}
footer ul li{
	margin-left: 5%;
}
.reservation{
	padding: 7px;
	color: #999;
}
#reservation_box{
	width: 55%;
    margin-left: 11%;
    margin-right: 6%;
    margin-top: 20px;
    background-color: #f2f2f2;
    padding: 10px;
    box-shadow: 4px 2px 4px 2px #a0a0a0;
    border: 1px solid #8d8d8d;
}
#privacy {
	transform: none;
}
}