#page-header {
	height: 80px;
	background-image: none;
	}
	#page-header h2 {
		display: none;
		}

.wbr i {
	display: inline-block;
	font-style: normal;
	}

body {
  font-family: "Noto Sans JP", sans-serif;
  background-color: #ffffff;
  line-height: 1.6;
}

/* Hero Section */
.hero-section {
	position: relative;
	height: calc(100vh - 80px);
	background-color: #fff;
	}
	.hero-image {
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
		opacity: 0.7;
		}
	.vertical-text-overlay {
		position: absolute;
		top: 5vh;
		right: 25%;
		z-index: 10;
		display: flex;
		justify-content: center;
		align-items: flex-start;
		width: 50%;
		height: calc(90vh - 80px);
		}
		.title-vertical {
			writing-mode: vertical-rl;
			font-size: 8.5vh;
			font-weight: 900;
			line-height: 1.2;
			color: #000;
			}
		.subtitle-vertical {
			writing-mode: vertical-rl;
			font-size: 4vh;
			font-weight: 700;
			letter-spacing: 0.1em;
			color: #000;
			}


/* Img Section */
.img-section {
	height: 100vh;
	padding: 5vh;
	background-color: #ffd500;
	text-align: center;
	}
	.img-section img {
		width: auto;
		max-width: 90%;
		max-height: 90vh;
		}
	



/* Goals Section */
.goals-section {
	background-color: #2b2b2b;
	padding: 5vh;
	}
	.goals-container {
		max-width: 700px;
		margin: 0 auto;
		}
		.goals-title {
			color: #ffffff;
			text-align: center;
			font-size: 4vh;
			font-weight: 700;
			margin-bottom: 32px;
			}
		.goals-list {
			display: flex;
			flex-direction: column;
			gap: 24px;
			}
			.goal-item {
				background-color: #ffffff;
				border-radius: 50px;
				padding: 16px 32px;
				text-align: center;
				}
				.goal-item p {
					font-size: 3vh;
					font-weight: 700;
					}

/* Product Section */
.product-section {
	background-color: #2b2b2b;
	padding: 0 0 64px;
	text-align: center;
	}
	.product-section picture,
	.product-section img {
		width: 90%;
		}


/* CTA Section */
.cta-section {
	background-color: #ffd500;
	padding: 48px 16px;
	}
	.cta-container {
		max-width: 1024px;
		margin: 0 auto;
		text-align: center;
		}
		.cta-title {
			font-size: 24px;
			font-weight: 700;
			margin-bottom: 32px;
			}
			.cta-buttons {
				display: flex;
				flex-direction: column;
				align-items: center;
				justify-content: center;
				gap: 16px;
				}
				.cta-button {
					background-color: #ffffff;
					padding: 16px 32px;
					border-radius: 50px;
					box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
					cursor: pointer;
					transition: transform 0.2s;
					}
				.cta-button:hover {
					transform: translateY(-2px);
					box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
					}
					.cta-button a,
					.cta-button a p,
					.cta-button:hover a p {
						font-size: 18px;
						font-weight: 700;
						color: #000;
						text-decoration: none !important;
						}

/* Responsive Design */
@media (min-width: 640px) {
	.cta-buttons {
		flex-direction: row;
		}
}
@media (max-width: 640px) {
/* Img Section */
.img-section {
	height: auto;
	}
	.img-section img {
		width: auto;
		max-width: 90%;
		max-height: 90vh;
		}
}

