/*
Theme Name: Custom
*/
body {
	font-family: 'Noto Sans JP', sans-serif;
	background-color: white;
	color: #44403c;
}

header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: black;
	height: 140px;
	padding: 0 1.5rem;
	background-color: white;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 60;
	width: 100%;
	box-sizing: border-box;
}

header * {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* ロゴ＋スローガンを固定縦並びに */
.logo-slogan-block {
	width: 268px;
	height: 80px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.logo-img {
	height: 64px;
	width: auto;
	max-width: none;
}

.slogan-text {
	font-size: 16px;
	font-weight: 600;
	color: #4b5563;
	white-space: nowrap;
	padding-top: 4px;
	padding-left: 30px;
}

.header-menu {
	list-style-type: none;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 20px;
	padding: 0;
	margin: 0;
}

nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.75rem 1.5rem;
	width: 100%;
	height: 140px;
}

nav a {
	color: black;
	margin: 0 5px;
	text-decoration: none;
	white-space: nowrap;
}

.hero-bg {
	background: radial-gradient(circle, rgba(251, 191, 36, 0.05) 0%, rgba(245, 245, 244, 1) 70%);
}

.pillar {
	transition: all 0.3s ease-in-out;
	cursor: pointer;
}
.pillar.active {
	background-color: #f59e0b;
	color: #ffffff;
	transform: scale(1.05);
	box-shadow: 0 10px 15px -3px rgba(245, 158, 11, 0.2), 0 4px 6px -2px rgba(245, 158, 11, 0.1);
}
.central-core.active {
	box-shadow: 0 0 25px 5px rgba(245, 158, 11, 0.4);
}
.value-card {
	transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.value-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.chart-container {
	position: relative;
	width: 100%;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	height: 350px;
	max-height: 400px;
}

.center-button {
	text-align: center;
	margin-bottom: 40px;
}

.content {
	width: 100%;
	box-sizing: border-box;
	margin: 0 auto;
	padding: 0 20px;
	align-items: center;
	text-align: center;
	flex-wrap: nowrap;
	flex-direction: column;
}

.page-content {
	margin: auto;
	min-height: 720px;
}

.page-title-container {
	position: sticky;
	top: 140px;
	background-color: #fff;
	font-weight: normal;
	z-index: 40;
}

.page-content h1 {
	width: 100%;
	box-sizing: border-box;
	padding: 20px;
	font-size: 28px;
	font-weight: normal;
	text-align: center;
}

footer {
	background-color: #222;
	color: white;
	text-align: center;
	padding: 10px;
}

/* レスポンシブ */
@media (max-width: 1320px) {
	nav a {
		font-size: 18px;
		margin: 0 2.4px;
	}
}

@media (max-width: 1210px) {
	nav a {
		font-size: 16px;
		margin: 0 1.25px;
	}
}

@media (max-width: 1100px) {
	nav a {
		font-size: 14px;
		margin: 0 0.75px;
	}
}

@media (min-width: 768px) {
	.chart-container {
		height: 400px;
	}
}

@media (max-width: 767px) {
	.mobile-menu {
		z-index: 40;
	}
	.page-content h1 {
		font-size: 20px;
	}
}

@media (max-width: 430px) {
    .logo-img {
    	height: auto;
    	width: 100%;
    	max-width: none;
    }
    
    .slogan-text {
    	font-size: 14px;
    	padding-left: 30px;
    }
    
    nav {
    	padding: 0.75rem 1.0rem;
    }
}