@charset "utf-8";

/* -------------------------------------- */
/* 基本設定------------------------------- */
/* -------------------------------------- */

*,
::before,
::after {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

ul,
ol {
	list-style-type: none;
}

a {
	/* 親要素の色を継承 */
	color: inherit;
	text-decoration: none;
}

body {
	font-family: sans-serif;
	font-size: 16px;
	color: #000;
	line-height: 1;
	background-color: #fff;
}

/* 画像が親要素の幅を超えないようにする */
img {
	max-width: 100%;
}

/* -------------------------------------- */
/* 背景固定------------------------------- */
/* -------------------------------------- */

.background-fix {
   position: relative;
   height: 300px;
}
.background-fix-inner {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   clip-path: inset(0);
}
.background-fix-img {
   position: fixed;
   top: 0;
   left: 0;
   width: 100vw;
   height: 100vh;
   background-size: cover;
   background-position: center;
   z-index: -10;
}

/* --------------------------------------- */
/* ページ共通スタイル設定 ここから------------- */
/* --------------------------------------- */

/* 横幅設定 */
.wrapper-1200 {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
}

.wrapper-930 {
	width: 90%;
	max-width: 930px;
	margin: 0 auto;
}

.wrapper-1000 {
	width: 90%;
	max-width: 1000px;
	margin: 0 auto;
}

/* ページトップ、タイトル */
.title {
	height: 310px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #fff;
	text-shadow: 1px 1px 10px #4b2c14;
}

.title h1 {
	font-family: 'Montserrat', sans-serif;
	font-size: 32px;
	font-weight: bold;
}

.title p {
	font-size: 14px;
	margin-top: 15px;
}

/* google font */
.font-mont {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
}

/* h2見出し・下線 */
.h2-border-center {
	font-size: 22px;
	font-weight: bold;
	text-align: center;
}

.h2-border-center::after {
	content: "";
	display: block;
	width: 36px;
	height: 3px;
	background-color: #000;
	margin: 20px auto 0 auto;
}

.h2-border-left {
	font-size: 22px;
	font-weight: bold;
	text-align: left;
	line-height: 30px;
}

.h2-border-left::after {
	content: "";
	display: block;
	width: 36px;
	height: 3px;
	background-color: #000;
	margin-top: 20px;
}

/* ボタン */
.button-area {
	text-align: center;
	margin-top: 40px;
}

.button-yellow {
	background-color: #f4dd64;
	display: inline-block;
	width: 180px;
	line-height: 48px;
	border-radius: 24px;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	color: #000;
	text-align: center;
}

.button-yellow:hover {
	background-color: #d8b500;
}

/* 商品説明 */
.item-description {
	margin-top: 20px;
}

.item-description dt {
	font-weight: bold;
}

.item-description dd {
	font-size: 13px;
	line-height: 20px;
	margin-top: 10px;
}

.item-price {
	font-weight: bold;
	margin-top: 15px;
}

/* --------------------------------------- */
/* ヘッダー---------------------------------*/
/* --------------------------------------- */

/* ヘッダ内部を横並び、上下中央配置 */
.header-inner {
	height: 110px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
/* ハンバーガーメニューボタン */
.toggle-menu-button {
	display: none;
}
/* ロゴ */
.header-logo img {
	height: 75px;
}
/* メニューを横並び */
.header-site-menu ul,
.footer-site-menu ul {
	display: flex;
	font-size: 16px;
}

.header-site-menu li,
.footer-site-menu li {
	margin: 0 20px;
}

.header-site-menu li a,
.footer-site-menu li a  {
	display: inline-block;
	/* クリックできる範囲を上下に10px追加する */
	padding: 10px 0;
}

/* --------------------------------------- */
/* フッター---------------------------------*/
/* --------------------------------------- */

footer {
	color: #fff;
	background-color: #24211b;
	padding: 20px 0 15px 0;
	/* フッタ子要素を縦並び・左右中央配置 */
	display: flex;
	flex-direction: column;
	align-items: center;
}

.footer-logo img {
	width: 235px;
	margin-top: 80px;
}

.footer-tel {
	font-size: 26px;
	font-weight: bold;
	margin-top: 28px;
}

.footer-time {
	font-size: 13px;
	margin-top: 16px;
}

.copyright {
	font-size: 14px;
	font-weight: bold;
	margin-top: 90px;
}

/* PCでの電話番号リンクを無効にする */

@media (min-width: 801px) {

  a[href^="tel:"] {
    pointer-events: none;
  }

}

/* ----------------------------------------- */
/* mobile用　CSSーーーーーーーーーーーーーーーーー */
/* ----------------------------------------- */

@media (max-width:800px) {

/* ヘッダー --------------------------*/
	header {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 50px;
		background-color: #fff;
		z-index: 10;
		box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
	}

	.header-inner {
		padding: 0 20px;
		height: 100%;
		position: relative;
	}

	.header-logo img {
		height: 45px;
	}

	.header-site-menu ul,
	.footer-site-menu ul {
		display: block;
		text-align: center;
	}

	.header-site-menu {
		position: absolute;
		top: 100%;
		left: 50%;
		width: 50%;
		border-radius: 0 0 0 20px;
		color: #fff;
		background-color: #736e62;
		padding-top: 40px;
		padding-bottom: 40px;
		display: none;
	}

	.toggle-menu-button {
		display: block;
		width: 44px;
		height: 34px;
		background-image: url(../images/common/icon-menu.png);
		background-size: 50%;
		background-position: center;
		background-repeat: no-repeat;
	}

	.header-site-menu.is-show {
		display: block;
	}

/* メイン-----------------------------------*/
	main {
		/* headerが、position　fixにて上に浮いため */
		padding-top: 50px;
	}

/* フッター---------------------------------*/	
	footer {
		padding-top: 40px;
		padding-bottom: 15px;
	}

	.footer-logo img {
		margin-top: 50px;
	}

	.footer-tel {
		font-size: 20px;
	}

	.copyright {
		margin-top: 50px;
	}

}
@charset "utf-8";

/* -------------------------------------- */
/* 背景画像------------------------------- */
/* -------------------------------------- */

.menu-img {
	background-image: url(../images/menu/bg-main.jpg);
}

/* -------------------------------------- */
/* 商品リスト------------------------------ */
/* -------------------------------------- */

.menu-list {
	margin-top: 75px;
	display: grid;
	grid-template-columns: repeat(auto-fit, 240px);
	column-gap: 95px;
	row-gap: 70px;
	justify-content: center;
}

.menu-list li {
	position: relative;
}

.menu-list .item-label {
	position: absolute;
	top: 0;
	left: calc(100% + 18px);
	font-size: 10px;
	white-space: nowrap;
	transform-origin: top left;
	transform: rotate(90deg);
}

/* -------------------------------------- */
/* footer上部　余白------------------------ */
/* -------------------------------------- */

#menu footer {
	margin-top: 100px;
}

@media (max-width: 800px) {

	.menu-list {
		margin-top: 45px;
		row-gap: 40px;
	}
	
}

