:root {
	/* 基本フォントカラー */
	color: #fff;
	background: linear-gradient(#111, #000, #333);
}

* {
	margin: 0px;
	padding: 0px;
}

.left { text-align: left; }
.center { text-align: center; }
.right { text-align: right; }
.margin-center { margin: 0px auto; }
.flex-center {
	display: flex;
	justify-content: center;
}
.bold { font-weight: bold; }

.sample {
	text-align: center;
	font-size: 13px;
}
.sample a {
	color: #12ebff;
}

/** ヘッダ ****************************************/
header {
	margin-bottom: 50px;
	animation-name: header-key;
	animation-duration: 10s;
	animation-iteration-count: infinite;
}
@keyframes header-key {
	0% { filter:drop-shadow(0px 0px 2vw #aaa); }
	50% { filter:drop-shadow(0px 0px 2vw #ccc); }
	100% { filter:drop-shadow(0px 0px 2vw #aaa); }
}
.logo {
	margin: 30px 0px;
	text-align: center;
}


/** メニュー **************************************/
nav {
	margin: 0px 20px;
	display: flex;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
	font-family: ta-kouran;
	font-size: 2em;
}
nav > div {
	border: 1px solid #ddd;
}
nav > div:nth-child(1) {
	background-color: #ddd;
	color: #000;
	font-weight: bold;
	text-align: center;
	padding: 10px;
}
nav a {
	color: #fff;
	text-decoration: none;
	display: block;
	text-align: center;
	padding: 10px;
}
nav a:hover {
	transition-duration: .3s;
	background-color: #ddd;
	color: #000;
}
.category-name {
	font-family: ta-kouran;
	font-size: 3em;
	width: 100%;
	text-align: center;
	margin-bottom: 50px;
	font-weight: normal;
}

.info-midashi {
	font-family: ta-kouran;
	font-size: 3em;
	text-align: center;
}
.info {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
	margin: 20px 10px 50px 20px;
}
.info-title {
	margin: 10px 0px;
	text-align: center;
}
.info-image {
	transition: transform 0.1s linear;
}
.info-image img {
	border-radius: 10px;
}
.info-image:hover{
	transform: scale(1.05);
}
.info a {
	color: #fff;
	text-decoration: none;
}
.info-text {
	margin-top: 50px;
	text-align: center;
	font-size: 2em;
}

/** メインコンテンツ ****************************/
main {
	margin-top: 50px;
}

.phone {
	font-size: 2.5em;
}

/** 地図 **************************************/
#map {
	width: 100%;
	height: 40vh;
	background-color: #fff;
}


/** 臨時休業 **************************************/
.holiday {
	text-align: center;
	margin: 25px;
}
.holiday > p {
	background-color: #333;
	border: 2px solid #fbff8a;
	border-radius: 5px;
	padding: 10px;
	display: inline-block;
	text-align: center;
}

/** フッタ ****************************************/
footer {
	margin-top: 100px;
	text-align: center;
}
footer a {
	color: #fff;
}
.copyright {
	margin: 20px 0px;
	text-align: center;
}


/** モーダル ****************************************/
#modal-bg {
	height: 100%;
	width: 100%;
	background-color: #000000bb;
	position: fixed;
	display: none;
	z-index: 1;
}
#goods-modal {
	padding: 10px;
	background-color: #333;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#goods-modal > div:nth-child(2) {
	margin-bottom: 5px;
	text-align: right;
	color: #fff;
}
#goods-modal img {
	max-width: 85vw;
	max-height: 85vh;
}
#modal-name {
	position: absolute;
	font-size: 1.3em;
}
#modal-price {
	background-color: #666;
	padding: 5px;
	text-align: right;
}
#modal-text {
	padding: 5px;
}


/* 問い合わせ */
.contact-text {
	width: 700px;
	height: 200px;
}
.ajax-message {
	font-size: 1.4em;
	padding-left: 10px;
	color: #fff;
}
