@charset "UTF-8";

/* custom size */
body {
	font-size: clamp(14px, 4vw, 18px);
	font-family: var(--font-main, 'Noto Sans JP', sans-serif);
}

/* ============================================
背景パターン設定（CSS変数）
ユーザーが選択した背景パターンをbody全体に適用
============================================ */

body{
	background-color: light-dark(#aaa, #333);
	background-image: var(--bg-pattern, none);
	color: light-dark(#333, #e0e0e0);
}

/* header */
#head_mv{
	height: min(300px,50vw);
	background-color: #333;
	background-position: center top;
	background-repeat: repeat;
	background-size: auto 100%;
	position: relative;
}
#head_mv .shop_slogan{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	font-size: 0.85em;
	text-align: justify;
	padding: 0.5em 1em;
	font-weight: bold;
	color: light-dark(#333, #e0e0e0);
	background-color: light-dark(rgba(255,255,255,.7), rgba(0,0,0,.55));
	text-shadow: light-dark(1px 1px 2px #fff, 1px 1px 2px #000);
}
#head_mv .shop_slogan span{
	display: block;
	max-width: 1200px;
	margin: 0 auto;
}
/* #head_mv_after{
	height: .25em;
	background-position: center bottom;
} */

#header{
	position: sticky;
	top: 0;
	z-index: 10;
	background-color: light-dark(#f6f6f6, #1a1a1a);
	box-shadow: 0 1px 3px light-dark(rgba(0,0,0,0.15), rgba(0,0,0,0.4));
}
#head_nav{
	display: flex;
	align-items: center;
	max-width: 1200px;
	margin: auto;
	padding: .5em;
}
#head_nav .shop_logo{
	padding-right: 1em;
}
#head_nav .shop_logo img{
	max-width: min(180px,32vw);
	max-height: min(80px,18vw);
}
#head_nav ul{
	display: flex;
	flex-wrap: wrap;
	gap: .5em;
}
#head_nav ul a{
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 0.15em;
	padding: 0.5em 0.75em;
	font-weight: 600;
	background-color: light-dark(#e0e0e0, #505050);
	color: light-dark(#333, #eee);
	border: 1px solid light-dark(#aaa, #666);
	border-radius: 3px;
}
#head_nav ul a:hover{
	background-color: light-dark(#d0d0d0, #606060);
}
#head_nav ul a .material-symbols-outlined{
	font-size: 1.4em;
}
@media (max-width: 767px) {
	#head_nav{
		padding: .5em .25em;
	}
	#head_nav .shop_logo{
		padding-right: .5em;
	}
	#head_nav ul{
		gap: .25em;
	}
	#head_nav ul:has(> :nth-child(5)) li:first-of-type{
		display: none;
	}
	#head_nav ul > li{
		width: calc(50% - 0.25em);
	}
	#head_nav ul > li a{
		padding: .25em .35em;
		font-size: 0.9em;
	}
}

/* #head_address{
	font-size: 0.9em;
	position: relative;
}
#head_address::before{
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.3);
}
#head_address address{
	padding: .5em 1em .6em;
	display: block;
	max-width: 1200px;
	margin: auto;
	position: relative;
	z-index: 2;
}
#head_address .shop_tel + .shop_tel{
	margin-left: 1em;
} */

.breadcrumbs{
	position: absolute;
	top: 0;
	left: 0;
	font-size: 0.75rem;
	padding: 1em;
}
.breadcrumbs ul{
	color: #fff;

    display: block;
	max-width: 90vw;
	max-width: calc(100vw - 2em);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    /* flex-grow: 1; */
}
.breadcrumbs li {
  display: inline;
  list-style: none;
}
.breadcrumbs li:after {
  content: '>';
  padding: 0 0.2em;
}
.breadcrumbs li:last-child:after {
  content: '';
}
.breadcrumbs li a:hover {
  text-decoration: underline;
}

/* footer */
#footer{
	background-color: #111;
	background-image: var(--bg-pattern, none);
	position: relative;
}
/* #footer::before{
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.5);
} */
#foot_content{
	padding: 1.5em 1em;
	max-width: 1200px;
	margin: auto;
	color: #fff;
	position: relative;
	z-index: 2;
}
#foot_content .shop_photo{
	text-align: center;
	margin-bottom: 1em;
}
@media (min-width: 768px) {
	#foot_content{
		display: flex;
		/* align-items: center; */
	}
	#foot_content .shop_photo{
		margin-right: 1.5em;
		margin-bottom: 0;
	}
	#foot_content .shop_photo img{
		max-width: 300px;
	}
}
#foot_content .shop_data{

}
#foot_content .shop_data .shop_name{
	font-size: 1.2em;
	padding-bottom: 0.5em;
	margin-bottom: 0.5em;
	border-bottom: #fff solid 1px;
}
#copyright{
	font-size: 0.9rem;
	text-align: center;
	padding: .75em;
	background-color: light-dark(#aaa, #000);
	color: light-dark(#444, #aaa);
	position: relative;
	z-index: 2;
}
@media (max-width: 767px) {
	#copyright small{
		display: block;
	}
}

/* content */
#content{
	padding: 1.5em;
	width: calc(100% - 3em);
	max-width: 1200px;
	margin: 1.5em auto 2em;
	background-color: light-dark(#fff, #222);
	box-shadow: 0 1px .25em rgba(0,0,0,.25);
}
@media (max-width: 767px) {
	#content{
		margin-top: 0.5em;
		width: calc(100% - 1em);
		padding: 0.75em;
	}
}

/* ============================================
緊急お知らせバナー
============================================ */
#shop-notice-banner{
	background-color: #d9534f;
	color: #fff;
	padding: 0.75em 1em;
}
#shop-notice-banner .shop-notice-content{
	max-width: 1200px;
	margin: auto;
	display: flex;
	align-items: flex-start;
	gap: 0.5em;
	font-weight: 600;
}
#shop-notice-banner .shop-notice-content .material-symbols-outlined{
	flex-shrink: 0;
	font-size: 1.5em;
}
