/* ==========================================================================
//  Styles.css
// ========================================================================== */
/* ==========================================================================
//  1. グローバル設定 (Global Settings)
//  - サイト全体の基本的なHTML要素、フォント、リセットスタイルなど。
// ========================================================================== */
html,
body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 36px 0 0 0;
	/* スムーズスクロールを有効にする */
	scroll-behavior: smooth;
}
body {
	/* 基本フォント設定 */
	font-family: "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	color: #313131;
	background: #fff;
	/* フォントのアンチエイリアスとレンダリングを最適化 */
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
*,
*::before,
*::after {
	box-sizing: border-box;
}
img {
	border: 0;
	vertical-align: middle;
	max-width: 100%;
	height: auto;
}
/* Link Style  */
a,
a:link,
a:visited,
a:focus {
	color: #000000;
	text-decoration: none;
	outline: 0;
}
p a,
p a:visited {
	line-height: inherit;
}
a,
input {
	transition: all 0.2s ease-in-out 0s;
}
button:focus,
:focus-visible {
	outline: none !important;
}
a {
	-webkit-tap-highlight-color: transparent;
	/* モバイル用 強調をなくす */
}
/* ==========================================================================
//  2. Typography
// ========================================================================== */
.quattrocento {
	font-family: "Quattrocento", serif;
	font-weight: 400;
	font-style: normal;
}
.serif {
	font-family: serif;
}
p {
	line-height: 1.7;
}
small,
.small {
	font-size: .875rem;
}
br.mobile-only {
	display: initial;
}
.text-bold {
	font-weight: bolder;
}
/* ==========================================================================
//  3. ヘッダーセクション (Header Section)
//  - サイトのナビゲーションバー、ロゴ、ハンバーガーメニューなど。
// ========================================================================== */
header {
	position: fixed;
	/* ページ上部に固定表示 */
	top: 0;
	left: 0;
	width: 100%;
	height: 72px;
	background: #7a1313;
	z-index: 100;
	/* 他の要素より手前に表示 */
}
.header-container {
	display: flex;
	justify-content: space-between;
	/* 要素を両端に配置 */
	align-items: center;
	/* 垂直方向の中央揃え */
	padding: .5rem 0;
	max-width: none;
	/* 最大幅の制限をなくす */
	margin: 0;
	/* マージンをリセット */
}
.navbar-brand {
	margin-left: 2rem;
	/* 左側に余白 */
}
/* H1要素（ロゴのコンテナ）のスタイル */
.navbar-brand .brand {
	position: relative;
	/* 子要素の絶対配置の基準 */
	width: 168px;
	/* 通常時のロゴの幅 */
	height: 45px;
	/* 通常時のロゴの高さ */
	margin: 0;
	padding: 0;
	display: block;
	/* ブロック要素として表示 */
	transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
	/* ロゴコンテナのサイズ変化をスムーズに */
	overflow: hidden;
	/* ロゴがはみ出さないように */
}
/* スクリーンリーダーのみに表示されるテキストのスタイル */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
/* ロゴ表示要素共通のスタイル */
.logo-display {
	position: absolute;
	/* H1要素を基準に絶対配置 */
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	/* 画像の繰り返しなし */
	background-position: left;
	/* 画像を中央に配置 */
	background-size: contain;
	/* 要素内に画像を収める */
	/* 不透明度と拡大縮小の変化をスムーズに */
	transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}
/* 通常時の小さなアイコンスタイル */
.full-logo {
	background-image: url('../img/Hudson_River_Icon_White.svg');
	background-position: left;
	/* 画像配置場所設定 */
	opacity: 1;
	/* 最初は完全に表示 */
	transform: scale(1);
	/* 最初は元のサイズ */
}
/* スクロール時に表示されるロゴスタイル */
.icon-logo {
	background-image: url('../img/Hudson_River_Logo_White.svg');
	opacity: 0;
	/* 最初は非表示 */
	transform: scale(0.25);
	/* 最初は小さくしておく */
}
/* スクロール時のロゴコンテナのスタイル */
.fixed-top.scrolled .navbar-brand .brand {
	width: 168px;
	/* スクロール時にアイコンの幅に縮小 */
	height: 45px;
	/* スクロール時にアイコンの高さに縮小 */
}
/* スクロール時に大きなロゴを非表示にする */
.fixed-top.scrolled .full-logo {
	opacity: 0;
	/* 不透明度を0に */
	transform: scale(0.5);
	/* 縮小 */
}
/* スクロール時にアイコンを表示する */
.fixed-top.scrolled .icon-logo {
	opacity: 1;
	/* 不透明度を1に */
	transform: scale(1);
	/* 元のサイズに拡大 */
}
/* NAVIGATION SWITCH */
.navswitch {
	margin-right: 20px;
	/* 右側に余白 */
	padding: .5rem 0;
	line-height: 0;
	/* 余分なスペースを削除 */
}
.navswitch a {
	cursor: pointer;
	/* クリック可能なことを示すカーソル */
}
/* ハンバーガーメニューアイコン */
.hamburger {
	display: inline-block;
	cursor: pointer;
}
.hamburger span {
	display: block;
	width: 35px;
	height: 5px;
	background-color: white;
	margin: 6px 0;
	transition: 0.4s;
	/* ホバー時のアニメーション */
}
:target {
	/* 固定ヘッダー回避用マージン */
	scroll-margin-top: 88px;
}
/* ==========================================================================
//  4. ナビゲーションモーダル (Navigation Modal)
//  - ハンバーガーメニューをクリックした際に表示されるオーバーレイ。
// ========================================================================== */
.modal {
	/* 全画面を覆うオーバーレイ */
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background-color: rgb(0 0 0 / 60%);
	/* 半透明の黒背景 */
	opacity: 0;
	transition: opacity 0.5s, scale 0s 0.5s;
	/* 表示・非表示のアニメーション */
	scale: 0;
	/* 初期状態では非表示 */
}
.modal:target {
	opacity: 1;
	/* 表示状態 */
	transition: opacity 0.5s;
	scale: 1;
}
/* JavaScriptで付加されたクラスを使ったbodyの制御 */
body.modal-open {
	overflow: hidden;
	/* 背景のスクロールを止める */
}
.close {
	position: absolute;
	top: 3rem;
	right: 3rem;
	font-size: 4rem;
	color: black;
	text-decoration: none;
	cursor: pointer;
	/* アイコンの位置調整 */
	transform: translate(50%, -50%);
	transition: opacity 0.5s;
}
.close:hover {
	opacity: .5;
}
.modal-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	padding: 4rem;
	margin: auto;
	overflow: scroll;
	/* コンテンツがはみ出たらスクロール */
	background-color: rgba(159, 131, 0, 0.9);
	transition: transform 0.5s;
	/* 表示時のアニメーション */
	transform: translateY(-200%);
	/* 初期状態では画面外に配置 */
}
.modal:target .modal-wrapper {
	transform: translateY(0%);
	/* 表示時に画面内に移動 */
}
.modal-body {
	margin-top: 2rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.modal-body .logo {
	width: 200px;
}
.navItem {
	margin: 0 auto;
	padding-top: 2rem;
}
.btn {
	display: block;
	margin: 1.5rem auto;
	padding: .5rem 1rem .4rem;
	font-size: 1.5rem;
	font-family: "Quattrocento", serif;
	font-style: normal;
	text-align: center;
	background: rgba(255, 255, 255, 0.5);
}
.btn:hover,
.btn:active {
	background: rgba(255, 255, 255, 1.0);
}
.modal-footer {
	padding-top: 2rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	p {
		font-weight: normal;
	}
}
.modal-footer .icon {
	width: 3rem;
	padding-bottom: 1rem;
}
/* ==========================================================================
//  5. ヒーローセクション (Hero Section)
//  - トップページのメインビジュアルエリア（動画や画像）。
// ========================================================================== */
#hero {
	position: relative;
	height: calc(100vh - 72px);
	display: flex;
	align-items: center;
	justify-content: right;
	color: #ffffff;
	overflow: hidden;
}
/* HERO Background */
#hero .background-image {
	position: absolute;
	inset: 0;
	background-image: url('../img/Hero_Images-500x1000.jpg');
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	background-image: url('../img/Hero_Images-500x1000.webp');
}
@media (min-width: 768px) {
	#hero .background-image {
		background-image: url('../img/Hero_Images-900x1215.jpg');
		background-image: url('../img/Hero_Images-900x1215.webp');
	}
}
@media (min-width: 1200px) {
	#hero .background-image {
		background-image: url('../img/Hero_Images-2000x1334.jpg');
		background-image: url('../img/Hero_Images-2000x1334.webp');
	}
}
#hero .overlay {
	position: absolute;
	inset: 0;
	background-color: #ffffff;
	opacity: 0.1;
}
#hero .content {
	position: relative;
	z-index: 10;
	max-width: 90vw;
	padding: 1.5rem;
	background-color: rgb(245 187 52 / 57%);
	border-radius: 1rem 0 0 1rem;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	backdrop-filter: blur(1px);
}
@media (min-width: 768px) {
	#hero .content {
		padding: 2.5rem;
	}
}
#hero .content h1 {
	font-size: 3.25rem;
	font-family: "Quattrocento", serif;
	font-weight: 600;
	line-height: 1.0;
	color: #7a1313;
	margin-top: 1rem;
	margin-bottom: 1.5rem;
	filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06));
	span {
		font-size: 1.25rem;
	}
}
@media (min-width: 768px) {
	#hero .content h1 {
		font-size: 4.75rem;
		span {
			font-size: 2.0rem;
		}
	}
}
#hero .content p {
	font-size: 1.25rem;
	filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.05));
}
.melrose-btn {
	background: linear-gradient(to right, #cb1111 0%, #630000 100%);
	/* 左から右へグラデーション */
	color: white;
	padding: 12px 25px;
	border: none;
	border-radius: 50px;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	/* 影 */
}
.melrose-btn:hover {
	background: linear-gradient(to left, #cb1111 0%, #630000 100%);
	/* ホバーでグラデーションの向きを変える */
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
	transform: translateY(-3px);
}
/* ==========================================================================
//  6. イントロセクション
// ========================================================================== */
#intro {
	.row {
		margin-bottom: 3rem;
	}
	h2 {
		margin: 2rem 0;
		padding: 0.5em;
		font-family: serif;
		font-size: 1.25rem;
		font-weight: 600;
		color: #ffffff;
		text-align: center;
		background-color: #9f8300;
		border-radius: 2rem 0.25rem;
	}
	h4 {
		margin: 0 0 .8rem;
		padding-bottom: 0.5em;
		border-bottom: 1px solid #9f8300;
		font-family: serif;
		font-size: 1.25rem;
		font-weight: 600;
		color: #7a1313;
		text-align: center;
	}
	ul {
		list-style-type: none;
		/* マーク非表示 */
		padding-left: 0;
		/* 左余白リセット */
	}
	ul li {
		position: relative;
		padding-left: 20px;
		/* 星型分のスペースを左に空ける */
		margin-bottom: 8px;
		/* 各項目の下余白 */
		line-height: 1.5;
		/* 行の高さ調整 */
	}
	ul li::before {
		content: "✶";
		color: #9f8300;
		font-size: 1.25rem;
		position: absolute;
		left: 0;
		top: 0;
		transform: translateY(-0.2rem);
		/* 上下位置調整用 */
	}
}
.leftR {
	border-top-left-radius: 2rem;
}
.rightR {
	border-top-right-radius: 2rem;
}
/* ==========================================================================
// FAQ
// ========================================================================== */
#faq {
	margin: 3rem 0;
	padding: 1rem 0 3rem;
	background: #ddc;
	h4 {
		font-size: 1.25rem;
		text-align: center;
		font-weight: 800;
		color: #7a1313;
	}
	.exp {
		text-align: center
	}
	.row {
		row-gap: 0;
	}
}
.faq-item {
	background: #fff;
	border: 1px solid #ddd;
	margin-bottom: 12px;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
	line-height: 1.7;
}
.faq-question {
	padding: 1rem 2.5rem;
	cursor: pointer;
	position: relative;
	font-weight: bold;
	display: flex;
	align-items: center;
}
.faq-question:before {
	content: "?";
	color: #7a1313;
	font-size: 1.25rem;
	position: absolute;
	left: 16px;
	top: 16px;
	transform: translateY(-0.2rem);
	/* 上下位置調整用 */
}
.faq-question::after {
	content: "+";
	position: absolute;
	right: 1rem;
	font-size: 1rem;
	transition: transform 0.3s;
}
.faq-item.active .faq-question::after {
	content: "−";
	transform: rotate(180deg);
}
.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
	background: #f0f0f0;
	p {
		padding: 1rem 2rem 0rem;
	}
}
/* ==========================================================================
// VIDEO AREA
//============================================================================= */
#videoArea {
	h2 {
		margin: 2rem 0;
		padding: 0.5em;
		font-family: serif;
		font-size: 1.25rem;
		font-weight: 600;
		color: #ffffff;
		text-align: center;
		background-color: #9f8300;
		border-radius: 2rem 0.25rem;
	}
	.container {
		text-align: center;
	}
}
.lazy-video {
	position: relative;
	display: inline-block;
	cursor: pointer;
}
.lazy-video video,
.responsive-video {
	width: 100%;
	height: auto;
	display: block;
	max-width: 100%;
}
.lazy-video img {
	display: block;
	width: 100%;
	height: auto;
}
.video-play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: rgba(0, 0, 0, 0.6);
	color: #fff;
	border: none;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	font-family: "Quattrocento", serif;
	font-weight: bold;
	font-size: 24px;
	line-height: 60px;
	text-align: center;
	cursor: pointer;
}
/* ==========================================================================
//  7. PRODUCT
// ========================================================================== */
.title {
	margin: 0 0 20px;
	text-align: center;
	font-family: "Quattrocento", serif;
	font-weight: 600;
	font-size: 2.5rem;
	color: #7a1313;
	span {
		font-size: 1.25rem;
	}
}
.card {
	margin: 0 1rem 3rem 1rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	/* 子要素を水平方向に中央揃え */
	align-items: center;
	/* 子要素を垂直方向に中央揃え */
	overflow: hidden;
	transition: 0.5s ease;
	/* アニメーションの速度 */
	border: 1px solid #ddd;
	/* 枠線 */
	border-radius: 2rem;
	/* 角丸 */
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	/* 影 */
}
.card-content {
	margin: 0 auto;
	padding: 1rem 2rem;
	/* カード内の余白 */
	flex-grow: 1;
	/* コンテンツが残りのスペースを埋めるように */
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	/* コンテンツ上下の配置 */
}
.card img {
	width: 100%;
	height: auto;
	object-fit: cover;
	/* 画像を要素内に収める */
	display: block;
	/* 画像の下に余計な隙間ができないように */
}
/* 商品名 */
.card-title {
	margin-bottom: .25rem;
	font-family: "Quattrocento", serif;
	font-weight: 600;
	font-size: 1.25rem;
	line-height: 1.25;
	small {
		font-family: sans-serif;
		font-weight: 400;
	}
}
/* カラースウォッチ */
.color-swatch {
	width: 2.5rem;
	height: 1rem;
	border-radius: 2px;
	border: none;
	display: inline-block;
	/* 横並び */
	vertical-align: middle;
	/* 上下中央揃え */
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
	/* 影 */
}
.single-color {
	background-color: var(--swatch-color);
	box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
}
/* SPLIDE */
.splide__slide {}
.splide__arrow {
	background: #9f8300;
}
/* ==========================================================================
//  11. フッター (Footer)
//  - サイトの最下部に表示される情報。
// ========================================================================== */
footer {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 2rem 0;
	font-size: .8rem;
	text-align: center;
	background: #9f8300;
	img {
		width: 50vw;
		text-align: center;
		opacity: .6;
	}
	p {
		font-weight: 800;
		color: #fff;
	}
}
footer a:link {
	color: #fff;
}
.shoes {
	padding: .5rem 0;
	background: #7a1313;
}
.shoes p {
	margin: 0 auto;
	color: #fff;
	font-family: "Quattrocento", serif;
	font-weight: 400;
	font-size: 1rem;
	text-align: center;
}
/* ==========================================================================
//  11. レスポンシブ対応 (Responsive Design)
//  - 異なるデバイスサイズに応じたスタイル調整。
// ========================================================================== */
/* タブレット向け (768px以上) */
@media (min-width: 768px) {
	br.desktop-only {
		display: none;
	}
}
/* PC向け (1024px以上) */
@media (min-width: 1024px) {
	br.desktop-only {
		display: initial;
	}
	br.mobile-only {
		display: none;
	}
	#hero .content {
		right: 3rem;
		border-radius: 1rem;
	}
	#hero .content p {
		font-size: 1.5rem;
	}
	#intro .row {
		align-items: center;
	}
	footer {
		img {
			width: 25vw;
			text-align: center;
		}
	}
}
/* 小さなデバイス向け (768px以下) */
@media (max-width: 768px) {}
/* さらに小さなデバイス向け (480px以下) */
@media (max-width: 480px) {}