:root {
	--color-accent: #C1362F;
	--color-bg-beige: #F0EEE9;
	--color-black: #000;
	--font-base: 'Montserrat', sans-serif;
	--width-content: 1100px;
}

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

* {
	margin: 0;
	padding: 0;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

ul,
ol {
	list-style: none;
}

body {
	font-family: sans-serif;
	line-height: 1.6;
	color: #333;
}

/* ==========================================================================
   Header
   ========================================================================== */

.header {
	position: relative;
	z-index: 10;
	background-color: #fff;
	height: 59px;
}

.header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1300px;
	height: 100%;
	margin: 0 auto;
	padding: 0 30px;
}

.header__logo {
	position: relative;
	z-index: 2;
	font-family: var(--font-base);
	font-weight: 700;
	font-size: 33px;
	color: var(--color-black);
}

.header__logo-accent {
	color: var(--color-accent);
}

.header__logo-year {
	color: #b2b2b2;
}

.header__nav-list {
	display: flex;
	gap: 40px;
	font-size: 16px;
	letter-spacing: 0.05em;
}

.header__nav-list a:hover {
	opacity: 0.7;
	transition: 0.3s;
}

.header__toggle {
	display: none;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	appearance: none;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero__img {
	display: block;
	width: 100%;
	height: 572px;
	object-fit: cover;
}

/* ==========================================================================
   Intro
   ========================================================================== */

.section--beige {
	background: var(--color-bg-beige);
}

.intro__inner {
	max-width: var(--width-content);
	margin: 0 auto;
	padding: 80px 30px;
	text-align: center;
}

.heading {
	margin-bottom: 40px;
	font-size: 24px;
	font-weight: 500;
	letter-spacing: 0.15em;
	text-align: center;
}

.heading::after {
	content: '';
	display: block;
	width: 45px;
	height: 3px;
	margin: 20px auto 0;
	background: var(--color-accent);
}

.intro__text {
	max-width: 657px;
	margin: 0 auto 1.5em;
	font-size: 18px;
	font-weight: 300;
	line-height: 1.5;
}

.feature-cards {
	display: flex;
	gap: 20px;
	margin-top: 60px;
	text-align: center;
}

.feature-card {
	flex: 1;
}

.feature-card__img {
	width: 100%;
	height: 226px;
	object-fit: cover;
}

.feature-card--dark .feature-card__img {
	background: var(--color-black);
}

.feature-card__title {
	max-width: 300px;
	margin: 24px auto 12px;
	font-size: 18px;
	font-weight: 900;
	line-height: 1.5;
}

.feature-card__text {
	max-width: 300px;
	margin: 0 auto;
	font-size: 18px;
	font-weight: 300;
	line-height: 1.35;
}

.feature-card__note {
	margin-top: 12px;
	font-size: 12px;
	font-weight: 300;
	line-height: 1.2;
}

/* ==========================================================================
   Campaign
   ========================================================================== */

.campaign__inner {
	max-width: var(--width-content);
	margin: 0 auto;
	padding: 0 30px 60px;
	text-align: center;
}

.campaign__box {
	position: relative;
	max-width: 756px;
	margin: 0 auto;
	padding: 36px 30px 30px;
	border: 1px solid var(--color-accent);
}

.campaign__label {
	position: absolute;
	top: -19px;
	left: 50%;
	transform: translateX(-50%);
	padding: 0 24px;
	background: var(--color-bg-beige);
	color: var(--color-accent);
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.15em;
	line-height: 38px;
	white-space: nowrap;
}

.campaign__date {
	margin-bottom: 12px;
	font-size: 25px;
	font-weight: 500;
	letter-spacing: 0.05em;
}

.campaign__text {
	max-width: 514px;
	margin: 0 auto;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.35;
}

.campaign__note {
	margin-top: 16px;
	font-size: 12px;
	font-weight: 300;
}

/* ==========================================================================
   Restaurants
   ========================================================================== */

.restaurants__inner {
	max-width: var(--width-content);
	margin: 0 auto;
	padding: 40px 30px 100px;
}

.restaurants__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 60px 13px;
	margin-top: 60px;
}

.restaurant-card__link {
	display: block;
	transition: opacity 0.3s;
}

.restaurant-card__link:hover {
	opacity: 0.8;
}

.restaurant-card__img {
	width: 100%;
	aspect-ratio: 266 / 148;
	object-fit: cover;
}

.restaurant-card__name {
	margin-top: 12px;
	font-size: 18px;
	font-weight: 500;
	text-align: center;
}

/* ==========================================================================
   Collect
   ========================================================================== */

.collect {
	background: #000;
	color: #fff;
	padding: 45px 0;
}

.collect__inner {
	display: flex;
	align-items: center;
	gap: 40px;
	max-width: var(--width-content);
	margin: 0 auto;
	padding: 0 30px;
}

.collect__content {
	flex: 1;
}

.collect__title {
	margin-bottom: 24px;
	font-size: 41px;
	font-weight: 700;
	line-height: 1.15;
}

.collect__lead {
	margin-bottom: 20px;
	font-size: 19px;
	font-weight: 300;
	line-height: 1.26;
}

.collect__lead strong {
	font-weight: 600;
}

.collect__text {
	margin-bottom: 16px;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.4;
}

.collect__note {
	font-size: 14px;
	font-weight: 300;
	line-height: 1.6;
}

.collect__visual {
	width: 290px;
	flex-shrink: 0;
}

.collect__img {
	width: 100%;
}

/* ==========================================================================
   Banners
   ========================================================================== */

.banners__inner {
	max-width: var(--width-content);
	margin: 0 auto;
	padding: 80px 30px 40px;
}

.banners__list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 13px;
}

.banner__link {
	display: block;
	transition: opacity 0.3s;
}

.banner__link:hover {
	opacity: 0.8;
}

.banner__img {
	width: 100%;
	aspect-ratio: 266 / 148;
	object-fit: cover;
}

.banner__label {
	margin-top: 12px;
	font-size: 18px;
	font-weight: 500;
	text-align: center;
}

/* ==========================================================================
   Organizer
   ========================================================================== */

.organizer__inner {
	display: flex;
	align-items: center;
	gap: 40px;
	max-width: var(--width-content);
	margin: 0 auto;
	padding: 60px 30px;
}

.organizer__logo {
	width: 194px;
	flex-shrink: 0;
}

.organizer__text {
	font-size: 16px;
	font-weight: 300;
	line-height: 1.4;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
	background: #000;
	padding: 5px 0;
}

.footer__copyright {
	color: #fff;
	font-size: 12px;
	font-weight: 300;
	text-align: center;
}

/* ==========================================================================
   Shop Hero
   ========================================================================== */

.shop-hero__inner {
	max-width: var(--width-content);
	margin: 0 auto;
	padding: 60px 30px;
}

.shop-hero__name {
	margin-bottom: 32px;
	font-size: 40px;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.shop-hero__body {
	display: flex;
	align-items: flex-start;
	gap: 40px;
}

.shop-hero__img {
	width: 60%;
	object-fit: cover;
}

.shop-hero__info {
	flex: 1;
}

.shop-info__item {
	padding: 12px 0;
	border-bottom: 1px solid #ddd;
}

.shop-info__item:first-child {
	border-top: none;
}

.shop-info__label {
	margin-bottom: 4px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.05em;
}

.shop-info__value {
	font-size: 14px;
	font-weight: 300;
	line-height: 1.5;
}

.shop-info__link {
	color: #1a4fa0;
	text-decoration: underline;
}

.shop-info__link:hover {
	opacity: 0.7;
}

/* ==========================================================================
   Menu
   ========================================================================== */

.menu__inner {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 40px;
	max-width: var(--width-content);
	margin: 0 auto 64px;
	padding: 40px;
	background: #f5f4f1;
}

.menu__heading {
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-align: left;
}

.menu__heading::after {
	content: '';
	display: block;
	width: 45px;
	height: 2px;
	margin-top: 8px;
	background: var(--color-accent);
}

.menu__lead {
	margin: 16px 0 24px;
	font-size: 14px;
	font-weight: 300;
}

.menu__img {
	width: 100%;
	aspect-ratio: 300 / 180;
	object-fit: cover;
	margin-top: 30px;
}

.menu__name {
	margin: 16px 0 8px;
	font-size: 16px;
	font-weight: 600;
}

.menu__text {
	max-width: 400px;
	font-size: 14px;
	font-weight: 300;
	line-height: 1.5;
}

.menu__ingredient {
	margin-top: 8px;
	font-size: 13px;
}

.menu__ingredient-label {
	color: var(--color-accent);
	font-weight: 500;
}

/* ==========================================================================
   CTA (Shop)
   ========================================================================== */

.cta {
	background: #000;
	color: #fff;
	padding: 50px 0;
}

.cta__inner {
	display: flex;
	align-items: center;
	gap: 40px;
	max-width: var(--width-content);
	margin: 0 auto;
	padding: 0 30px;
}

.cta__content {
	flex: 1;
}

.cta__title {
	margin-bottom: 20px;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.3;
}

.cta__text {
	max-width: 480px;
	margin-bottom: 24px;
	font-size: 15px;
	font-weight: 300;
	line-height: 1.5;
}

.cta__period-label {
	margin-bottom: 4px;
	color: #4db8c4;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.15em;
}

.cta__period {
	font-size: 22px;
	font-weight: 600;
}

.cta__img {
	width: 320px;
	flex-shrink: 0;
}

/* ==========================================================================
   Responsive (max-width: 1080px)
   ========================================================================== */

@media (max-width: 1080px) {
	/* Header / Nav toggle */
	.header {
		position: sticky;
		top: 0;
		z-index: 100;
		height: auto;
	}

	.header__inner {
		padding: 0 16px;
		gap: 16px;
	}

	.header__logo {
		flex-shrink: 1;
		min-width: 0;
		font-size: 15px;
		white-space: nowrap;
		overflow: hidden;
	}

	.header__logo-main,
	.header__logo-sub {
		display: inline;
	}

	.header__toggle {
		position: relative;
		z-index: 2;
		display: block;
		width: 44px;
		height: 44px;
		flex-shrink: 0;
	}

	.header__toggle-line {
		position: absolute;
		left: 10px;
		width: 24px;
		height: 2px;
		background: #000;
		transition: transform 0.3s, opacity 0.3s;
	}

	.header__toggle-line:nth-child(1) {
		top: 15px;
	}

	.header__toggle-line:nth-child(2) {
		top: 21px;
	}

	.header__toggle-line:nth-child(3) {
		top: 27px;
	}

	.header__nav.is-open ~ .header__toggle .header__toggle-line:nth-child(1) {
		top: 21px;
		transform: rotate(45deg);
	}

	.header__nav.is-open ~ .header__toggle .header__toggle-line:nth-child(2) {
		opacity: 0;
	}

	.header__nav.is-open ~ .header__toggle .header__toggle-line:nth-child(3) {
		top: 21px;
		transform: rotate(-45deg);
	}

	.header__nav {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		max-height: 0;
		overflow: hidden;
		background: #fff;
		transition: max-height 0.3s;
		z-index: 90;
	}

	.header__nav.is-open {
		max-height: 500px;
	}

	.header__nav-list {
		flex-direction: column;
		gap: 0;
	}

	.header__nav-list a {
		display: block;
		padding: 20px;
		text-align: center;
		border-bottom: 1px solid #eee;
	}

	/* Hero */
	.hero__img {
		height: auto;
		min-height: 400px;
		object-fit: cover;
	}

	/* Section inner padding */
	.intro__inner,
	.restaurants__inner,
	.campaign__inner,
	.banners__inner,
	.organizer__inner {
		padding-right: 20px;
		padding-left: 20px;
	}

	/* Heading */
	.heading {
		font-size: 20px;
		letter-spacing: 0.1em;
	}

	/* Intro */
	.intro__text {
		font-size: 16px;
	}

	.feature-cards {
		flex-direction: column;
		gap: 40px;
	}

	.feature-card__img {
		height: auto;
		aspect-ratio: 354 / 226;
	}

	/* Campaign */
	.campaign__box {
		padding: 30px 20px;
	}

	.campaign__date {
		font-size: 20px;
	}

	.campaign__label {
		padding: 0 16px;
		font-size: 14px;
		white-space: nowrap;
	}

	/* Restaurants */
	.restaurants__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px 13px;
	}

	.restaurant-card__name {
		font-size: 16px;
	}

	/* Collect */
	.collect__inner {
		flex-direction: column;
		gap: 30px;
	}

	.collect__title {
		font-size: 32px;
	}

	.collect__visual {
		width: 70%;
		max-width: 290px;
		margin: 0 auto;
	}

	/* Banners */
	.banners__list {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px 13px;
	}

	/* Organizer */
	.organizer__inner {
		flex-direction: column;
		gap: 24px;
		text-align: center;
	}

	/* Footer */
	.footer__copyright {
		padding: 0 20px;
		font-size: 10px;
	}
}

/* ==========================================================================
   Responsive - Shop (max-width: 768px)
   ========================================================================== */

@media (max-width: 768px) {
	/* Shop Hero */
	.shop-hero__name {
		font-size: 28px;
	}

	.shop-hero__body {
		flex-direction: column;
	}

	.shop-hero__img {
		width: 100%;
	}

	/* Menu */
	.menu__inner {
		grid-template-columns: 1fr;
		padding: 24px 20px;
	}

	.menu__img {
		width: 100%;
	}

	/* CTA */
	.cta__inner {
		flex-direction: column;
	}

	.cta__img {
		width: 70%;
		margin: 0 auto;
	}
}


/* ==========================================================================
   2026/09/18　追加
   ========================================================================== */


.menu__heading,
.menu__lead {
	grid-column: 1 / -1;
}

.menu__item {
	min-width: 0;
}
