html{
	scroll-behavior : smooth;
}
body{
    background-color: #fff;

	font-family: "Noto Serif JP", serif;
	font-weight: normal;
	font-style: normal;
	color: #333;
}
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	-webkit-font-feature-settings: 'palt';
	font-feature-settings: 'palt';
}
input, button, textarea, select {
	-webkit-appearance: none;
	appearance: none;
}
img {
	width: 100%;
	/* SPの長押し禁止 */
    -webkit-touch-callout:none;
    -webkit-user-select:none;
    -moz-touch-callout:none;
    -moz-user-select:none;
    user-select:none;
}
ul {
	padding: 0 ;
	margin: 0;
}
ul li {
	list-style-type: none;
	padding: 0;
	margin: 0;
}
a {
	color: #333;
	text-decoration: none;
}
/* *{
    outline: 2px red solid;
} */

/* ==================================
全体ｃｓｓ
================================== */
:root {
	--pointColor: #5B0000;
	--mainTxt: #333;
	--mainBack: #F5F5DC;
}

.wrap {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	background-color: var(--mainBack);
}

.pc {
	display: none;
}

@media screen and (min-width:765px) {
	.pc {
		display: block;
	}
	.sp {
		display: none;
	}
}

.sp_br {
	display: none;
}

.sp_br2 {
	display: block;
}

@media screen and (max-width:765px) {
	.sp_br {
		display: block;
	}
	.sp_br2 {
		display: none;
	}
}

/* ==================================
header
================================== */

.header-inner {
	position: relative;
}
.top_img {
	background-image: url(../images/top-img.jpg);
	height: 100vh;
	background-size: cover;
	background-repeat: no-repeat;
}
.top_logo {
	max-width: 300px;
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
nav {
	position: fixed;
	max-width: 750px;
	width: 100%;
	margin: 0 auto;
	top: 10%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 999;
}
ul#nav {
	display: flex;
	justify-content: space-around;
	background-color: #fff;
	padding: 1em 1.5em;
	border-radius: 100vh;
	margin: 0 10px;
	border: 1px solid var(--pointColor);
}
ul#nav li a {
	font-size: clamp(14px, 1.25vw, 20px);
}

@media screen and (max-width:765px) {
	.top_logo {
		width: 50%;
	}
}


/* ==================================
footer
================================== */
.footer {
	margin-top: auto;
}
.footer-inner {
	background-color: #1d1d1d;
	color: #fff;
	padding: 1em 10px;
	text-align: center;
}

/* ==================================
main
================================== */
/* ==============================共通 */
.hr_img {
	max-width: 40px;
	width: 100%;
	margin: 0 auto;
}

/* ==============================hero */
.hero {
	background-color: var(--pointColor);
	color: #fff;
	text-align: center;
	padding: 100px 10px;
}
.hero-inner h2 {
	margin: 0 0 1em;
	font-size: clamp(22px, 1.875vw, 30px);
}
.campaign_link {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2em;
}
.campaign_link a {
	display: block;
	max-width: 900px;
	width: 100%;
	margin: 50px auto;
}
.campaign_link a img {
	width: 100%;
	height: auto;
	display: block;
}

@media screen and (max-width:765px) {
	.campaign_link a {
		aspect-ratio: 1 / 1;
		max-width: 300px;
		overflow: hidden;
	}

	.campaign_link a img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}

/* ==============================店舗紹介 */
.shop {
	background-color: var(--mainBack);
	text-align: center;
	padding: 100px 0;
}
.shop-inner h2 {
	margin: 0 0 1em;
	font-size: clamp(22px, 1.875vw, 25px);
}
.shop-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3em 1em;
	margin: 50px 0;
}
.shop-list_cont {
	min-width: 0;
}
.shop-list_cont a img,
.shop-list_txt a {
	transition: .5s;
}
.shop-list_cont a img:hover,
.shop-list_txt a:hover {
	opacity: .5;
}
.shop-list img {
	width: 100%;
	max-width: 100%;
	height: auto;
	display: block;
}
.shop-list_txt {
	background-color: var(--pointColor);
	color: #fff;
	padding: 30px 40px;
	text-align: left;
	display: flex;
	flex-direction: column;
	gap: 1em;
	align-items: flex-start;
	min-width: 0;
	word-break: break-word;
}
.shop-list_txt h2 {
	margin: 0;
}
.shop-list_txt a {
	color: #fff;
	margin-left: auto;
	white-space: normal;
}

@media screen and (max-width:1024px) {
	.shop-list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width:765px) {
	.shop-list {
		grid-template-columns: 1fr;
	}
	.shop-list_txt {
		padding: 20px;
	}
}