/*
Theme Name: 凹凸Brew Works
Description: 凹凸Brew Works LP テーマ
Version: 1.0
*/

/* ============================================================
凹凸Brew Works LP — WordPress Page Template Stylesheet
1rem = 10px (html { font-size: 10px })
============================================================ */

/* ---- Design Tokens ---- */
:root {
	--color-text: #2E2F31;
	--color-gray: #737373;
	--color-teal: #32494F;
	--color-accent: #F6F0F1;
	--color-base: #F5F5EF;
	--color-dark: #28292B;
	--color-star: #DFCE62;
	--color-star-e: #B6B5B5;
	--color-taste-bg: #E3E3E3;
	--font-en: 'Hanken Grotesk', sans-serif;
	--font-ja-serif: 'Shippori Mincho', serif;
	--font-ja-sans: 'Noto Sans JP', sans-serif;
	--font-yu: 'Yu Gothic', 'YuGothic', sans-serif;
}

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

html {
	font-size: 10px;
	scroll-behavior: smooth;
}

/* 1rem = 10px */
body {
	font-family: var(--font-ja-sans);
	color: var(--color-text);
	background: #fff;
	overflow-x: hidden;
}

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

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

ul {
	list-style: none;
}

/* 縦書き内の数字・アルファベットを正立表示 */
.tcy {
	text-combine-upright: all;
}

/* ---- Typography helpers ---- */
.title-en {
	font-family: var(--font-en);
	font-weight: 700;
	font-size: 3.7rem;
	letter-spacing: 0.05em;
	line-height: 1;
}

.title-ja {
	font-family: var(--font-ja-serif);
	font-weight: 400;
	font-size: 1.6rem;
	letter-spacing: 0.3em;
	line-height: 1;
}

.section-title {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

/* ===== HEADER ===== */
.site-header {
	position: sticky;
	top: 0;
	z-index: 200;
	background: #fff;
	border-bottom: 0.1rem solid var(--color-gray);
}

.header-inner {
	max-width: 144rem;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: unset;
	width: 96%;
}

.header-logo {
	width: 14.3rem;
	height: auto;
	display: block;
}

.header-nav {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.header-nav a {
	font-family: var(--font-en);
	font-weight: 700;
	font-size: 1.4rem;
	letter-spacing: 0.06em;
	color: var(--color-text);
	white-space: nowrap;
}

.header-nav .nav-contact {
	background: var(--color-text);
	color: #fff;
	border-radius: 2.4rem;
	padding: 0.4rem 2.4rem;
}

/* ===== HERO (FV) ===== */
.fv {
	width: 100%;
	min-height: 85rem;
	overflow: hidden;
}

.fv video {
	width: 100%;
	min-height: 85rem;
	object-fit: cover;
	max-width: none;
	display: block;
}

/* ===== SECTION 01 — PHILOSOPHY ===== */
.philosophy {
	background: #fff;
	overflow: hidden;
}

/* bg画像とコンテンツをgridで重ねる */
.philosophy__bg-wrap {
	display: grid;
}

.philosophy__bg,
.philosophy__fg {
	grid-area: 1 / 1;
}

.philosophy__bg {
	width: 100%;
	object-fit: cover;
	opacity: 0.6;
	pointer-events: none;
	align-self: stretch;
}

.philosophy__fg {
	padding: 20rem 0;
	z-index: 1;
}

.philosophy__inner {
	position: relative;
	max-width: 100rem;
	margin: 0 auto;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 6rem;
}

.philosophy__text {
	font-family: var(--font-ja-serif);
	font-weight: 700;
	font-size: 1.5rem;
	line-height: 2.7;
	letter-spacing: 0.03em;
	color: var(--color-text);
}

.philosophy__vertical {
	display: flex;
	gap: 2.2rem;
	flex-shrink: 0;
	align-items: flex-start;
}

.philosophy__vertical-col {
	writing-mode: vertical-rl;
	text-orientation: mixed;
	font-family: var(--font-ja-serif);
	font-weight: 500;
	font-size: 3.2rem;
	line-height: 3.7rem;
	color: var(--color-teal);
	background: #fff;
	padding: 2rem 0.8rem;
	text-align: left;
}

.philosophy__images {
	position: relative;
	max-width: 67rem;
	margin: 10rem auto 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 3rem;
}

.philosophy__images img {
	width: 20.2rem;
	aspect-ratio: 202 / 139;
	object-fit: cover;
	mix-blend-mode: multiply;
}

/* ===== SECTION 02-A — ABOUT ===== */
.about {
	overflow: hidden;
	display: grid;
	grid-template-columns: 1fr 1fr;
	position: relative;
	height: 100%;
}
.about .about_flex {
	display: flex;
}
.about__img {
	width: 100%;
	aspect-ratio: 18 / 11;
	object-fit: cover;
	display: block;
}

/* gridで同一セルに重ねてボタンをオーバーレイ */
.about__btn-wrap {
	pointer-events: none;
	z-index: 1;
	position: absolute;
	left: 0;
	right: 0;
	height: inherit;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
}

.about__btn {
	pointer-events: all;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2.4rem;
	background: rgba(255, 255, 255, 0.7);
	border: 0.1rem solid var(--color-teal);
	padding: 3rem 3rem;
	width: 33.4rem;
	transition: background 0.25s, box-shadow 0.25s;
}

.about__btn:hover {
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.12);
}

.about__btn-text {
	font-family: var(--font-en);
	font-weight: 500;
	font-size: 2.1rem;
	letter-spacing: 0.03em;
	color: var(--color-teal);
	text-align: center;
}

.about__btn-arrow {
	width: 0.7rem;
	aspect-ratio: 7 / 13;
	flex-shrink: 0;
}

/* ===== SECTION 02-B — PRODUCTS ===== */
.products {
	position: relative;
	margin-top: 13rem;
}

/* ---- 暗色上部エリア ---- */
.products__dark {
	background: var(--color-dark);
	position: relative;
	min-height: 75.2rem;
	overflow: visible;
	/* 下の明色エリアへのはみ出しを許可 */
}

.products__dark-inner {
	position: relative;
	max-width: 144rem;
	margin: 0 auto;
	height: 100%;
	width: 92%;
}

.products__dark-right-img {
	position: absolute;
	right: 0;
	bottom: 9rem;
	top: unset;
	width: 63.6rem;
	aspect-ratio: 636 / 435;
	object-fit: cover;
	border-bottom-left-radius: 7.2rem;
}

.products__small-tl {
	position: absolute;
	left: 11.5rem;
	top: -3rem;
	width: 19rem;
	aspect-ratio: 190 / 245;
	object-fit: cover;
	border-radius: 2.4rem 0 2.4rem 0;
}

.products__heading {
	position: absolute;
	left: 39.6rem;
	top: 22.4rem;
}

.products__heading h2 {
	font-family: var(--font-en);
	font-weight: 700;
	font-size: 3.7rem;
	letter-spacing: 0.05em;
	color: var(--color-base);
	line-height: 1;
	margin-bottom: 1.6rem;
}

.products__heading p {
	font-family: var(--font-ja-serif);
	font-weight: 700;
	font-size: 1.5rem;
	line-height: 2.7;
	letter-spacing: 0.03em;
	color: var(--color-base);
	margin-top: 1.2rem;
}

/* 縦書きテキスト（右端の白帯） */
.products__vertical-text {
	position: absolute;
	left: 114.2rem;
	top: 11.4rem;
	display: flex;
	gap: 2.2rem;
}

.products__vertical-col {
	writing-mode: vertical-rl;
	text-orientation: mixed;
	font-family: var(--font-ja-serif);
	font-weight: 500;
	font-size: 3.2rem;
	line-height: 3.7rem;
	color: var(--color-teal);
	background: #fff;
	padding: 2rem 0.8rem;
	text-align: center;
}

/* 下にはみ出す料理写真 */
.products__dish-img {
	position: absolute;
	left: 25.2rem;
	top: 60rem;
	width: 43.8rem;
	aspect-ratio: 438 / 271;
	object-fit: cover;
	border-radius: 0 4.2rem 0 4.2rem;
	z-index: 10;
}

/* ---- 明色下部エリア（ビールカード） ---- */
.products__light {
	background: var(--color-accent);
	padding: 30rem 0 13rem;
	position: relative;
}

.products__grid {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 10.6rem;
	max-width: 114rem;
	width: 100%;
	margin: 0 auto;
	padding: 0 1.5rem;
}

/* ビールカード */
.product-card {
	width: 30.9rem;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	gap: 3rem;
	position: relative;
}

.product-card__img-wrap {
	width: 100%;
	aspect-ratio: 309 / 549;
	border-radius: 0 7.2rem 0 0;
	overflow: hidden;
	position: relative;
}

.product-card__img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* バッジ円（カード画像上端に配置） */
.product-card__badge {
	position: absolute;
	top: 1rem;
	left: 1rem;
	transform: unset;
	width: 7.7rem;
	aspect-ratio: 1;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Architects Daughter', cursive, var(--font-en);
	font-size: 1.6rem;
	letter-spacing: 0.03em;
	color: #fff;
	z-index: 5;
}

.product-card__badge--pilsner {
	background: #3DA843;
}

.product-card__badge--weizen {
	background: #EF643F;
}

.product-card__badge--ale {
	background: #B50F29;
}

.product-card__info {
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
	color: var(--color-text);
}

.product-card__name {
	font-family: var(--font-ja-serif);
	font-weight: 600;
	font-size: 2.1rem;
	line-height: 2;
}

.product-card__desc {
	font-family: var(--font-ja-sans);
	font-weight: 400;
	font-size: 1.4rem;
	line-height: 1.7;
	letter-spacing: 0.03em;
	text-align: justify;
}

/* テイスト評価ボックス */
.product-card__taste {
	background: var(--color-taste-bg);
	border-radius: 1.2rem;
	padding: 2rem 3rem;
	display: flex;
	align-items: center;
	gap: 2rem;
}

.taste-label {
	font-family: var(--font-en);
	font-weight: 500;
	font-size: 1.6rem;
	letter-spacing: 0.08em;
	line-height: 1.2;
	color: var(--color-text);
	border-top: 0.1rem solid #000;
	border-bottom: 0.1rem solid #000;
	padding: 0.9rem 0;
	text-align: center;
	width: 5.7rem;
	flex-shrink: 0;
}

.taste-rows {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
	flex: 1;
}

.taste-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.taste-row__label {
	font-family: var(--font-ja-sans);
	font-weight: 500;
	font-size: 1.4rem;
	letter-spacing: 0.03em;
	color: var(--color-text);
}

.taste-row__stars {
	display: flex;
	gap: 0.5rem;
}

.star {
	font-size: 1.6rem;
	line-height: 1;
}

.star--on {
	color: var(--color-star);
}

.star--off {
	color: var(--color-star-e);
}

/* RESTAURANT & SHOP ボタン */
.products__btn-wrap {
	display: flex;
	justify-content: center;
	margin-top: 6rem;
}

.products__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	background: #fff;
	border: 0.1rem solid var(--color-teal);
	padding: 3rem 4rem;
	font-family: var(--font-en);
	font-weight: 500;
	font-size: 2.1rem;
	letter-spacing: 0.03em;
	color: var(--color-teal);
	transition: background 0.25s, box-shadow 0.25s;
}

.products__btn:hover {
	background: var(--color-base);
	box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.1);
}

.products__btn-arrow {
	width: 0.7rem;
	aspect-ratio: 7 / 13;
}

/* ===== SECTION 03 — BREWERY ===== */
.brewery {
	position: relative;
	min-height: 126.8rem;
	overflow: hidden;
	background: #fff;
}

.brewery__inner {
	position: relative;
	max-width: 144rem;
	margin: 0 auto;
	width: 92%;
}

.brewery__title {
	position: absolute;
	top: 20rem;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	white-space: nowrap;
	z-index: 2;
}

.brewery__text {
	position: absolute;
	left: 56.6rem;
	top: 33.7rem;
	font-family: var(--font-ja-serif);
	font-weight: 700;
	font-size: 1.5rem;
	line-height: 2.5;
	letter-spacing: 0.03em;
	color: var(--color-text);
	mix-blend-mode: multiply;
	white-space: nowrap;
	z-index: 2;
}

/* 散在写真 — Figmaの絶対座標から変換 */
.brewery__photo {
	position: absolute;
	overflow: hidden;
	z-index: 1;
}

.brewery__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.brewery__photo--1 {
	/* 左縦長 */
	left: 11.5rem;
	top: 34.1rem;
	width: 34.8rem;
	aspect-ratio: 348 / 495;
	border-radius: 0 0 4.2rem 0;
}

.brewery__photo--2 {
	/* 右縦長 */
	left: 100rem;
	top: 21.7rem;
	width: 33.7rem;
	aspect-ratio: 337 / 460;
	border-radius: 4.2rem 0 0 0;
}

.brewery__photo--3 {
	/* 右下大 */
	left: 79.5rem;
	top: 81.3rem;
	width: 45.5rem;
	aspect-ratio: 455 / 431;
	border-radius: 4.2rem 0 0 0;
}

.brewery__photo--4 {
	/* 中央小 */
	left: 41rem;
	top: 98.5rem;
	width: 27.8rem;
	aspect-ratio: 278 / 172;
	border-radius: 4.2rem 0 0 0;
}

.brewery__photo--5 {
	/* 左下小 */
	left: 19.4rem;
	top: 112.7rem;
	width: 17.6rem;
	aspect-ratio: 176 / 117;
	border-radius: 0;
}

/* brewery と news の間のダークバンド */
.dark-band {
	background: var(--color-dark);
	margin-top: 14rem;
	overflow: hidden;
	display: grid;
}

/* gridで画像を親のサイズに合わせて重ねる */
.dark-band > * {
	grid-area: 1 / 1;
}

.dark-band img {
	width: 100%;
	min-height: 44rem;
	object-fit: cover;
	opacity: 0.45;
	display: block;
}

/* ===== SECTION 04 — NEWS ===== */
.news {
	background: var(--color-accent);
	padding: 10rem 0;
}

.news__inner {
	max-width: 114rem;
	margin: 0 auto;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.news__aside {
	display: flex;
	flex-direction: column;
	gap: 4rem;
	align-self: stretch;
	flex-shrink: 0;
	width: 15.8rem;
}

.news__aside .section-title {
	padding-bottom: 2.1rem;
}

.news__list-btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 0.4rem;
	border-bottom: 0.1rem solid var(--color-gray);
	width: 100%;
}

.news__list-btn span {
	font-family: var(--font-ja-sans);
	font-weight: 400;
	font-size: 1.4rem;
	line-height: 1.7;
	letter-spacing: 0.03em;
	color: var(--color-text);
	flex: 1;
}

.news__list-btn img {
	width: 1.4rem;
	aspect-ratio: 1;
}

.news__card {
	background: #fff;
	border-radius: 1.2rem;
	padding: 4rem 6rem;
	display: flex;
	flex-direction: column;
	gap: 2rem;
	width: 83.7rem;
	flex-shrink: 0;
}

.news-item a {
	display: flex;
	align-items: center;
	gap: 4rem;
	padding-bottom: 2rem;
	border-bottom: 0.1rem solid var(--color-gray);
}

.news-item:last-child a {
	border-bottom: none;
	padding-bottom: 0;
}

.news-item__thumb {
	width: 14rem;
	aspect-ratio: 7 / 6;
	object-fit: cover;
	border-radius: 1.2rem;
	flex-shrink: 0;
}

.news-item__meta {
	display: flex;
	flex-direction: column;
	gap: 0.9rem;
}

.news-item__date {
	font-family: 'Inter', var(--font-en), sans-serif;
	font-size: 1.4rem;
	letter-spacing: 0.3em;
	color: var(--color-gray);
}

.news-item__tags {
	font-size: 1.4rem;
	letter-spacing: 0.3em;
	color: var(--color-gray);
}

.news-item__title {
	font-family: var(--font-ja-sans);
	font-size: 1.6rem;
	line-height: 1.7;
	letter-spacing: 0.03em;
	color: var(--color-text);
}

/* ===== SECTION 05 — INSTAGRAM ===== */
.instagram {
	background: var(--color-dark);
	padding: 0 4%;
	display: flex;
	align-items: center;
	gap: 0;
	min-height: 44rem;
}
.insta_inner {
	max-width: 114rem;
	margin: 0 auto;
	display: flex;
	gap: 15rem;
	width: 100%;
	align-items: flex-start;
}
.instagram__aside {
	width: 19rem;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 7rem;
}

.instagram__title .title-en,
.instagram__title .title-ja {
	color: var(--color-base);
}

.instagram__more-btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 0.4rem;
	border-bottom: 0.1rem solid var(--color-base);
	width: 100%;
}
.instagram__more-btn span {
	font-family: var(--font-ja-sans);
	font-weight: 400;
	font-size: 1.4rem;
	line-height: 1.7;
	letter-spacing: 0.03em;
	color: var(--color-base);
	flex: 1;
}

.instagram__more-btn img {
	width: 1.4rem;
	aspect-ratio: 1;
	filter: brightness(0) invert(1);
}

/* ===== SECTION 06 — CONTACT ===== */
.contact {
	background: #fff;
	padding: 20rem 0;
}

.contact__inner {
	width: 100rem;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6rem;
}

.contact__title {
	text-align: center;
}

.contact__title .title-en,
.contact__title .title-ja {
	color: #000;
}

.contact__title .title-ja {
	letter-spacing: 0.1em;
}

.contact__lead {
	font-family: var(--font-ja-sans);
	font-size: 1.4rem;
	line-height: 1.7;
	letter-spacing: 0.03em;
	color: #000;
	text-align: center;
}

/* ---- Contact Form 7 ---- */

.contact .wpcf7 {
	width: 100%;
}

/* テーブルをフレックスカラムに変換 */
.contact .wpcf7 table {
	display: flex;
	flex-direction: column;
	gap: 6rem;
	width: 100%;
	border: none;
	border-collapse: unset;
}

.contact .wpcf7 table tr {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	margin-bottom: 6rem;
}
.contact .wpcf7 table tr:last-child {
	margin-bottom: 0;
}
/* th: ラベル行 */
.contact .wpcf7 table th {
	display: block;
	padding: 0;
	border: none;
	background: none;
	text-align: left;
	font-weight: normal;
}

.contact .wpcf7 table th p {
	display: flex;
	align-items: flex-end;
	gap: 4rem;
	margin: 0;
	font-family: var(--font-yu);
	font-size: 1.6rem;
	letter-spacing: 0.1em;
	color: #000;
}

/* td: 入力欄 */
.contact .wpcf7 table td {
	display: block;
	padding: 0;
	border: none;
}

.contact .wpcf7 table td p {
	margin: 0;
}

/* wpcf7-form-control-wrap をブロック表示 */
.contact .wpcf7 .wpcf7-form-control-wrap {
	display: block;
	width: 100%;
}

/* 必須バッジ */
.contact .wpcf7 .bgRed {
	background: var(--color-text);
	color: #fff;
	font-family: var(--font-yu);
	border-radius: 1.2rem;
	padding: 0.2rem 2rem;
	white-space: nowrap;
	display: inline-block;
	line-height: 1.6;
}

/* 任意バッジ */
.contact .wpcf7 .bgGray02 {
	background: var(--color-gray);
	color: #fff;
	font-family: var(--font-yu);
	border-radius: 1.2rem;
	padding: 0.2rem 2rem;
	white-space: nowrap;
	display: inline-block;
	line-height: 1.6;
}

.contact .wpcf7 .size13 {
	font-size: 1.3rem;
	letter-spacing: 0.1em;
}

/* テキスト・メール・電話 入力欄 */
.contact .wpcf7 .wpcf7-text,
.contact .wpcf7 .wpcf7-email,
.contact .wpcf7 .wpcf7-tel {
	width: 100%;
	border: 0.1rem solid var(--color-gray);
	border-radius: 1.2rem;
	padding: 1.6rem 3.3rem;
	font-family: var(--font-yu);
	font-size: 1.4rem;
	letter-spacing: 0.03em;
	color: var(--color-text);
	background: #fff;
	outline: none;
	box-sizing: border-box;
	transition: border-color 0.2s;
}

/* セレクトボックス（ご用件） */
.contact .wpcf7 .wpcf7-select {
	width: 100%;
	border: 0.1rem solid var(--color-gray);
	border-radius: 1.2rem;
	padding: 1.6rem 3.3rem;
	font-family: var(--font-yu);
	font-size: 1.4rem;
	letter-spacing: 0.03em;
	color: var(--color-text);
	background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23737373' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 2rem center;
	appearance: none;
	-webkit-appearance: none;
	outline: none;
	cursor: pointer;
	box-sizing: border-box;
	transition: border-color 0.2s;
}

/* テキストエリア */
.contact .wpcf7 .wpcf7-textarea {
	width: 100%;
	min-height: 22rem;
	border: 0.1rem solid var(--color-gray);
	border-radius: 1.2rem;
	padding: 1.6rem 3.3rem;
	font-family: var(--font-yu);
	font-size: 1.4rem;
	letter-spacing: 0.03em;
	color: var(--color-text);
	background: #fff;
	outline: none;
	resize: vertical;
	box-sizing: border-box;
	transition: border-color 0.2s;
}

/* フォーカス */
.contact .wpcf7 .wpcf7-text:focus,
.contact .wpcf7 .wpcf7-email:focus,
.contact .wpcf7 .wpcf7-tel:focus,
.contact .wpcf7 .wpcf7-select:focus,
.contact .wpcf7 .wpcf7-textarea:focus {
	border-color: var(--color-teal);
}

/* プレースホルダー */
.contact .wpcf7 .wpcf7-text::placeholder,
.contact .wpcf7 .wpcf7-email::placeholder,
.contact .wpcf7 .wpcf7-tel::placeholder,
.contact .wpcf7 .wpcf7-textarea::placeholder {
	color: var(--color-gray);
}

/* 同意チェックボックスエリア */
.contact .wpcf7 .center {
	text-align: center;
	margin-top: 2rem;
}

.contact .wpcf7 .center p {
	margin: 0;
	font-family: var(--font-yu);
	font-size: 1.4rem;
	letter-spacing: 0.03em;
	color: var(--color-text);
}

.contact .wpcf7 .wpcf7-acceptance {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
}

/* 送信ボタンエリア */
.contact .wpcf7 .btn {
	display: flex;
	justify-content: center;
	margin-top: 4rem;
}

.contact .wpcf7 .btn p {
	margin: 0;
	text-align: center;
	display: block;
}

.contact .wpcf7 .wpcf7-submit {
	background: var(--color-teal);
	border: 0.1rem solid var(--color-text);
	color: #fff;
	font-family: var(--font-yu);
	font-weight: 700;
	font-size: 1.8rem;
	letter-spacing: 0.03em;
	padding: 2rem 6rem;
	cursor: pointer;
	transition: opacity 0.2s;
}

.contact .wpcf7 .wpcf7-submit:hover {
	opacity: 0.85;
}

/* ===== FOOTER ===== */
.site-footer {
	background: var(--color-base);
	display: flex;
	flex-direction: column;
}

/* 左コンテンツ + 右写真 を横並びにする行 */
.footer-main {
	display: flex;
	align-items: stretch;
	width: 96%;
	margin: 0 auto;
	max-width: 1440px;
}

/* 左エリア（クリーム背景・テキストコンテンツ） */
.footer-left {
	flex: 1;
	background: var(--color-base);
	padding: 10.6rem 0 10.6rem 2%;
	display: flex;
	flex-direction: column;
	gap: 4rem;
}

/* 右エリア（写真 + 外観写真を grid で重ねる） */
.footer-right {
	width: 32.5rem;
	flex-shrink: 0;
	display: grid;
	overflow: visible;

	@media screen and (min-width: 1900px) {
		position: absolute;
		right: 0;
	}
}

.footer-bg-right,
.footer-map-img {
	grid-area: 1 / 1;
}

.footer-bg-right {
	display: block;
	width: 100%;
	align-self: stretch;
	object-fit: cover;

	@media screen and (min-width: 1900px) {
		position: relative;
		right: 0;
	}
}

.footer-map-img {
	display: block;
	align-self: start;
	justify-self: start;
	margin-top: 9.4rem;
	width: 45.1rem;
	max-width: none;
	aspect-ratio: 451 / 264;
	object-fit: cover;
	position: relative;
	left: -10rem;

	@media screen and (min-width: 1900px) {
		position: relative;
		right: 12.5rem;
		left: unset;
	}
}

/* SHOP Information タイトル */
.footer-title-group .title-en {
	font-size: 2.4rem;
	letter-spacing: 0.05em;
	line-height: 1;
}

/* ロゴ・住所・連絡先 横並び */
.footer-inner {
	display: flex;
	align-items: center;
	gap: 5rem;

	@media screen and (min-width: 1900px) {
		gap: 10rem;
	}
}

.footer-logo {
	width: 19rem;
	height: auto;
	object-fit: contain;
	flex-shrink: 0;
}

.footer-info {
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
	color: var(--color-text);
	flex: unset;
}

.footer-company {
	font-family: var(--font-ja-serif);
	font-weight: 500;
	font-size: 1.5rem;
	letter-spacing: 0.03em;
}

.footer-address {
	font-family: var(--font-ja-serif);
	font-weight: 400;
	font-size: 1.4rem;
	line-height: 2;
	letter-spacing: 0.03em;
}

.footer-contacts {
	display: flex;
	flex-direction: column;
	gap: 0.9rem;
	flex-shrink: 0;
}

.footer-instagram {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.footer-instagram img {
	width: 1.6rem;
	height: auto;
}

.footer-instagram span,
.footer-phone {
	font-family: var(--font-en);
	font-size: 1.5rem;
	letter-spacing: 0.02em;
	color: var(--color-text);
}

/* コピーライト（通常フローで下に配置） */
.footer-copyright {
	text-align: center;
	padding: 1.6rem 0;
	font-size: 1.2rem;
	color: var(--color-gray);
	font-family: var(--font-en);
	background: var(--color-base);
}

/* ===== ANIMATIONS ===== */

/* ---- FV: ページ読み込み時のスケールイン ---- */
@keyframes heroScale {
	from { transform: scale(1.06); }
	to   { transform: scale(1); }
}
.fv img {
	animation: heroScale 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

/* ---- スクロールフェードアップ（通常フロー要素用） ---- */
.js-fade {
	opacity: 0;
	transform: translateY(3.5rem);
	transition: opacity 0.8s ease, transform 0.8s ease;
}
.js-fade.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* ---- スクロールフェード（opacity のみ・既存 transform がある絶対配置要素用） ---- */
.js-fade-op {
	opacity: 0;
	transition: opacity 0.8s ease;
}
.js-fade-op.is-visible {
	opacity: 1;
}

/* ---- トランジション遅延 ---- */
.js-fade--d1  { transition-delay: 0.15s; }
.js-fade--d2  { transition-delay: 0.30s; }
.js-fade--d3  { transition-delay: 0.45s; }
.js-fade-op--d1 { transition-delay: 0.15s; }
.js-fade-op--d2 { transition-delay: 0.30s; }
.js-fade-op--d3 { transition-delay: 0.45s; }
.js-fade-op--d4 { transition-delay: 0.60s; }

/* ---- ビールカード: ホバーリフト ---- */
.product-card {
	transition: transform 0.3s ease;
}
.product-card:hover {
	transform: translateY(-0.8rem);
}

/* ---- ニュースアイテム: ホバー背景 ---- */
.news-item {
	transition: background 0.2s;
	border-radius: 0.4rem;
}
.news-item:hover {
	background: rgba(0, 0, 0, 0.025);
}

/* ---- dark-band: 後方互換（削除済みクラスの残留を無効化） ---- */
.dark-band__img {
	display: none;
}




/* ===== HAMBURGER MENU ===== */
.hamburger-btn {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0.55rem;
	width: 4.4rem;
	height: 4.4rem;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.4rem;
	position: relative;
	z-index: 201;
}

.hamburger-line {
	display: block;
	width: 2.4rem;
	height: 0.2rem;
	background: var(--color-text);
	border-radius: 0.1rem;
	transition: transform 0.35s ease, opacity 0.35s ease;
	transform-origin: center;
}

.hamburger-btn.is-active .hamburger-line:nth-child(1) {
	transform: translateY(0.75rem) rotate(45deg);
}
.hamburger-btn.is-active .hamburger-line:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}
.hamburger-btn.is-active .hamburger-line:nth-child(3) {
	transform: translateY(-0.75rem) rotate(-45deg);
}

/* SP Overlay */
.sp-nav-overlay {
	position: fixed;
	inset: 0;
	background: #fff;
	z-index: 190;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s ease, visibility 0.4s ease;
}

.sp-nav-overlay.is-open {
	opacity: 1;
	visibility: visible;
}

.sp-nav {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4rem;
}

.sp-nav a {
	font-family: var(--font-en);
	font-weight: 700;
	font-size: 2.4rem;
	letter-spacing: 0.06em;
	color: var(--color-text);
	opacity: 0;
	transform: translateY(1.5rem);
	transition: opacity 0.4s ease, transform 0.4s ease;
}

.sp-nav-overlay.is-open .sp-nav a {
	opacity: 1;
	transform: translateY(0);
}

.sp-nav a:nth-child(1) { transition-delay: 0.10s; }
.sp-nav a:nth-child(2) { transition-delay: 0.17s; }
.sp-nav a:nth-child(3) { transition-delay: 0.24s; }
.sp-nav a:nth-child(4) { transition-delay: 0.31s; }
.sp-nav a:nth-child(5) { transition-delay: 0.38s; }

.sp-nav .nav-contact {
	background: var(--color-text);
	color: #fff;
	border-radius: 2.4rem;
	padding: 0.8rem 3.2rem;
}

@media screen and (max-width: 1280px) {
	.products__dark-right-img {
		width: 53.6rem;
	}
	.products__dish-img {
		left: 15.2rem;
	}
	.products__vertical-text {
		left: unset;
		right: 0;
	}
	.products__heading {
		left: 35rem;
	}
	.brewery__photo--3,
	.brewery__photo--2 {
		left: unset;
		right: 0;
	}
	.brewery__photo--1 {
		left: 0;
	}
	.brewery__text {
		left: 0;
		right: 0;
		margin: 0 auto;
		display: flex;
		justify-content: center;
	}
	.brewery__photo--4 {
		left: 31rem;
	}
	.brewery__photo--5 {
		left: 9.4rem;
	}
}


@media screen and (max-width: 1024px) {
	.philosophy__inner {
		width: 92%;
	}

	.products__dark {
		min-height: 65.2rem;
	}
	.products__heading {
		left: 22.5rem;
		top: 12.4rem;
	}
	.products__small-tl {
		left: 0;
	}
	.products__dish-img {
		left: 5rem;
		top: 52.5rem;
	}
	.products__dark-right-img {
		width: 45rem;
		height: auto;
	}
	.products__grid {
		width: 92%;
		gap: 2rem;
		padding: 0;
	}
	.product-card {
		width: auto;
		flex: 1;
	}
	.brewery {
		min-height: 110rem;
	}
	.brewery__photo--1 {
		top: 34.1rem;
		width: 25rem;
	}
	.brewery__photo--2 {
		top: 21.7rem;
		width: 22.5rem;
	}
	.brewery__photo--3 {
		top: 65rem;
		width: 40rem;
		height: auto;
	}
	.brewery__photo--4 {
		left: 22.5rem;
		top: 82.5rem;
		width: 20rem;
		height: auto;
	}
	.brewery__photo--5 {
		left: 2.5rem;
		top: 90rem;
		width: 17.6rem;
		height: auto;
	}
	.news__inner {
		width: 92%;
		gap: 4rem;
	}
	.news__card {
		width: auto;
		flex: 1;
	}
	.contact__inner {
		width: 92%;
	}
	.footer-left,
	.instagram {
		padding: 10rem 2%;
	}
	.footer-right {
		width: 20rem;
		position: relative;
		right: -2%;
	}
	.footer-inner {
		gap: 3rem;
	}
	.footer-map-img {
		margin-top: 6rem;
		width: 20rem;
	}
	.footer-contacts{
		margin-top: 6rem;
	}
	.footer-logo {
		width: 15rem;
	}
}

@media screen and (max-width: 896px) {
	.fv,
	.fv video {
		min-height: 50rem;
	}

	.products__small-tl {
		width: 12.5rem;
	}
	.products__dish-img {
		width: 25rem;
		left: 2.5rem;
	}
	.products__dark-right-img {
		width: 35rem;
		bottom: 5rem;
	}
	.products__heading {
		left: 17.5rem;
		top: 8rem;
	}
	.products__vertical-text {
		left: unset;
		right: 2.5rem;
		top: 20rem;
	}
	.products__grid {
		flex-wrap: wrap;
		justify-content: center;
		gap: 5rem 2rem;
	}
	.product-card {
		width: calc((100% - 2rem) / 2);
		flex: unset;
	}
	.brewery__photo--1 {
		width: 15rem;
	}
	.brewery__photo--2 {
		width: 17.5rem;
	}
	.brewery__photo--3 {
		width: 32.5rem;
	}
	.brewery__photo--4 {
		width: 15rem;
		left: 17.5rem;
	}
	.brewery__photo--5 {
		width: 12.5rem;
	}
	.insta_inner,
	.news__inner {
		flex-direction: column;
		gap: 4rem;
	}
	.news__card {
		width: 100%;
	}
	.footer-inner {
		gap: 2rem;
		flex-direction: column;
		align-items: flex-start;
	}
	.footer-contacts {
		margin-top: 0;
	}
	.footer-map-img {
		margin-top: 20rem;
	}
}

.W-640 {
	display: none;
}

/* ============================================================
640px以下 — スマホ対応
※ 必ずすべての大きいブレイクポイントより後に記述
============================================================ */
@media screen and (max-width: 640px) {

	/* ---- HEADER ---- */
	.header-nav { display: none; }
	.hamburger-btn { display: flex; }

	.W-640 {
		display: block;
	}
	.W-640none {
		display: none;
	}

	/* ---- FV ---- */
	.fv,
	.fv video { min-height: 28rem; }

	/* ---- PHILOSOPHY ---- */
	.philosophy__fg { padding: 6rem 0; }
	.philosophy__inner {
		flex-direction: column;
		width: 90%;
		gap: 3rem;
		position: relative;
	}
	.philosophy__text {
		font-size: 1.3rem;
		line-height: 2;
	}
	.philosophy__vertical {
		position: absolute;
		top: 0;
		right: 0;
		gap: 0.5rem;
	}
	.philosophy__vertical-col {
		font-size: 2rem;
		padding: 1.2rem 0.5rem;
	}
	.philosophy__images {
		flex-wrap: wrap;
		max-width: 90%;
		gap: 0.8rem;
		margin-top: 3rem;
	}
	.philosophy__images img {
		width: calc((100% - 1.6rem) / 3);
	}

	/* ---- ABOUT ---- */
	.about { display: block; }
	.about_flex { flex-direction: column; }
	.about__img { aspect-ratio: 16 / 9; }
	.about__btn-wrap {
		position: static;
		display: flex;
		justify-content: center;
		padding: 4rem 0;
	}
	.about__btn {
		width: 85%;
		padding: 2rem;
	}
	.contact .wpcf7 .wpcf7-submit {
		padding: 2rem 4rem;
		display: block;
	}

	/* ---- PRODUCTS ---- */
	.products { margin-top: 0; }

	/* 暗色セクション：absolute配置をflowに変換 */
	.products__dark {
		min-height: unset !important;
		padding: 0;
		display: flex;
		flex-direction: column;
	}
	.products__dark-inner {
		order: 1;
		position: static !important;
		width: 100%;
		height: auto;
		padding: 5rem 7% 3rem;
	}
	.products__small-tl { display: none; }
	.products__heading {
		position: static !important;
		left: unset !important;
		top: unset !important;
	}
	.products__heading h2 { font-size: 2.8rem; }
	.products__vertical-text { display: none !important; }
	.products__dish-img { display: none !important; }
	.products__dark-right-img {
		order: 2;
		position: static !important;
		width: 100% !important;
		height: 22rem;
		object-fit: cover;
		border-bottom-left-radius: 3.6rem;
		bottom: unset !important;
		right: unset !important;
	}

	/* 明色セクション（ビールカード）*/
	.products__light { padding: 6rem 0 8rem; }
	.products__grid {
		flex-direction: column;
		width: 86%;
		gap: 5rem;
		align-items: stretch;
		flex-wrap: nowrap;
	}
	.product-card {
		width: 100% !important;
		flex: unset;
	}
	.products__btn {
		width: 85%;
		justify-content: center;
		padding: 2rem;
	}

	/* ---- BREWERY ---- */
	.brewery {
		min-height: unset !important;
		padding-bottom: 5rem;
	}
	.brewery__inner {
		width: 90%;
		padding-top: 5rem;
		display: flex;
		flex-direction: column;
		gap: 2.4rem;
	}
	.brewery__title {
		position: static !important;
		transform: none !important;
		white-space: normal;
		text-align: center;
		top: unset !important;
		left: unset !important;
	}
	.brewery__text {
		position: static !important;
		white-space: normal;
		font-size: 1.4rem;
		line-height: 2;
		text-align: left;
		mix-blend-mode: normal;
		left: unset !important;
		top: unset !important;
	}
	/* 散在写真をすべてstatic・縦並びに */
	.brewery__photo,
	.brewery__photo--1,
	.brewery__photo--2,
	.brewery__photo--3,
	.brewery__photo--4,
	.brewery__photo--5 {
		position: static !important;
		width: 100% !important;
		height: auto !important;
		aspect-ratio: 4 / 3;
		left: unset !important;
		top: unset !important;
		right: unset !important;
	}
	.brewery__photo--1 { border-radius: 0 0 2rem 0; }
	.brewery__photo--2 { border-radius: 2rem 0 0 0; }
	.brewery__photo--3 { border-radius: 2rem 0 0 0; }
	.brewery__photo--4 { border-radius: 2rem 0 0 0; }
	.brewery__photo--5 { border-radius: 0; }

	/* ---- NEWS ---- */
	.news { padding: 6rem 0; }
	.news__inner {
		flex-direction: column;
		width: 90%;
		gap: 3rem;
	}
	.news__aside { width: 100%; }
	.news__card {
		width: 100%;
		padding: 2.5rem 2rem;
	}
	.news-item a {
		flex-direction: column;
		gap: 1.5rem;
	}
	.news-item__thumb {
		width: 100%;
		aspect-ratio: 16 / 9;
	}

	/* ---- INSTAGRAM ---- */
	.instagram { padding: 6rem 5%; min-height: unset; }
	.insta_inner {
		flex-direction: column;
		gap: 3rem;
	}
	.instagram__aside {
		width: 100%;
		gap: 3rem;
	}

	/* ---- CONTACT ---- */
	.contact { padding: 8rem 0; }
	.contact__inner { width: 90%; }
	.contact .wpcf7 table tr { margin-bottom: 3rem; }

	/* ---- FOOTER ---- */
	.footer-main { flex-direction: column; }
	.footer-left { padding: 5rem 5%; }
	.footer-inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 2.4rem;
	}
	.footer-logo { width: 13rem; }
	.footer-contacts { margin-top: 0; }
	.footer-right {
		width: 100%;
		height: 20rem;
		position: static !important;
		right: 0;
		overflow: unset;
	}
	.footer-bg-right {
		width: 100%;
		height: 100%;
		object-fit: cover;
		min-height: unset;
	}
	.footer-map-img {
		width: 100%;
		left: 0;
		top: -2.5rem;
		margin-top: 0;
	}
	.brewery__photo img {
		border-radius: 6rem;
	}
}













