html, body {
	margin: 0;
	padding: 0;
	height: auto;
	padding-top: 7em;
}

/* 背景固定レイヤー */
#bg-fixed {
	position: fixed;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
	z-index: 0;
}

.bg-layer {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.8s ease;
	background-color: #000;
	z-index: 0;
}

.bg-layer.no-gradient::after {
	display: none !important;
}

.bg-layer.active {
	opacity: 1;
}

.bg-img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) translateX(0%) translateY(5%) scale(0.5);
	width: auto;
	height: auto;
}

.bg-layer::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(to right, #000 0%, #000 45%, transparent 50%),
		linear-gradient(to right, #000 0%, rgba(0,0,0,0.7) 20%, rgba(0,0,0,0) 40%);
	background-size: 100% 100%;
	background-repeat: no-repeat;
}

#content {
	position: relative;
	z-index: 1;
}

section.fund-card {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: flex-start; /* ← 左寄せ */
	padding: 4rem 2rem;
}

.sf-card {
	margin-left: 1vw; /* ← 画面幅の10%だけ左に寄せる */
}

.sf-fund-logo {
	transform: translate(-10%, 0%) scale(0.75);
}

/* モバイル共通 */
@media (max-width: 428px) {
	
	.bg-layer {
		background: none !important;
	}
	
	.bg-layer::after {
		display: none !important;
	}
	
	.bg-img {
		transform: translate(-50%, -50%) scale(0.65) !important;
	}
	
	.sf-card {
		margin-left: auto;
		margin-right: auto;
	}
}

/* Google Fonts を使う場合（任意） */
/*
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap");
*/

:root {
  --font-main: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --color-dark: #111;
  --color-gray: #555;
}

/* 全体セクション */
.fund-banner {
  background: transparent; /* 背景は透明 */
  text-align: left;
  padding: 3rem 1.5rem;
  font-family: var(--font-main);
  color: var(--color-dark);
}

@import url("https://fonts.googleapis.com/css2?family=Anton&display=swap");

:root {
	--font-blockchain: "Anton", Impact, sans-serif;
}

.fund-title {
	font-family: var(--font-blockchain);
	font-size: clamp(3rem, 2rem + 5vw, 4rem);
	font-weight: 500;
	color: #000;
	line-height: 1;
	letter-spacing: 0.01em;
	-webkit-text-stroke: 0px #000;
	text-transform: uppercase;
	margin-bottom: 2rem;
}

.fund-description {
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.25rem);
  line-height: 1.6;
  color: var(--color-gray);
}
