@charset "utf-8";
media (max-width: 1024px) {
    .main-visual {
        padding-top120px;
        pading-bottom: 80px;
    }
    .top-title {
        font-size: 60px;
    }
}
@media (max-width: 670px){
    .header-left {
        display: none;
    }
    .header-right {
        float: none;
        text-align:center;
    }
    .header-right a {
        font-size: 14px;
    }
    .main {
        padding: 60px 0;
    }
    .main-image {
        width: 280px;
    }
    .main p {
        font-size: 13px;
    }
    .footer-right {
        padding-top: 20px;
    }
}
* {
    margin: 0;
    padding: 0;
}
.header {
    height: 56px;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 0 10px black;
    background-color: rgba(252, 255, 253, 0.295);
    position: fixed;
    top: 0;
    background: linear-gradient(90eg, #4db1ec, #a2e29b); 
}
.header-left {
    float: left;
}
.header-right {
    float: right;  
    font-family: zen-maru-gothic, sans-serif;  
    display: flex;
    background-color: rgba(252, 255, 253, 0.295);
}
.details {
	transition: .3s;
	overflow: hidden;
	margin-top: -10px;
	padding-bottom: 20px;
	&:last-of-type {
		margin-bottom: 0;
	}
}
.details[open] {
	margin-top: 0;
	padding-bottom: 10px;
} 
.details-summary {
	display: block;
	padding: 15px;
    transition: .3s;
	transform: translateY(10px);
	background-color: rgba(252, 255, 253, 0.295);
	font-size: 16px;
	font-weight: bold;
	color: rgb(99, 99, 99);
	&:hover {
		cursor: pointer;
	}
}
.details-summary::-webkit-details-marker {
	display: none;
}
.details[open] .details-summary {
	transform: translateY(0);
}
.details-content {
	padding: 20px;
	background-color: rgba(252, 255, 253, 0.295);
	border-bottom: 2px rgb(212, 212, 212);
	border-left: 2px rgb(212, 212, 212);
	border-right: 2px rgb(212, 212, 212);
}

.clear{
    clear: both;
}
.header-logo {
    text-align: center;
    height: 40px;
    margin-top: 10px;
}
.header-right a {
    text-decoration: none;
    line-height: 28px;
    color: rgb(99, 99, 99);
    margin-left: 5px;
    font-size: 16px;
    padding: 12px 20px; 
}
.header-right a:hover {
    background-color: rgb(212, 212, 212);
    transition: background-color 0.5s;
}
.container {
    text-align: center;
    max-width: 980px;
    padding: 0 30px;
    margin-left: auto;
    margin-right: auto;
}
.menu {
    padding: 90px 0 60px;
    color: #5a5c5f;
    font-family: zen-maru-gothic, sans-serif;
} 
.menu-card {
    width: 33%;
    margin-top: 35px;
    font-family: zen-maru-gothic, sans-serif;
}
.menu-card-innner {
    padding:25px 30px;
    border-radius: 7px;
    background-color: gainsboro;
    box-shadow: 1px 1px 4px #6f6f70;
    text-align: center;
    margin: 0 50px;
}
.menu-image {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 5px;
}
.menu-title {
    margin-bottom: 8px;
}
.menu-text {
    font-size: 14px;
}
.menu-card-wrapper {
    display: flex;
    flex-wrap: wrap;
}