:root {
	--bg-yellow: #FFFDD2;
	--main-blue: #0071BC;
	--main-orange: #FF6B00;
	--accent-yellow: #FCDE1E;
	--text-dark: #333;
	--header-height: 80px;
}

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

/* ============================
   Loading Screen
   ============================ */
.loading {
	position: fixed;
	top: 0; left: 0;
	width: 100%; height: 100%;
	background: #fff;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.6s ease;
}
.loading.is-hidden {
	opacity: 0;
	pointer-events: none;
}
.loading-inner {
	position: relative;
	width: 200px;
	height: 200px;
}
.loading-logo {
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	width: 100px;
}
.loading-spinner {
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 100%;
	animation: loadingSpin 2s linear infinite;
}
.loading-dot {
	position: absolute;
	display: block;
	border-radius: 50%;
	background: var(--main-blue);
}
.loading-dot:nth-child(1)  { width: 18px; height: 18px; top: 0;    left: 50%;  transform: translateX(-50%); opacity: 1; }
.loading-dot:nth-child(2)  { width: 17px; height: 17px; top: 7%;   left: 73%;  transform: translate(-50%, -50%); opacity: 0.92; }
.loading-dot:nth-child(3)  { width: 16px; height: 16px; top: 24%;  left: 90%;  transform: translate(-50%, -50%); opacity: 0.83; }
.loading-dot:nth-child(4)  { width: 15px; height: 15px; top: 50%;  left: 100%; transform: translate(-100%, -50%); opacity: 0.75; }
.loading-dot:nth-child(5)  { width: 14px; height: 14px; top: 76%;  left: 90%;  transform: translate(-50%, -50%); opacity: 0.67; }
.loading-dot:nth-child(6)  { width: 13px; height: 13px; top: 93%;  left: 73%;  transform: translate(-50%, -50%); opacity: 0.58; }
.loading-dot:nth-child(7)  { width: 12px; height: 12px; bottom: 0; left: 50%;  transform: translateX(-50%); opacity: 0.5; }
.loading-dot:nth-child(8)  { width: 11px; height: 11px; top: 93%;  left: 27%;  transform: translate(-50%, -50%); opacity: 0.42; }
.loading-dot:nth-child(9)  { width: 10px; height: 10px; top: 76%;  left: 10%;  transform: translate(-50%, -50%); opacity: 0.33; }
.loading-dot:nth-child(10) { width: 9px;  height: 9px;  top: 50%;  left: 0;    transform: translateY(-50%); opacity: 0.25; }
.loading-dot:nth-child(11) { width: 10px; height: 10px; top: 24%;  left: 10%;  transform: translate(-50%, -50%); opacity: 0.17; }
.loading-dot:nth-child(12) { width: 11px; height: 11px; top: 7%;   left: 27%;  transform: translate(-50%, -50%); opacity: 0.08; }
@keyframes loadingSpin {
	0%   { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	font-family: 'Noto Sans JP', sans-serif;
	color: var(--text-dark);
	background-color: var(--bg-yellow);
	background-image: url('../images/bg_hoei.png');
	background-repeat: repeat-y;
	background-size: 100%;
	overflow-x: hidden;
	line-height: 1.6;
}

/* Header Styles */
.header {
	position: fixed;
	top: 10px;
	left: 0;
	width: 100%;
	height: var(--header-height);
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 40px;
	z-index: 10000;
}

.logo {
	height: 50px;
}

.nav-container {
	background: #fff;
	border: 2px solid #1255A4;
	border-radius: 50px;
	padding: 20px 30px;
	display: flex;
	gap: 15px;
}

.nav-link {
	text-decoration: none;
	color: var(--main-blue);
	font-size: 14px;
	font-weight: bold;
	white-space: nowrap;
	padding: 4px 0;
	position: relative;
	transition: opacity 0.3s;
}

.nav-link:hover {
	opacity: 0.7;
}

.nav-indicator {
	position: absolute;
	bottom: 12px;
	height: 3px;
	background: var(--main-orange);
	border-radius: 2px;
	transition: left 0.5s ease, width 0.5s ease;
	pointer-events: none;
}

/* ハンバーガーボタン（PC非表示） */
.hamburger {
	display: none;
}

/* SPドロワーメニュー（PC非表示） */
.sp-menu-overlay {
	display: none;
}
.sp-menu {
	display: none;
}

/* Main Visual Styles */
.hero {
	position: relative;
	width: 100%;
	height: 100vh;
	min-height: 700px;
	padding-top: var(--header-height);
	background-color: #FCDE1E;
	background-image: url('../images/bg_hoei.png');
	background-repeat: repeat-y;
	background-size: 100%;
	overflow: hidden;
}

/* ============================
   ヒーロー ロードアニメーション
   ============================ */

/* ロード後：表示・拡大 */
.hero.is-loaded .hero-title {
	opacity: 1;
	scale: 1;
}

.hero.is-loaded .hero-char {
	opacity: 1;
	scale: 1;
}


@keyframes floatChar {
	0%, 100% { translate: 0; }
	50% { translate: 0 -1rem; }
}

/* 装飾アイコン共通 */
.hero-dec {
	position: absolute;
	z-index: 1;
	pointer-events: none;
	/* 初期状態：非表示・縮小 */
	opacity: 0;
	scale: 0;
	transition: opacity 0.4s ease, scale 0.4s cubic-bezier(0.44, 0.42, 0.24, 1.55);
}

/* ロード後：表示・ポップイン */
.hero.is-loaded .hero-dec {
	opacity: 1;
	scale: 1;
}

/* 装飾アイコン：ふわふわ浮遊 */
.hero.is-loaded .hero-dec.is-floating {
	animation: floatDec var(--float-duration, 4s) ease-in-out var(--float-delay, 0s) infinite;
}

@keyframes floatDec {
	0%, 100% { translate: 0; }
	50% { translate: 0 -0.8rem; }
}

/* 上段左：トラック */
.dec-track-1 {
	top: 15%;
	left: 1%;
	width: 140px;
}

/* 左側：リサイクル */
.dec-recycling-1 {
	top: 28%;
	left: -2%;
	width: 100px;
}

/* 上段中央：ショベルカー */
.dec-excavator-1 {
	bottom: 2%;
	left: -3%;
	width: 180px;
}

/* 上段右寄り：フォークリフト（黄） */
.dec-forklift-y-1 {
	bottom: 26%;
	right: 1%;
	width: 110px;
}

/* 右上：溶解炉 */
.dec-furnace-1 {
	bottom: 3%;
	right: 1%;
	width: 140px;
}

/* 左中段：歯車 */
.dec-gear-1 {
	top: 44%;
	left: 2%;
	width: 100px;
}

/* 下段左：車（黄） */
.dec-car-y-1 {
	bottom: 30%;
	left: 3%;
	width: 130px;
}

/* 下段左寄り：フォークリフト */
.dec-forklift-1 {
	bottom: 15%;
	left: 15%;
	width: 120px;
}

/* 下段中央左：インゴット */
.dec-ingot-1 {
	bottom: 2%;
	left: 28%;
	width: 120px;
}

/* 下段中央：タンク */
.dec-tank-1 {
	bottom: 10%;
	left: 42%;
	width: 110px;
}

/* 上段中央左：歯車 */
.dec-gear-2 {
	top: 5%;
	left: 49%;
	width: 90px;
}

/* 右中段：歯車 */
.dec-gear-3 {
	top: 50%;
	right: 9%;
	width: 80px;
}

/* 右下段：歯車 */
.dec-gear-4 {
	bottom: 0;
	right: 39%;
	width: 80px;
}

/* 右上：車 */
.dec-car-1 {
	top: 8%;
	right: 0;
	width: 100px;
}

/* 右中段：トラック */
.dec-track-2 {
	top: 28%;
	right: -1%;
	width: 130px;
}

/* 上段中央：リサイクル */
.dec-recycling-2 {
	top: 8%;
	left: 38%;
	width: 80px;
}

/* 右上寄り：リサイクル */
.dec-recycling-3 {
	top: 9%;
	right: 10%;
	width: 70px;
}

/* 右上寄り：タンク */
.dec-tank-2 {
	top: 3%;
	right: 18%;
	width: 90px;
}

/* 右中段：インゴット */
.dec-ingot-2 {
	top: 5%;
	right: 31%;
	width: 100px;
}

/* 右下：インゴット */
.dec-ingot-3 {
	top: 42%;
	right: -3%;
	width: 90px;
}

/* 右中段：タンク（白） */
.dec-tank-w-1 {
	top: 23%;
	right: 12%;
	width: 90px;
}

/* 右上寄り：フォークリフト */
.dec-forklift-2 {
	top: 18%;
	right: 39%;
	width: 110px;
}

/* 右上：ショベルカー */
.dec-excavator-2 {
	top: 20%;
	right: 23%;
	width: 150px;
}

/* メインタイトル（SVG） */
.hero-title {
	position: absolute;
	left: 10%;
	top: 45%;
	transform: translateY(-50%);
	z-index: 2;
	width: 70%;
	max-width: 800px;
	/* アニメーション初期状態 */
	opacity: 0;
	scale: 0.6;
	transition: opacity 0.5s ease, scale 0.5s cubic-bezier(0.49, 0.25, 0.3, 1.31);
}

.hero-title img {
	width: 100%;
	height: auto;
	display: block;
}

/* メインキャラクター（SVG） */
.hero-char {
	position: absolute;
	right: 10%;
	bottom: 0;
	z-index: 3;
	width: 40%;
	max-width: 400px;
	/* アニメーション初期状態 */
	opacity: 0;
	scale: 0.6;
	transform-origin: center bottom;
	transition: opacity 0.6s ease 0.3s, scale 0.6s cubic-bezier(0.27, 0.26, 0.15, 1.57) 0.3s;
}

.hero-char img {
	width: 100%;
	height: auto;
	display: block;
}

/* Message Section Styles */
.message-section {
	padding: 100px 20px;
	background-color: #FCDE1E;
	background-image: url('../images/bg_hoei.png');
	background-repeat: repeat-y;
	background-size: 100%;
	display: flex;
	justify-content: center;
}

.message-card {
	background: #fff;
	max-width: 1170px;
	width: 100%;
	border-radius: 30px;
	padding: 80px 100px;
	position: relative;
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
	text-align: center;
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}
.message-card.is-animated {
	opacity: 1;
	transform: translateY(0);
}

.message-title {
	color: var(--main-blue);
	font-family: 'Lato', sans-serif;
	font-size: 60px;
	font-weight: 900;
	margin-bottom: 20px;
	letter-spacing: 0.05em;
}

.message-subtitle {
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 50px;
}

.message-text {
	text-align: left;
	line-height: 2;
	font-size: 18px;
}

.message-text p {
	margin-bottom: 1.5em;
}

.message-worker-img {
	position: absolute;
	bottom: 0;
	right: 40px;
	width: 250px;
	height: auto;
}

/* ============================
   共通セクションヘッダー
   ============================ */
/* bg-title アニメーション */
[class*="-bg-title"] {
	opacity: 0;
	transform: translateX(-50%) translateY(120px);
	transition: opacity 1s ease, transform 1s ease;
}

[class*="-bg-title"].is-animated {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

.section-header {
	position: relative;
	margin-bottom: 50px;
	text-align: center;
}

.section-header-side {
	position: absolute;
	top: 50%;
	transform: translateY(-50%) translateX(-80px);
	opacity: 0;
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-header-side:first-child {
	left: 0;
	top: 40%;
}

.section-header-side:last-child {
	right: 0;
	transform: translateY(-50%) translateX(80px);
}

.section-header-side img {
	width: 100%;
	height: auto;
}

.section-header-text {
	text-align: center;
	display: inline-block;
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-header.is-animated .section-header-text {
	opacity: 1;
	transform: translateY(0);
}

.section-header.is-animated .section-header-side {
	opacity: 1;
	transform: translateY(-50%) translateX(0);
}

.section-title-ja {
	font-size: 60px;
	font-weight: 900;
	color: var(--main-blue);
	margin-bottom: 30px;
}

.section-subtitle {
	font-size: 25px;
	font-weight: bold;
	color: var(--main-blue);
}

/* ============================
   About Section Styles
   ============================ */
.about-section {
	padding: 200px 20px 100px;
	position: relative;
}

.about-bg-title {
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	font-family: 'Lato', sans-serif;
	font-size: 180px;
	font-weight: 900;
	color: transparent;
	-webkit-text-stroke: 1px var(--main-blue);
	z-index: 0;
	white-space: nowrap;
	pointer-events: none;
}

.about-container {
	max-width: 1170px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

/* ABOUTヘッダー */
.about-header {
	gap: 20px;
	margin-bottom: 60px;
}

.about-header-char {
	width: 165px;
}

.about-header-dec {
	width: 155px;
	top: 60%;
}

/* ABOUT本文（2カラム） */
.about-content {
	display: flex;
	gap: 5px;
	align-items: flex-start;
	margin-bottom: 80px;
}

.about-text {
	flex: 1;
	font-size: 18px;
	line-height: 2;
}

.about-text p {
	margin-bottom: 0;
}

.about-diagram {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}
.about-diagram.is-animated {
	opacity: 1;
	transform: translateY(0);
}

.about-diagram img {
	width: 100%;
	max-width: 670px;
	height: auto;
}

/* 主な取引先 */
.about-partners {
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 10px 20px rgba(0,0,0,0.05);
	margin-bottom: 80px;
	padding: 50px 60px;
	text-align: center;
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}
.about-partners.is-animated {
	opacity: 1;
	transform: translateY(0);
}

.partners-title {
	display: block;
	width: 100%;
	background: var(--accent-yellow);
	color: var(--text-dark);
	text-align: center;
	padding: 12px 40px;
	font-size: 20px;
	font-weight: bold;
	border-radius: 50px;
	margin-bottom: 30px;
	box-sizing: border-box;
}

.partners-content {
	text-align: left;
}

.partners-group {
	margin-bottom: 25px;
}

.partners-group:last-child {
	margin-bottom: 0;
}

.partners-label {
	font-size: 18px;
	font-weight: bold;
	color: var(--main-blue);
	padding-bottom: 10px;
	border-bottom: 2px solid var(--main-blue);
	margin-bottom: 15px;
}

.partners-list {
	font-size: 15px;
	line-height: 2;
}

/* 拠点紹介 */
.about-locations {
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 10px 20px rgba(0,0,0,0.05);
	margin-bottom: 80px;
	padding: 50px 60px;
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}
.about-locations.is-animated {
	opacity: 1;
	transform: translateY(0);
}

.locations-title {
	display: block;
	width: 100%;
	background: var(--accent-yellow);
	color: var(--text-dark);
	text-align: center;
	padding: 12px 40px;
	font-size: 20px;
	font-weight: bold;
	border-radius: 50px;
	margin-bottom: 40px;
	box-sizing: border-box;
}

.locations-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 50px 40px;
}

.location-item {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.location-top {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	align-items: start;
}

.location-info {
	display: flex;
	flex-direction: column;
}

.location-name {
	font-size: 18px;
	font-weight: bold;
	color: var(--text-dark);
	margin: 0 0 15px;
	line-height: 1.5;
}

.location-zip {
	font-size: 15px;
	margin: 0 0 5px;
}

.location-address {
	font-size: 15px;
	line-height: 1.7;
	margin: 0 0 15px;
}

.location-btns {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 10px;
}

.location-btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	width: 100%;
	max-width: 200px;
	box-sizing: border-box;
	background: #fff;
	color: var(--main-blue);
	border: 2px solid var(--main-blue);
	text-decoration: none;
	padding: 10px 12px;
	border-radius: 10px;
	font-size: 13px;
	font-weight: bold;
	line-height: 1.4;
	text-align: center;
	transition: background 0.3s ease, transform 0.3s ease;
	box-shadow: 0 3px 8px rgba(0,0,0,0.1);
	position: relative;
}
.location-btn:hover {
	background: rgba(0, 113, 188, 0.05);
	transform: translateY(-2px);
}
.location-btn-text {
	flex: 1;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	min-width: 0;
}
.location-btn-sub {
	font-size: 12px;
	font-weight: bold;
	line-height: 1.3;
	white-space: nowrap;
}
.location-btn-arrow {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--main-blue);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	position: relative;
}
.location-btn-arrow::after {
	content: '';
	width: 7px;
	height: 7px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg) translateX(-1px);
}

.location-photo {
	width: 100%;
	aspect-ratio: 4 / 3;
	background: #eee;
	overflow: hidden;
}
.location-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.location-photo-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #999;
	font-size: 16px;
	background: #f0f0f0;
}

.location-map {
	width: 100%;
	aspect-ratio: 16 / 10;
	overflow: hidden;
}
.location-map iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

/* 工場見学インドアビュー */
.factory-view-section {
	padding: 160px 20px 100px;
	min-height: 100vh;
}

.factory-view-container {
	max-width: 1170px;
	margin: 0 auto;
}

.factory-view-card {
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 10px 20px rgba(0,0,0,0.05);
	position: relative;
}

.factory-view-card-title {
	position: relative;
	text-align: center;
	padding: 20px;
}

.factory-view-card-body {
	padding: 40px 50px 60px;
}

.factory-view-list {
	display: flex;
	flex-direction: column;
	gap: 60px;
}

.factory-view-item {
	scroll-margin-top: 100px;
}

.factory-view-item-title {
	font-size: 22px;
	font-weight: bold;
	color: var(--main-blue);
	padding-bottom: 12px;
	border-bottom: 2px solid var(--main-blue);
	margin: 0 0 25px;
}

.factory-view-embed {
	width: 100%;
	aspect-ratio: 16 / 10;
	background: #eee;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.factory-view-embed iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.factory-view-back {
	margin-top: 60px;
	text-align: center;
}

.factory-view-back-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: var(--main-blue);
	color: #fff;
	text-decoration: none;
	padding: 16px 50px;
	border-radius: 50px;
	font-size: 16px;
	font-weight: bold;
	transition: opacity 0.3s ease, transform 0.3s ease;
	box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.factory-view-back-link:hover {
	opacity: 0.9;
	transform: translateY(-2px);
}

/* 豊栄商会のここがすごい */
.about-amazing {
	margin-bottom: 80px;
}

.amazing-title-wrap {
	text-align: center;
	margin-bottom: 40px;
	opacity: 0;
	transform: scale(0.5);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.amazing-title-wrap.is-animated {
	opacity: 1;
	transform: scale(1);
}

.amazing-title-img {
	height: auto;
}

.amazing-title-pc {
	display: inline-block;
}

.amazing-title-sp {
	display: none;
}

.amazing-cards {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px;
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}
.amazing-cards.is-animated {
	opacity: 1;
	transform: translateY(0);
}

.amazing-card {
	background: #fff;
	border-radius: 20px;
	padding: 30px 25px;
	text-align: center;
	display: flex;
	flex-direction: column;
}

.amazing-card-header {
	display: block;
	width: 100%;
	background: var(--main-orange);
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	padding: 12px 25px;
	border-radius: 50px;
	margin-bottom: 20px;
	box-sizing: border-box;
}

.amazing-card-img {
	width: 100%;
	height: 120px;
	margin: 0 auto 15px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.amazing-card-img img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.amazing-card-text {
	font-size: 15px;
	line-height: 1.8;
	text-align: left;
	margin-top: auto;
}

/* 3分でわかる豊栄商会 */
.about-video {
	text-align: center;
}

.about-videos {
	text-align: center;
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}
.about-videos.is-animated {
	opacity: 1;
	transform: translateY(0);
}

.about-videos-title-wrap {
	text-align: center;
	margin-bottom: 60px;
}

.about-videos-title {
	position: relative;
	display: inline-block;
	width: 100%;
	max-width: 900px;
	font-size: 24px;
	font-weight: 900;
	color: var(--main-blue);
	border: 3px solid var(--main-blue);
	border-radius: 50px;
	padding: 20px 40px;
	background: #fff;
	box-sizing: border-box;
}
.about-videos-title::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: -18px;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 16px solid transparent;
	border-right: 16px solid transparent;
	border-top: 18px solid var(--main-blue);
}
.about-videos-title::before {
	content: '';
	position: absolute;
	left: 50%;
	bottom: -13px;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 13px solid transparent;
	border-right: 13px solid transparent;
	border-top: 15px solid #fff;
	z-index: 1;
}

.about-videos-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.about-video-card {
	text-align: left;
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}
.about-video-card.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.about-video-wrapper {
	max-width: 700px;
	margin: 0 auto 20px;
}

.video-placeholder {
	width: 100%;
	padding-bottom: 56.25%;
	background: #333;
	border-radius: 15px;
	position: relative;
}
.video-coming-soon {
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	font-family: 'Lato', sans-serif;
	font-size: 28px;
	font-weight: 700;
	letter-spacing: 0.15em;
	opacity: 0.6;
}

.about-video-title {
	font-size: 16px;
	font-weight: bold;
	margin-top: 22px;
}

.about-video-card .video-placeholder {
	border-radius: 8px;
}
.about-video-card .video-coming-soon {
	font-size: 20px;
}

.video-thumb {
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 8px;
	overflow: hidden;
	background: #eee;
	position: relative;
	padding: 0;
	border: none;
	cursor: pointer;
	display: block;
	transition: opacity 0.3s ease, transform 0.3s ease;
}
.video-thumb:hover {
	opacity: 0.9;
	transform: translateY(-2px);
}
.video-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.video-play-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	transition: background 0.3s ease;
}
.video-thumb:hover .video-play-icon {
	background: rgba(0, 0, 0, 0.85);
}
.video-play-icon::after {
	content: '';
	width: 0;
	height: 0;
	border-left: 18px solid #fff;
	border-top: 11px solid transparent;
	border-bottom: 11px solid transparent;
	margin-left: 4px;
}

/* 動画再生モーダル */
.video-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100000;
	display: none;
	align-items: center;
	justify-content: center;
}
.video-modal.is-open {
	display: flex;
}
.video-modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.85);
	cursor: pointer;
}
.video-modal-close {
	position: absolute;
	top: 20px;
	right: 25px;
	width: 45px;
	height: 45px;
	background: #fff;
	border: none;
	border-radius: 50%;
	font-size: 32px;
	line-height: 1;
	color: var(--main-blue);
	cursor: pointer;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	transition: transform 0.2s ease;
}
.video-modal-close:hover {
	transform: scale(1.1);
}
.video-modal-content {
	position: relative;
	width: 90%;
	max-width: 1100px;
	z-index: 1;
}
.video-modal-frame {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	background: #000;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.video-modal-frame iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* ============================
   Demand Section (アルミリサイクルの需要)
   ============================ */
.demand-section {
	padding: 100px 20px;
}

.demand-container {
	max-width: 1170px;
	margin: 0 auto;
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}
.demand-container.is-animated {
	opacity: 1;
	transform: translateY(0);
}

.demand-card {
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.demand-card-title {
	position: relative;
	text-align: center;
	padding: 20px;
}

/* 共通ピル型タイトル */
.pill-title {
	position: absolute;
	display: block;
	top: -40px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	max-width: 970px;
	font-size: 24px;
	font-weight: 900;
	color: var(--main-blue);
	border: 3px solid var(--main-blue);
	border-radius: 50px;
	padding: 15px 40px;
	background: #fff;
}

.demand-card-body {
	padding: 40px 50px;
}

.demand-card-body > p {
	font-size: 18px;
	line-height: 2;
	margin-bottom: 0;
}

.demand-chart-area {
	display: flex;
	align-items: center;
	gap: 30px;
	margin-top: 30px;
}

.demand-chart {
	flex: 1;
}

.demand-chart img {
	width: 100%;
	height: auto;
}

.demand-chart-pc {
	display: block;
}

.demand-chart-sp {
	display: none;
}

/* ============================
   Circulation Section (資源循環)
   ============================ */
.circulation-section {
	padding: 100px 20px;
}

.circulation-container {
	max-width: 1170px;
	margin: 0 auto;
}

.circulation-card {
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.circulation-card-title {
	position: relative;
	text-align: center;
	padding: 20px;
}

.circulation-card-body {
	padding: 40px 50px;
}

.circulation-text {
	font-size: 18px;
	line-height: 2;
	margin-bottom: 50px;
}

.circulation-text p {
	margin-bottom: 0;
}

.circulation-terms {
	margin-bottom: 60px;
}

.circulation-term {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 40px;
	align-items: center;
	margin-bottom: 40px;
}

.circulation-term:last-child {
	margin-bottom: 0;
}

.term-body {
	min-width: 0;
}

.term-image {
	width: 100%;
	aspect-ratio: 4 / 3;
	background: #eee;
	overflow: hidden;
}
.term-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.term-image-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #999;
	font-size: 16px;
	background: #f0f0f0;
}

.term-title {
	font-size: 22px;
	font-weight: 900;
	color: var(--main-blue);
	margin-bottom: 10px;
}

.term-line {
	width: 100%;
	height: 2px;
	background: var(--main-blue);
	margin-bottom: 10px;
}

.term-desc {
	font-size: 16px;
	line-height: 1.8;
}

/* 資源循環図 */
.circulation-diagram {
	margin-bottom: 60px;
	text-align: center;
}

.circulation-diagram img {
	width: 100%;
	max-width: 800px;
	height: auto;
}

/* CO₂削減効果 */
.co2-reduction {
	text-align: center;
	position: relative;
}

.co2-reduction img {
	width: 100%;
	height: auto;
}

.co2-main-img {
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}
.co2-main-img.is-animated {
	opacity: 1;
	transform: translateY(0);
}

.co2-reduction-bottom {
	position: absolute;
	bottom: 80px;
	left: 50%;
	transform: translateX(-50%) translateY(50px);
	max-width: 870px;
	width: 100%;
	opacity: 0;
	transition: opacity 0.8s ease, transform 0.8s ease;
}
.co2-reduction-bottom.is-animated {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

.co2-detail-img {
	width: 100%;
	height: auto;
}

.co2-badge {
	width: 155px !important;
	position: absolute;
	top: -20px;
	left: -50px;
	z-index: 1;
}

/* ============================
   Usage Section (どこに使われている？)
   ============================ */
.usage-section {
	padding: 100px 20px;
}

.usage-container {
	max-width: 1170px;
	margin: 0 auto;
}

.usage-card {
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.usage-card-title {
	position: relative;
	text-align: center;
	padding: 20px;
}

.usage-card-body {
	padding: 40px 50px;
}

.usage-lead {
	font-size: 18px;
	line-height: 2;
	margin-bottom: 30px;
}

.usage-image {
	text-align: center;
}

.usage-img-wrap {
	position: relative;
	max-width: 800px;
	width: 100%;
	margin: 0 auto;
	aspect-ratio: 1102 / 1023.29;
}

.usage-img-layer {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	display: block;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s;
}

.usage-img-layer.is-visible {
	opacity: 1;
	pointer-events: auto;
}

.usage-hotspot {
	position: absolute;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 3px solid var(--main-orange);
	background: rgba(255, 255, 255, 0.4);
	cursor: pointer;
	transform: translate(-50%, -50%);
	transition: background 0.3s, transform 0.3s;
	padding: 0;
}

.usage-hotspot:hover {
	background: rgba(255, 107, 0, 0.5);
	transform: translate(-50%, -50%) scale(1.2);
}

.usage-hotspot.is-active {
	background: rgba(255, 107, 0, 0.4);
	transform: translate(-50%, -50%);
}



/* ============================
   Works Section (仕事紹介)
   ============================ */
.works-section {
	padding: 200px 20px 100px;
	position: relative;
}

.works-bg-title {
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	font-family: 'Lato', sans-serif;
	font-size: 180px;
	font-weight: 900;
	color: transparent;
	-webkit-text-stroke: 1px var(--main-blue);
	z-index: 0;
	white-space: nowrap;
	pointer-events: none;
}

.works-container {
	max-width: 1170px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

/* WORKSヘッダー */
.works-header {
	gap: 20px;
	margin-bottom: 40px;
}

.works-header-char {
	width: 165px;
}

.works-header-dec {
	width: 155px;
}

.works-title-ja {
	font-size: 36px;
}

.works-subtitle {
	font-size: 20px;
}

/* メイン写真 */
.works-photo {
	margin-bottom: 40px;
	border-radius: 20px;
	overflow: hidden;
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}
.works-photo.is-animated {
	opacity: 1;
	transform: translateY(0);
}

.works-photo img {
	width: 100%;
	height: auto;
	display: block;
}

/* そもそも取鍋とは？ */
.works-about {
	margin-bottom: 50px;
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}
.works-about.is-animated {
	opacity: 1;
	transform: translateY(0);
}

.works-about-title {
	font-size: 24px;
	font-weight: 900;
	color: var(--text-dark);
	margin-bottom: 20px;
}

.works-about-text {
	font-size: 18px;
	line-height: 2;
}

.works-about-text p {
	margin-bottom: 0;
}

/* 主な仕事内容 */
.works-main-card {
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 10px 20px rgba(0,0,0,0.05);
	margin-top: 120px;
	margin-bottom: 40px;
	max-width: 1170px;
	margin-left: auto;
	margin-right: auto;
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}
.works-main-card.is-animated {
	opacity: 1;
	transform: translateY(0);
}

.works-main-card-title {
	position: relative;
	text-align: center;
	padding: 20px;
}

.works-main-card-body {
	padding: 40px 100px;
}

.works-main-lead {
	text-align: center;
	font-size: 16px;
	margin-bottom: 40px;
}

.works-flow {
	display: flex;
	gap: 40px;
	align-items: flex-start;
	margin-top: 100px;
}

.works-flow-col {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.works-flow-header {
	text-align: center;
	margin-bottom: 20px;
	background: #E3EFF8;
	border-radius: 20px;
	padding: 180px 50px 30px;
	width: 460px;
	height: 355px;
	position: relative;
	box-sizing: border-box;
}

.works-flow-icon {
	position: absolute;
	top: -80px;
	left: 50%;
	transform: translateX(-50%);
}
.works-flow-col:last-child .works-flow-icon {
	top: -65px;
}

.works-flow-icon img {
	width: 100%;
	height: auto;
}

.works-flow-cat {
	display: inline-block;
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	background: var(--main-blue);
	border-radius: 50px;
	padding: 10px 30px;
	margin-bottom: 15px;
}

.works-flow-desc {
	font-size: 14px;
	line-height: 1.8;
	text-align: left;
}

.works-flow-arrow {
	text-align: center;
	margin: 15px 0;
}

.works-flow-arrow::after {
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-left: 15px solid transparent;
	border-right: 15px solid transparent;
	border-top: 20px solid #0068B7;
}

.works-flow-step {
	width: 100%;
	border-radius: 20px;
	border: 3px solid var(--main-blue);
	position: relative;
}

.works-flow-step::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 20px;
	background: var(--main-blue);
}

.works-flow-col:first-child .works-flow-step {
	margin-bottom: 250px;
}

.works-flow-col:first-child .works-flow-step::after {
	height: 255px;
	top: 100%;
}

.works-flow-col:first-child .works-flow-step:last-of-type {
	margin-bottom: 0;
}

.works-flow-col:first-child .works-flow-step.step-last::after {
	height: 0;
}

.works-flow-col:last-child .works-flow-step {
	margin-bottom: 100px;
}

.works-flow-col:last-child .works-flow-step::after {
	height: 105px;
	top: 100%;
}

.works-flow-col:last-child .works-flow-step:last-of-type {
	margin-bottom: 0;
}

.works-flow-col:last-child .works-flow-step:last-of-type::after {
	display: none;
}


.works-flow-img {
	overflow: hidden;
	margin-bottom: 10px;
}

.works-flow-img img {
	width: 100%;
	height: auto;
	display: block;
}

.works-flow-text {
	font-size: 15px;
	line-height: 1.8;
	padding: 26px 30px;
}

.works-flow-bottom {
	width: 400px;
	margin: 15px auto;
}

.works-flow-bottom img {
	width: 100%;
	height: auto;
}

/* ============================
   Yarigai Section (やりがい)
   ============================ */
.yarigai-section {
	padding: 100px 20px;
}

.yarigai-container {
	max-width: 1170px;
	margin: 0 auto;
}

.yarigai-title-wrap {
	text-align: center;
	margin-bottom: 50px;
}

.yarigai-title {
	display: inline-block;
	font-size: 28px;
	font-weight: 900;
	color: var(--text-dark);
	border: 3px solid var(--main-blue);
	border-radius: 50px;
	padding: 15px 50px;
	background: #fff;
}

.yarigai-list {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.yarigai-item {
	display: flex;
	align-items: center;
	gap: 30px;
}

.yarigai-left {
	justify-content: flex-start;
}

.yarigai-right {
	justify-content: flex-end;
}

.yarigai-photo {
	width: 200px;
	border-radius: 50%;
}

.yarigai-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	/* iOS Safari 対策: hardware acceleration とレンダリングのヒント */
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.yarigai-balloon {
	background: #E3EFF7;
	border-radius: 20px;
	padding: 30px 40px;
	position: relative;
	max-width: 600px;
}

.yarigai-balloon p {
	font-size: 18px;
	line-height: 1.8;
}

/* 左写真の場合：吹き出し左に三角 */
.yarigai-left .yarigai-balloon::before {
	content: '';
	position: absolute;
	left: -15px;
	top: 50%;
	transform: translateY(-50%);
	border-width: 10px 15px 10px 0;
	border-style: solid;
	border-color: transparent #E3EFF7 transparent transparent;
}

/* 右写真の場合：吹き出し右に三角 */
.yarigai-right .yarigai-balloon::after {
	content: '';
	position: absolute;
	right: -15px;
	top: 50%;
	transform: translateY(-50%);
	border-width: 10px 0 10px 15px;
	border-style: solid;
	border-color: transparent transparent transparent #E3EFF7;
}

/* ============================
   Interview Section (先輩社員紹介)
   ============================ */
.interview-section {
	padding: 200px 20px 100px;
	position: relative;
	overflow: hidden;
}

.interview-bg-title {
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	font-family: 'Lato', sans-serif;
	font-size: 180px;
	font-weight: 900;
	color: transparent;
	-webkit-text-stroke: 1px var(--main-blue);
	z-index: 0;
	white-space: nowrap;
	pointer-events: none;
}

.interview-container {
	max-width: 1170px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

/* INTERVIEWヘッダー */
.interview-header {
	gap: 10px;
}

.interview-header-char {
	width: 260px;
}

.interview-title {
	font-family: 'Lato', sans-serif;
	font-size: 80px;
	font-weight: 900;
	color: var(--main-blue);
	line-height: 1.1;
	margin-bottom: 0;
	display: none;
}

.interview-subtitle {
	color: var(--main-blue);
}

.interview-header-dec {
	width: 230px;
}

/* 社員カード */
.interview-cards {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px;
}

.interview-card {
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 20px rgba(0,0,0,0.05);
	text-decoration: none;
	color: var(--text-dark);
	display: block;
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s;
}
.interview-card.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.interview-card.is-visible:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.interview-card-photo {
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: #f5f5f5;
}

.interview-card-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.interview-card-info {
	padding: 20px 25px 25px;
	text-align: center;
}

.interview-card-dept {
	font-size: 14px;
	color: #666;
	margin-bottom: 5px;
}

.interview-card-name {
	font-family: 'Lato', sans-serif;
	font-size: 22px;
	font-weight: 900;
	margin-bottom: 5px;
}

.interview-card-year {
	font-size: 14px;
	color: #666;
}

/* ============================
   Interview Modal
   ============================ */
.modal-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	z-index: 9999;
	justify-content: center;
	align-items: flex-start;
	overflow-y: auto;
	padding: 40px 20px;
	box-sizing: border-box;
}

.modal-overlay.active {
	display: flex;
}

.modal-content {
	background: #fff;
	border-radius: 20px;
	max-width: 700px;
	width: 100%;
	position: relative;
	margin: auto;
}

.modal-close {
	position: absolute;
	top: -15px;
	right: -15px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: none;
	background: var(--main-blue);
	color: #fff;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal-hero {
	position: relative;
	width: 100%;
	aspect-ratio: 6 / 3;
	overflow: hidden;
	border-radius: 20px 20px 0 0;
}

.modal-hero img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.modal-hero-info {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 104, 183, 0.7);
	color: #fff;
	padding: 15px 25px;
	display: flex;
	align-items: center;
	gap: 20px;
}

.modal-hero-info span {
	font-size: 14px;
}

.modal-hero-info strong {
	font-family: 'Lato', sans-serif;
	font-size: 22px;
	font-weight: 900;
}

.modal-inner {
	padding: 30px 40px 40px;
}

.modal-tabs {
	display: flex;
	margin-bottom: 30px;
}

.modal-tab {
	flex: 1;
	padding: 12px 20px;
	border: 2px solid var(--main-blue);
	border-radius: 30px 0 0 30px;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s;
	background: #fff;
	color: var(--main-blue);
}

.modal-tab.active {
	background: var(--main-blue);
	color: #fff;
	border: 2px solid var(--main-blue);
}

.modal-tab[data-tab="private"] {
	color: var(--main-orange);
	border: 2px solid var(--main-orange);
	border-radius: 0 30px 30px 0;
}

.modal-tab[data-tab="private"].active {
	background: #E8781F;
	color: #fff;
}

.modal-tab-content {
	display: none;
}

.modal-tab-content.active {
	display: block;
}

.modal-qa-item {
	display: flex;
	gap: 20px;
	margin-bottom: 40px;
	align-items: flex-start;
}

.modal-qa-item.reverse {
	flex-direction: row-reverse;
}

.modal-qa-item.full {
	display: block;
}

.modal-qa-text {
	flex: 1;
}

.modal-qa-q {
	font-size: 18px;
	font-weight: bold;
	color: var(--main-blue);
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.modal-qa-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--main-blue);
	color: #fff;
	font-family: 'Lato', sans-serif;
	font-size: 16px;
	font-weight: 900;
	flex-shrink: 0;
}

[data-tab-content="private"] .modal-qa-q {
	color: var(--main-orange);
}

[data-tab-content="private"] .modal-qa-icon {
	background: var(--main-orange);
}

.modal-hero-info.orange {
	background: rgba(255, 107, 0, 0.6);
}

.modal-close.orange {
	background: var(--main-orange);
}

.modal-qa-text p {
	font-size: 14px;
	line-height: 1.8;
}

.modal-qa-img {
	width: 220px;
	flex-shrink: 0;
	overflow: hidden;
}

.modal-qa-img img {
	width: 100%;
	height: auto;
	display: block;
}

.modal-schedule {
	margin-bottom: 30px;
}

.modal-schedule img {
	width: 100%;
	height: auto;
}

.modal-photos {
	display: flex;
	gap: 15px;
}

.modal-photo {
	flex: 1;
	text-align: center;
}

.modal-photo-label {
	font-size: 13px;
	font-weight: bold;
	color: #fff;
	background: var(--main-blue);
	border-radius: 5px;
	padding: 4px 10px;
	margin-bottom: 8px;
	display: inline-block;
}

.modal-photo img {
	width: 100%;
	height: auto;
	border-radius: 10px;
}

/* Modal SP */
@media (max-width: 768px) {
	[class$="-section"] {
		padding-bottom: 20px;
	}
	.modal-overlay {
		padding: 20px 10px;
	}
	.modal-inner {
		padding: 20px 15px 30px;
	}
	.modal-qa-item,
	.modal-qa-item.reverse {
		flex-direction: column;
	}
	.modal-qa-img {
		width: 100%;
	}
	.modal-schedule {
		max-height: 75vh;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
	}
	.modal-schedule img {
		width: auto;
		height: 75vh;
		max-height: 75vh;
	}
	.modal-photos {
		flex-direction: column;
	}
}

/* ============================
   Keyword Section (数字で見る豊栄商会)
   ============================ */
.keyword-section {
	padding: 200px 20px 100px;
	position: relative;
	overflow: hidden;
}

.keyword-bg-title {
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	font-family: 'Lato', sans-serif;
	font-size: 180px;
	font-weight: 900;
	color: transparent;
	-webkit-text-stroke: 1px var(--main-blue);
	z-index: 0;
	white-space: nowrap;
	pointer-events: none;
}

.keyword-container {
	max-width: 1170px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

/* KEYWORDヘッダー */
.keyword-header-char {
	width: 150px;
}

.keyword-title-ja {
	font-size: 36px;
}

.keyword-subtitle {
}

.keyword-header-numbers {
	width: 100px;
}

/* 数字カード */
.keyword-cards {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 25px;
	margin-bottom: 25px;
}

.keyword-card {
	background: #fff;
	border-radius: 20px;
	padding: 30px;
	text-align: center;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
	opacity: 0;
	transform: scale(0.5);
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.keyword-card.is-visible {
	opacity: 1;
	transform: scale(1);
}

.keyword-card-label {
	display: inline-block;
	width: 100%;
	background: var(--accent-yellow);
	color: var(--text-dark);
	font-size: 20px;
	font-weight: bold;
	padding: 6px 20px;
	border-radius: 50px;
	margin-bottom: 15px;
	box-sizing: border-box;
}

.keyword-card-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 15px;
}

.keyword-card-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.keyword-card-img {
	margin: 0 auto 10px;
}

.keyword-card-img img {
	width: 100%;
	height: auto;
}

.keyword-card-value {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 8px;
}

.keyword-num {
	font-family: 'Lato', sans-serif;
	font-size: 48px;
	font-weight: 900;
	color: var(--main-blue);
}

.keyword-card-note {
	font-size: 15px;
	color: #999;
}

/* 各カードの画像幅 */
.keyword-cards:first-of-type .keyword-card:nth-child(1) .keyword-card-img { width: 228px; }
.keyword-cards:first-of-type .keyword-card:nth-child(2) .keyword-card-img { width: 198px; }
.keyword-cards:first-of-type .keyword-card:nth-child(3) .keyword-card-img { width: 174px; }
.keyword-cards:last-of-type .keyword-card:nth-child(1) .keyword-card-img { width: 174px; }
.keyword-cards:last-of-type .keyword-card:nth-child(2) .keyword-card-img { width: 174px; }
.keyword-cards:last-of-type .keyword-card:nth-child(3) .keyword-card-img { width: 247px; }

/* 実はすごい 受賞カード */
.keyword-awards {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 25px;
	margin-top: 25px;
}

.keyword-award-card {
	background: #fff;
	border-radius: 20px;
	padding: 30px 20px 25px;
	text-align: center;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
	position: relative;
	opacity: 0;
	transform: scale(0.5);
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.keyword-award-card.is-visible {
	opacity: 1;
	transform: scale(1);
}

.keyword-award-badge {
	position: absolute;
	top: -10px;
	right: 15px;
	background: var(--main-orange);
	color: #fff;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	line-height: 1.2;
}

.award-badge-sub {
	font-size: 11px;
	font-weight: bold;
}

.award-badge-main {
	font-size: 18px;
	font-weight: 900;
	font-style: italic;
}

.keyword-award-icon {
	margin: 0 auto 15px;
}

.keyword-award-card:nth-child(1) .keyword-award-icon { width: 100%; }
.keyword-award-card:nth-child(2) .keyword-award-icon { width: 100%; }
.keyword-award-card:nth-child(3) .keyword-award-icon { width: 100%; }

.keyword-award-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.keyword-award-title {
	margin-bottom: 10px;
}

.keyword-award-title img {
	width: 100%;
	height: auto;
}

.keyword-award-card:nth-child(1) .keyword-award-title { width: 246px; margin-left: auto; margin-right: auto; }
.keyword-award-card:nth-child(2) .keyword-award-title { width: 336px; margin-left: auto; margin-right: auto; }
.keyword-award-card:nth-child(3) .keyword-award-title { width: 323px; margin-left: auto; margin-right: auto; }

.keyword-award-note {
	font-size: 12px;
	color: #999;
	line-height: 1.6;
}

/* ============================
   Benefit Section (福利厚生)
   ============================ */
.benefit-section {
	padding: 200px 20px 100px;
	position: relative;
	overflow: hidden;
}

.benefit-bg-title {
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	font-family: 'Lato', sans-serif;
	font-size: 180px;
	font-weight: 900;
	color: transparent;
	-webkit-text-stroke: 1px var(--main-blue);
	z-index: 0;
	white-space: nowrap;
	pointer-events: none;
}

.benefit-container {
	max-width: 1170px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

/* BENEFITヘッダー */
.benefit-header {
	gap: 10px;
	margin-bottom: 40px;
}

.benefit-header-char {
	width: 175px;
}

.benefit-header-dec {
	width: 145px;
}

/* ナビリンク */
.benefit-nav {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 15px;
	margin-bottom: 60px;
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}
.benefit-nav.is-animated {
	opacity: 1;
	transform: translateY(0);
}

.benefit-nav-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #fff;
	border-radius: 10px;
	padding: 25px 20px;
	font-size: 16px;
	font-weight: bold;
	color: var(--main-blue);
	text-decoration: none;
	transition: background 0.3s;
}

.benefit-nav-link:hover {
	background: #EBF4FF;
}

.benefit-nav-arrow {
	color: var(--main-blue);
	font-size: 14px;
}

.benefit-nav-small {
	font-size: 12px;
	font-weight: normal;
}

/* 福利厚生モーダル */
.benefit-modal-content {
	background: #fff;
	border-radius: 20px;
	border: 3px solid var(--main-blue);
	max-width: 970px;
	width: 100%;
	margin: auto;
	padding: 60px 60px 50px;
	position: relative;
	text-align: center;
	box-sizing: border-box;
}

.benefit-modal-close {
	position: absolute;
	top: -15px;
	right: -15px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--main-blue);
	color: #fff;
	border: none;
	font-size: 28px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	z-index: 1;
}

.benefit-modal-header {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	margin-bottom: 25px;
}

.benefit-modal-title {
	font-size: 32px;
	font-weight: 900;
	color: var(--main-blue);
}

.benefit-modal-badge {
	position: absolute;
	top: 15%;
	right: 25%;
	width: 100px;
}

.benefit-modal-subtitle {
	font-size: 24px;
	font-weight: 900;
	color: var(--main-blue);
	margin-bottom: 25px;
	display: inline-block;
	background: linear-gradient(transparent 60%, var(--accent-yellow) 60%);
}

.benefit-modal-subtitle-plain {
	font-size: 24px;
	font-weight: 900;
	color: var(--main-blue);
	margin-bottom: 25px;
}

.benefit-modal-body {
	font-size: 16px;
	line-height: 2;
	color: var(--text-dark);
}

.benefit-modal-body-left {
	text-align: left;
}

/* 共通ブロック */
.benefit-block {
	margin-bottom: 60px;
}

.benefit-block-title-wrap {
	text-align: center;
	margin-bottom: 30px;
}

.benefit-block-title {
	display: inline-block;
	font-size: 28px;
	font-weight: 900;
	color: var(--text-dark);
	border: 3px solid var(--main-blue);
	border-radius: 50px;
	padding: 15px 50px;
	background: #fff;
}

.benefit-heading {
	font-size: 20px;
	font-weight: 900;
	color: var(--main-blue);
	margin-bottom: 10px;
	margin-top: 30px;
}

.benefit-heading:first-child {
}

.benefit-text {
	font-size: 18px;
	line-height: 1.8;
	margin-bottom: 0;
}

.benefit-highlight {
}

.benefit-note-right {
	text-align: right;
	font-size: 12px;
	color: #999;
	margin-top: 5px;
}

/* 豊栄商会自慢の福利厚生 (2カラムグリッド) */
.benefit-feature-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px 60px;
	margin-top: 20px;
}

.benefit-feature {
	display: flex;
	flex-direction: column;
}

.benefit-feature-img {
	width: 100%;
	aspect-ratio: 4 / 3;
	border: 4px solid var(--main-blue);
	border-radius: 20px;
	overflow: hidden;
	background: #f0f0f0;
	margin-bottom: 20px;
}
.benefit-feature-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.benefit-feature-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #999;
	font-size: 16px;
	background: #f0f0f0;
}

.benefit-feature-title {
	font-size: 20px;
	font-weight: bold;
	color: var(--main-blue);
	line-height: 1.5;
	margin: 0 0 10px;
}

.benefit-feature-desc {
	font-size: 15px;
	line-height: 1.8;
	margin: 0;
}

/* 3カラムカード */
.benefit-cards-3 {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 20px;
	margin-top: 20px;
	margin-bottom: 10px;
}

.benefit-small-card {
	background: #fff;
	border: 3px solid var(--main-blue);
	border-radius: 20px;
	overflow: hidden;
}

.benefit-small-card-img {
	width: 100%;
	aspect-ratio: 3 / 2;
	overflow: hidden;
	background: #f5f5f5;
}

.benefit-small-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.benefit-small-card-body {
	padding: 15px;
}

.benefit-small-card-title {
	font-size: 17px;
	font-weight: 500;
	margin-bottom: 5px;
}

.benefit-small-card-text {
	font-size: 15px;
	line-height: 1.6;
	color: #666;
}

/* 教育制度フロー */
.benefit-flow {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	margin: 25px 0;
	padding: 30px;
	background: #E3EFF7;
}

.benefit-flow-step {
	padding: 12px 30px;
	border-radius: 50px;
	font-size: 16px;
	font-weight: bold;
	color: #fff;
}

.benefit-flow-blue {
	background: var(--main-blue);
}

.benefit-flow-cross {
	font-size: 24px;
	font-weight: bold;
	color: var(--text-dark);
}

/* 資格取得例 */
.benefit-qualification {
	margin-top: 40px;
}

.benefit-qualification-label {
	font-size: 18px;
	font-weight: bold;
	color: var(--main-blue);
	padding-bottom: 10px;
	border-bottom: 2px solid var(--main-blue);
	margin-bottom: 15px;
}

.benefit-qualification-list {
	font-size: 15px;
	line-height: 1.8;
}

.benefit-sub-heading {
	font-size: 18px;
	font-weight: bold;
	color: var(--main-blue);
	margin: 20px 0 10px;
}

.qualification-image-wrap {
	margin-top: 25px;
}

.qualification-image-link {
	display: block;
	cursor: zoom-in;
	transition: opacity 0.3s ease;
}
.qualification-image-link:hover {
	opacity: 0.85;
}
.qualification-image-link img {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	display: block;
	height: auto;
}

/* 画像拡大モーダル */
.image-zoom-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100000;
	display: none;
	align-items: center;
	justify-content: center;
}
.image-zoom-modal.is-open {
	display: flex;
}
.image-zoom-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.85);
	cursor: zoom-out;
}
.image-zoom-close {
	position: absolute;
	top: 20px;
	right: 25px;
	width: 45px;
	height: 45px;
	background: #fff;
	border: none;
	border-radius: 50%;
	font-size: 32px;
	line-height: 1;
	color: var(--main-blue);
	cursor: pointer;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	transition: transform 0.2s ease;
}
.image-zoom-close:hover {
	transform: scale(1.1);
}
.image-zoom-content {
	position: relative;
	max-width: 92%;
	max-height: 90vh;
	z-index: 1;
}
.image-zoom-img {
	max-width: 100%;
	max-height: 90vh;
	display: block;
	object-fit: contain;
}

/* ============================
   Honne Section (本音大調査)
   ============================ */
.honne-section {
	padding: 200px 20px 100px;
	position: relative;
	overflow: hidden;
}

.honne-bg-title {
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	font-family: 'Lato', sans-serif;
	font-size: 180px;
	font-weight: 900;
	color: transparent;
	-webkit-text-stroke: 1px var(--main-blue);
	z-index: 0;
	white-space: nowrap;
	pointer-events: none;
}

.honne-container {
	max-width: 1170px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

/* HONNEヘッダー */
.honne-header-numbers {
	width: 100px;
}

.honne-title-ja {
}

.honne-subtitle {
}

.honne-header-dec {
	width: 145px;
}

/* 質問ブロック */
.honne-question {
	margin-bottom: 60px;
}

.honne-question:last-child {
	margin-bottom: 0;
}

.honne-question-title-wrap {
	text-align: center;
	margin-bottom: 30px;
}

.honne-question-title {
	display: inline-block;
	font-size: 24px;
	font-weight: 900;
	color: var(--text-dark);
	border: 2px solid var(--text-dark);
	border-radius: 50px;
	padding: 12px 40px;
	background: #fff;
}

.honne-question-content {
	display: flex;
	align-items: center;
	gap: 30px;
}

.honne-chart {
	flex: 1;
	max-width: 400px;
}

.honne-chart img {
	width: 100%;
	height: auto;
}

.honne-comment {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
}

.honne-balloon {
	background: #fff;
	border: 10px solid #7FB8DD;
	border-radius: 100px;
	padding: 40px;
	max-width: 400px;
	position: relative;
}

.honne-balloon::before {
	content: '';
	position: absolute;
	bottom: -22px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 12px solid transparent;
	border-right: 12px solid transparent;
	border-top: 14px solid #7FB8DD;
	z-index: 1;
}

.honne-balloon p {
	font-size: 16px;
	line-height: 1.8;
}

.honne-char {
	height: 300px;
	width: auto;
}

.honne-char img {
	height: 100%;
	width: auto;
}

/* ============================
   Quiz Section (豊栄商会クイズ)
   ============================ */
.quiz-section {
	padding: 80px 20px;
}

.quiz-container {
	max-width: 1170px;
	margin: 0 auto;
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}
.quiz-container.is-animated {
	opacity: 1;
	transform: translateY(0);
}

.quiz-card {
	background: #fff;
	padding: 40px 50px;
	box-shadow: 0 10px 20px rgba(0,0,0,0.05);
	text-align: center;
}

.quiz-card-inner {
	margin-bottom: 30px;
}

.quiz-card-inner img {
	width: 100%;
	height: auto;
}

.quiz-ttl-sp {
	display: none;
}

.quiz-card-text {
	flex: 1;
}

.quiz-card-title {
	font-size: 36px;
	font-weight: 900;
	color: var(--main-blue);
	line-height: 1.4;
}

.quiz-maru {
	color: var(--main-orange);
	font-size: 42px;
}

.quiz-batsu {
	color: #999;
	font-size: 42px;
}

.quiz-card-char {
	width: 120px;
	flex-shrink: 0;
}

.quiz-card-char img {
	width: 100%;
	height: auto;
}

.quiz-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
}

.quiz-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 15px 30px;
	border: 3px solid #ccc;
	border-radius: 10px;
	text-decoration: none;
	color: var(--text-dark);
	background: #e8e8e8;
	font-family: inherit;
	cursor: pointer;
	transition: border-color 0.3s, box-shadow 0.3s, transform 0.2s;
	min-width: 150px;
}

.quiz-btn:hover {
	border-color: var(--main-blue);
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.quiz-btn--active {
	background: var(--main-blue);
	border-color: var(--main-blue);
	color: #fff;
}

.quiz-btn--active:hover {
	background: #0060a0;
	border-color: #0060a0;
}

.quiz-btn-label {
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 3px;
}

.quiz-btn-start {
	font-family: 'Lato', sans-serif;
	font-size: 28px;
	font-weight: 900;
}

/* ============================
   Quiz Modal (ポップアップ)
   ============================ */
.quiz-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 20000;
	align-items: center;
	justify-content: center;
}
.quiz-modal.is-open {
	display: flex;
}
.quiz-modal-overlay {
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: rgba(0,0,0,0.5);
}
.quiz-modal-content {
	position: relative;
	background: #fff;
	width: 90%;
	max-width: 970px;
	max-height: 90vh;
	overflow-y: auto;
	padding: 40px 40px 35px;
	box-shadow: 0 15px 40px rgba(0,0,0,0.2);
	animation: qmFadeIn 0.3s ease;
	text-align: center;
}
@keyframes qmFadeIn {
	from { opacity: 0; transform: scale(0.95) translateY(10px); }
	to { opacity: 1; transform: scale(1) translateY(0); }
}
.quiz-modal-close {
	position: absolute;
	top: 10px; right: 15px;
	background: none; border: none;
	font-size: 30px; color: #999;
	cursor: pointer; line-height: 1;
}
.quiz-modal-close:hover { color: #333; }

/* Screen toggle */
.qm-screen { display: none; }
.qm-screen.active { display: block; animation: qmFadeIn 0.3s ease; }

/* Title banner */
.qm-title-banner { margin-bottom: 15px; }
.qm-title-banner img { width: 100%; height: auto; }
.qm-ttl-sp { display: none; }

/* Question */
.qm-category {
	color: var(--main-blue);
	font-size: 16px; font-weight: bold;
	margin-bottom: 5px;
}
.qm-qnumber {
	font-family: 'Lato', sans-serif;
	font-size: 40px; font-weight: 900;
	color: var(--main-blue);
	border-bottom: 3px solid var(--main-blue);
	display: inline-block;
	padding-bottom: 5px;
	margin-bottom: 15px;
}
.qm-qtext {
	font-size: 18px; font-weight: bold;
	line-height: 1.8; text-align: left;
	margin-bottom: 25px; padding: 0 10px;
}

/* ○× buttons */
.qm-answer-buttons {
	display: flex; gap: 20px;
	justify-content: center;
}
.qm-answer-btn {
	width: 45%; max-width: 240px;
	aspect-ratio: 5 / 3;
	border: 3px solid #1255A4;
	border-radius: 15px; cursor: pointer;
	display: flex; align-items: center; justify-content: center;
	transition: transform 0.2s, box-shadow 0.2s;
}
.qm-answer-btn:hover {
	transform: scale(1.03);
	box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.qm-answer-btn:active { transform: scale(0.97); }
.qm-btn-maru {
	background: var(--main-orange);
	border-color: var(--main-orange);
}
.qm-btn-batsu {
	background: #fff;
	border-color: #1255A4;
}
.qm-answer-icon { width: 55px; height: 55px; }

/* Answer screen */
.qm-answer-title {
	font-size: 38px; font-weight: 900;
	margin-bottom: 5px;
}
.qm-answer-title.correct { color: var(--main-orange); }
.qm-answer-title.wrong { color: var(--main-blue); }

.qm-illust {
	position: relative;
	margin: 5px auto 15px;
	width: 160px; height: 180px;
}
.qm-worker { width: 100%; height: 100%; object-fit: contain; }

/* Wind animation (不正解) */
.qm-wind {
	position: absolute;
	top: 15%; right: -35px;
	width: 60px; height: 80px;
	pointer-events: none;
}
.qm-wind-line {
	display: block;
	position: absolute;
	right: 0;
	height: 3px;
	border-radius: 3px;
	background: #89C4E8;
	opacity: 0;
	animation: qmWind 1.8s ease-in-out infinite;
}
.qm-wind-line:nth-child(1) {
	top: 0;
	width: 35px;
	animation-delay: 0s;
}
.qm-wind-line:nth-child(2) {
	top: 18px;
	width: 50px;
	animation-delay: 0.3s;
}
.qm-wind-line:nth-child(3) {
	top: 36px;
	width: 28px;
	animation-delay: 0.6s;
}
@keyframes qmWind {
	0% { opacity: 0; transform: translateX(20px) scaleX(0.3); }
	30% { opacity: 1; transform: translateX(0) scaleX(1); }
	70% { opacity: 1; transform: translateX(-15px) scaleX(1); }
	100% { opacity: 0; transform: translateX(-40px) scaleX(0.5); }
}

/* Confetti */
.qm-confetti {
	position: absolute;
	top: 0; left: -40px; right: -40px; bottom: 0;
	pointer-events: none; overflow: visible;
}
.qm-confetti-piece {
	position: absolute;
	width: 10px; height: 10px;
	opacity: 0;
	animation: qmConfetti 1.5s ease-out forwards;
}
@keyframes qmConfetti {
	0% { opacity: 1; transform: translateY(-20px) rotate(0deg); }
	100% { opacity: 0; transform: translateY(160px) rotate(360deg); }
}

.qm-answer-result {
	font-size: 20px; font-weight: 900;
	margin-bottom: 12px;
}
.qm-answer-mark { font-size: 26px; font-weight: 900; }
.qm-answer-mark.maru { color: var(--main-orange); }
.qm-answer-mark.batsu { color: var(--main-blue); }

.qm-explanation {
	font-size: 15px; font-weight: bold;
	line-height: 1.8; margin-bottom: 20px;
	padding: 0 5px;
}

/* Result screen */
.qm-trophy { margin: 0 auto 5px; width: 90px; }
.qm-trophy-svg { width: 100%; height: auto; }

.qm-score {
	display: flex; align-items: baseline;
	justify-content: center; gap: 2px;
	margin-bottom: 15px; flex-wrap: wrap;
}
.qm-score-badge {
	background: var(--main-orange); color: #fff;
	font-size: 13px; font-weight: 900;
	padding: 4px 14px; border-radius: 30px;
	margin-right: 8px; align-self: center;
}
.qm-score-num {
	font-family: 'Lato', sans-serif;
	font-size: 70px; font-weight: 900;
	color: var(--main-orange); line-height: 1;
}
.qm-score-unit { font-size: 28px; font-weight: 900; }
.qm-score-sep { font-size: 28px; color: #888; margin: 0 6px; }
.qm-score-total {
	font-family: 'Lato', sans-serif;
	font-size: 28px; font-weight: 900; color: #888;
}
.qm-score-total-unit { font-size: 16px; color: #888; }

.qm-divider {
	border-top: 3px dashed var(--main-blue);
	margin: 15px 0 20px;
}

.qm-result-msg-area {
	display: flex; align-items: center;
	justify-content: center; gap: 15px;
	margin-bottom: 25px;
}
.qm-speech {
	background: #E8F0F8;
	padding: 15px 18px; border-radius: 12px;
	position: relative; max-width: 260px;
}
.qm-speech::after {
	content: ''; position: absolute;
	right: -12px; top: 50%;
	transform: translateY(-50%);
	border: 8px solid transparent;
	border-left-color: #E8F0F8;
}
.qm-speech-text {
	font-size: 16px; font-weight: 900; line-height: 1.6;
}
.qm-r-illust { flex-shrink: 0; }
.qm-r-worker { width: 110px; height: auto; }

.qm-result-buttons {
	display: flex; gap: 12px;
	justify-content: center;
}

/* Buttons */
.qm-btn-primary {
	background: #1255A4; color: #fff;
	border: none; padding: 12px 45px;
	font-size: 17px; font-weight: 900;
	font-family: inherit; border-radius: 5px;
	cursor: pointer; transition: opacity 0.3s;
}
.qm-btn-primary:hover { opacity: 0.85; }
.qm-btn-secondary {
	background: #fff; color: #1255A4;
	border: 3px solid #1255A4;
	padding: 9px 35px; font-size: 17px;
	font-weight: 900; font-family: inherit;
	border-radius: 5px; cursor: pointer;
	transition: background 0.3s;
}
.qm-btn-secondary:hover { background: #f0f4f8; }

/* Quiz Modal SP */
@media (max-width: 768px) {
	.quiz-modal-content { padding: 30px 18px 25px; }
	.qm-ttl-pc { display: none; }
	.qm-ttl-sp { display: block; }
	.qm-qnumber { font-size: 30px; }
	.qm-qtext { font-size: 15px; }
	.qm-answer-icon { width: 40px; height: 40px; }
	.qm-answer-title { font-size: 28px; }
	.qm-illust { width: 120px; height: 140px; }
	.qm-wind { right: -25px; width: 45px; }
	.qm-wind-line:nth-child(1) { width: 25px; }
	.qm-wind-line:nth-child(2) { width: 38px; }
	.qm-wind-line:nth-child(3) { width: 20px; }
	.qm-explanation { font-size: 13px; }
	.qm-score-num { font-size: 50px; }
	.qm-score-unit { font-size: 22px; }
	.qm-result-msg-area { flex-direction: column-reverse; }
	.qm-speech::after { display: none; }
	.qm-speech { max-width: 100%; }
	.qm-speech-text { font-size: 14px; }
	.qm-r-worker { width: 90px; }
	.qm-btn-primary { padding: 10px 28px; font-size: 15px; }
	.qm-btn-secondary { padding: 7px 22px; font-size: 15px; }
}

/* ============================
   FAQ Section (よくあるご質問)
   ============================ */
.faq-section {
	padding: 200px 20px 100px;
	position: relative;
	overflow: hidden;
}

.faq-bg-title {
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	font-family: 'Lato', sans-serif;
	font-size: 180px;
	font-weight: 900;
	color: transparent;
	-webkit-text-stroke: 1px var(--main-blue);
	z-index: 0;
	white-space: nowrap;
	pointer-events: none;
}

.faq-container {
	max-width: 1170px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

/* FAQヘッダー */
.faq-header-char {
	width: 165px;
}

.faq-header-dec {
	width: 155px;
	top: 60%;
}

.faq-subtitle {
	color: var(--main-blue);
}

/* アコーディオン */
.faq-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}
.faq-list.is-animated {
	opacity: 1;
	transform: translateY(0);
}

.faq-item {
	background: #fff;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.faq-question {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 20px 25px;
	border: none;
	background: none;
	cursor: pointer;
	font-size: 18px;
	font-weight: bold;
	color: var(--text-dark);
	text-align: left;
	transition: background 0.3s;
}

.faq-question:hover {
	background: #f9f9f9;
}

.faq-q-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--main-blue);
	color: #fff;
	font-family: 'Lato', sans-serif;
	font-size: 18px;
	font-weight: 900;
	flex-shrink: 0;
}

.faq-q-text {
	flex: 1;
	font-size: 20px;
}

.faq-toggle {
	position: relative;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--main-blue);
	flex-shrink: 0;
}

.faq-toggle-h,
.faq-toggle-v {
	position: absolute;
	top: 50%;
	left: 50%;
	background: #fff;
	border-radius: 2px;
	transition: transform 0.3s;
}

.faq-toggle-h {
	width: 14px;
	height: 2px;
	transform: translate(-50%, -50%);
}

.faq-toggle-v {
	width: 2px;
	height: 14px;
	transform: translate(-50%, -50%);
}

.faq-item.is-open .faq-toggle-v {
	transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.faq-answer-inner {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	padding: 10px 0 25px 25px;
}

.faq-a-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 2px solid var(--main-blue);
	color: var(--main-blue);
	font-family: 'Lato', sans-serif;
	font-size: 18px;
	font-weight: 900;
	flex-shrink: 0;
	background: #fff;
}

.faq-a-text {
	flex: 1;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.8;
	color: var(--text-dark);
	padding-top: 4px;
}

.faq-answer p {
	padding: 0 25px 20px 0;
	font-size: 20px;
	line-height: 1.8;
	color: #666;
}

/* ===========================
   Information Section (募集要項)
   =========================== */
.info-section {
	padding: 200px 20px 100px;
	position: relative;
	overflow: hidden;
}

.info-bg-title {
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	font-family: 'Lato', sans-serif;
	font-size: 180px;
	font-weight: 900;
	color: transparent;
	-webkit-text-stroke: 1px var(--main-blue);
	z-index: 0;
	white-space: nowrap;
	pointer-events: none;
}

.info-container {
	max-width: 1170px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

/* INFOヘッダー */
.info-header {
	gap: 10px;
}

.info-header-char {
	width: 165px;
}

.info-subtitle {
	color: var(--main-blue);
}

.info-header-dec {
	width: 155px;
	top: 60%;
}

/* テーブル */
.info-table {
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0,0,0,0.06);
	padding: 20px 50px;
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}
.info-table.is-animated {
	opacity: 1;
	transform: translateY(0);
}

.info-row {
	display: flex;
	align-items: flex-start;
	padding: 22px 0;
	border-bottom: 1px solid #e8e8e8;
}

.info-row:last-child {
	border-bottom: none;
}

.info-label {
	width: 140px;
	flex-shrink: 0;
	font-size: 20px;
	font-weight: 900;
	color: var(--main-blue);
	padding-top: 2px;
}

.info-value {
	flex: 1;
	padding-left: 30px;
}

.info-value p {
	font-size: 20px;
	line-height: 1.8;
	color: var(--text-dark);
}

.info-note {
	font-size: 20px !important;
	color: #FF0000 !important;
	margin-top: 5px;
}

/* Contact Section Styles */
.contact-section {
	padding: 200px 20px 100px;
	position: relative;
	overflow: hidden;
	text-align: center;
}

.contact-watermark {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.05;
	pointer-events: none;
	background-image: radial-gradient(#333 1px, transparent 1px);
	background-size: 40px 40px;
	z-index: 0;
}

.contact-bg-title {
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	font-family: 'Lato', sans-serif;
	font-size: 180px;
	font-weight: 900;
	color: transparent;
	-webkit-text-stroke: 1px var(--main-blue);
	z-index: 0;
	white-space: nowrap;
	pointer-events: none;
}

.contact-container {
	max-width: 1100px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.contact-header {
	gap: 10px;
	margin-bottom: 60px;
}

.contact-header-char {
	width: 175px;
}

.contact-worker-side {
	position: absolute;
	left: -150px;
	top: 50px;
	width: 200px;
	opacity: 0.8;
}

.contact-subtitle {
	color: var(--main-blue);
}

.contact-header-dec {
	width: 155px;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	margin-top: 40px;
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}
.contact-grid.is-animated {
	opacity: 1;
	transform: translateY(0);
}

.contact-card {
	background: #fff;
	border-radius: 20px;
	padding: 40px;
	box-shadow: 0 10px 20px rgba(0,0,0,0.05);
	display: flex;
	flex-direction: column;
	align-items: left;
	text-align: center;
}

.card-category {
	background: #FCDE1E;
	color: #000;
	padding: 8px 30px;
	border-radius: 50px;
	font-weight: bold;
	font-size: 20px;
	margin-bottom: 20px;
	width: 100%;
	display: inline-block;
}

.card-desc {
	font-size: 18px;
	color: #666;
	margin-bottom: 25px;
	text-align: left;
}

.card-link {
	border: 2px solid var(--main-blue);
	color: var(--main-blue);
	text-decoration: none;
	padding: 12px 30px;
	border-radius: 10px;
	font-weight: bold;
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	transition: background 0.3s;
}

.card-link:hover {
	background: rgba(30, 144, 255, 0.05);
}

.arrow-circle {
	background: var(--main-blue);
	color: #fff;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
}

/* Top Button */
.top-button {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 70px;
	height: 70px;
	background: #fff;
	border: 3px solid var(--main-blue);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1001;
	text-decoration: none;
	box-shadow: 0 4px 10px rgba(0,0,0,0.1);
	opacity: 0;
	transform: translateY(20px);
	pointer-events: none;
	transition: opacity 0.4s ease, transform 0.4s ease;
}

.top-button.is-visible {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.top-button img {
	width: 35px;
	height: auto;
}

/* 工場見学追従ボタン */
.fab-factory {
	position: fixed;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 70px;
	padding: 14px 0 16px;
	background: var(--main-orange);
	color: #fff;
	text-decoration: none;
	border-radius: 14px 0 0 14px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.2);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	z-index: 1000;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.fab-factory:hover {
	transform: translateY(-50%) translateX(-4px);
	box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

.fab-factory-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}
.fab-factory-icon img {
	width: 28px;
	height: auto;
	display: block;
}

.fab-factory-text {
	writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	text-orientation: upright;
	font-size: 16px;
	font-weight: 900;
	line-height: 1.4;
	letter-spacing: 0.1em;
}

.fab-factory-arrow {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	margin-top: 4px;
}
.fab-factory-arrow::after {
	content: '';
	width: 8px;
	height: 8px;
	border-top: 2px solid var(--main-orange);
	border-right: 2px solid var(--main-orange);
	transform: rotate(45deg) translateX(-1px);
}

/* Footer Styles */
.footer {
	background: #1A1A1A;
	color: #fff;
	padding: 30px 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 12px;
}

.footer-right {
	display: flex;
	align-items: center;
	gap: 5px;
	text-decoration: none;
	color: #fff;
}

.footer-right:hover {
	opacity: 0.8;
}

/* SP専用改行 */
.sp-br { display: none; }

/* PC/SP 改行切替（br専用） */
br.pc { display: inline; }
br.sp { display: none; }

/* Responsive */
@media (min-width: 1401px) {
	.hero-title {
		left: calc(50% - 560px);
		max-width: 840px;
	}
	.hero-char {
		right: calc(50% - 560px);
	}
}

@media (max-width: 1024px) {
	.header { padding: 0 20px; }
	.nav-container { display: none; }

	/* ハンバーガーボタン */
	.hamburger {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 50px;
		height: 50px;
		background: #fff;
		border: 2px solid var(--main-blue);
		border-radius: 50%;
		cursor: pointer;
		padding: 0;
		gap: 5px;
		z-index: 1100;
		position: fixed;
		top: 25px;
		right: 20px;
		transition: background 0.3s ease, border-color 0.3s ease;
	}
	.hamburger-line {
		display: block;
		width: 22px;
		height: 2px;
		background: var(--main-blue);
		border-radius: 2px;
		transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
	}
	.hamburger.is-active {
		background: var(--main-blue);
		border-color: var(--main-blue);
	}
	.hamburger.is-active .hamburger-line {
		background: #fff;
	}
	.hamburger.is-active .hamburger-line:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}
	.hamburger.is-active .hamburger-line:nth-child(2) {
		opacity: 0;
	}
	.hamburger.is-active .hamburger-line:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}

	/* オーバーレイ */
	.sp-menu-overlay {
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0,0,0,0.5);
		z-index: 999;
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.3s ease, visibility 0.3s ease;
	}
	.sp-menu-overlay.is-active {
		opacity: 1;
		visibility: visible;
	}

	/* ドロワーメニュー */
	.sp-menu {
		display: block;
		position: fixed;
		top: 0;
		right: 0;
		width: 80%;
		max-width: 320px;
		height: 100%;
		background: #fff;
		z-index: 1001;
		transform: translateX(100%);
		transition: transform 0.3s ease;
		overflow-y: auto;
	}
	.sp-menu.is-active {
		transform: translateX(0);
	}
	.sp-menu-inner {
		padding: 100px 30px 40px;
		display: flex;
		flex-direction: column;
		gap: 0;
	}
	.sp-menu-link {
		display: block;
		padding: 18px 10px;
		text-decoration: none;
		color: var(--main-blue);
		font-size: 16px;
		font-weight: bold;
		border-bottom: 1px solid #e5e5e5;
		position: relative;
	}
	.sp-menu-link::before {
		content: '';
		display: inline-block;
		width: 8px;
		height: 8px;
		background: var(--main-blue);
		border-radius: 50%;
		margin-right: 12px;
	}
	/* 共通セクションタイトル */
	.section-title-ja { font-size: 32px; }
	/* セクション固有 */
	.about-bg-title { font-size: 120px; }
	.works-bg-title { font-size: 120px; }
	.works-title-ja { font-size: 28px; }
	.interview-bg-title { font-size: 120px; }
	.keyword-bg-title { font-size: 120px; }
	.keyword-title-ja { font-size: 28px; }
	.benefit-bg-title { font-size: 120px; }
	.honne-bg-title { font-size: 120px; }
	.honne-title-ja { font-size: 28px; }
	.faq-bg-title { font-size: 120px; }
	.info-bg-title { font-size: 120px; }
	.info-table { padding: 20px 30px; }
	.contact-bg-title { font-size: 120px; }
	.contact-worker-side { display: none; }
	.hero-title {
		width: 55%;
	}
	.hero-char {
		width: 45%;
	}
}

@media (max-width: 768px) {
	.header { z-index: 9999; }
	body,
	.hero,
	.message-section {
		background-size: 300%;
	}
	.message-section { padding-bottom: 40px; }

	/* SP用：装飾アイコンを小さく再配置 */
	.hero-dec {
		display: block;
	}
	.dec-track-1 { top: 34%; left: 2%; width: 70px; }
	.dec-recycling-1 { top: 12%; left: -3%; width: 55px; }
	.dec-gear-1 { top: 22%; left: 1%; width: 50px; }
	.dec-excavator-1 { bottom: 54%; left: 10%; width: 85px; }
	.dec-forklift-y-1 { top: 55%; right: 0; left: auto; width: 60px; }
	.dec-gear-2 { display: none; }
	.dec-gear-3 { top: 25%; right: 3%; width: 45px; }
	.dec-gear-4 { bottom: 15%; right: 20%; width: 40px; }
	.dec-car-y-1 { bottom: 46%; left: 6%; width: 60px; }
	.dec-ingot-1 { display: none; }
	.dec-tank-1 { bottom: 5%; left: auto; right: 28%; width: 55px; }
	.dec-car-1 { display: none; }
	.dec-track-2 { top: auto; bottom: 1%; right: 5%; width: 65px; }
	.dec-furnace-1 { bottom: 50%; right: 5%; width: 65px; }
	.dec-forklift-1 { bottom: 35%; left: 1%; width: 55px; }
	.dec-recycling-2 { display: block; top: auto; left: 3%; width: 55px; bottom: 5%; }
	.dec-recycling-3 { top: 12%; right: 5%; bottom: auto; width: 40px; }
	.dec-tank-2 { top: 13%; right: 35%; width: 45px; }
	.dec-ingot-2 { top: auto; bottom: 18%; left: 10%; width: 60px; }
	.dec-ingot-3 { bottom: auto; top: 35%; right: 15%; width: 50px; }
	.dec-tank-w-1 { display: none; }
	.dec-forklift-2 { top: 5%; right: 25%; width: 50px; }
	.dec-excavator-2 { top: auto; bottom: 15%; right: 45%; width: 70px; }

	.hero {
		height: auto;
		min-height: 100vh;
		padding-bottom: 0;
	}
	.hero-title {
		position: relative;
		left: auto;
		top: auto;
		transform: none;
		width: 80%;
		max-width: none;
		margin: 30px auto 0;
	}
	.hero-char {
		position: relative;
		right: auto;
		bottom: auto;
		width: 70%;
		max-width: none;
		margin: 20px auto 0;
	}
	.message-card { padding: 40px 20px; }
	.message-title { font-size: 32px; }
	.message-subtitle { font-size: 18px; }
	.message-worker-img { position: static; width: 150px; margin: 20px auto 0; }
	/* 共通セクションヘッダー SP */
	[class*="-bg-title"].is-animated { transform: translateX(-50%) translateY(50px); }
	.section-header { margin-bottom: 40px; }
	.section-header.is-animated .section-header-side { transform: translateY(-100%) translateX(0); }
	.section-header-side { top: -60px; }
	.section-header-side:first-child { top: -70px; left: -10px; }
	.section-header-side:last-child { right: -20px; }
	.section-header-side img { width: auto; max-width: 100%; }
	.section-title-ja { font-size: 28px; margin-bottom: 10px; }
	.section-subtitle { font-size: 16px; }
	/* Contact SP */
	.contact-grid { grid-template-columns: 1fr; }
	.contact-bg-title { font-size: 60px; top: 60px; }
	.contact-header-char { width: 90px; }
	.contact-header-dec { width: 65px; }
	.card-category { font-size: 18px; }
	.card-link { font-size: 16px; }
	.card-desc { font-size: 14px; }
	.sp-br { display: inline; }
	br.pc { display: none; }
	br.sp { display: inline; }
	/* About SP */
	.about-section { padding: 150px 20px 50px; }
	.about-bg-title { font-size: 60px; top: 20px; }
	.about-header-char { width: 85px; }
	.about-header-dec { width: 60px; }
	.co2-reduction-bottom { max-width: 90%; bottom: 10px; }
	.co2-badge { width: 65px !important; left: -20px; }
	.about-content { flex-direction: column; gap: 30px; }
	.about-text { font-size: 16px; }
	.about-partners { padding: 30px 20px; }
	.partners-title { font-size: 16px; padding: 10px 30px; }
	.partners-label { font-size: 14px; }
	.partners-list { font-size: 14px; }
	.about-locations { padding: 30px 20px; }
	.locations-title { font-size: 16px; padding: 10px 30px; margin-bottom: 30px; }
	.locations-grid { grid-template-columns: 1fr; gap: 40px; }
	.location-top { grid-template-columns: 1fr; gap: 15px; }
	.location-name { font-size: 16px; }
	.location-zip { font-size: 14px; }
	.location-address { font-size: 14px; }
	.location-btn { font-size: 13px; padding: 10px 12px; }
	.location-btn-sub { font-size: 12px; }
	.location-btn-arrow { width: 22px; height: 22px; }
	/* 工場見学インドアビュー SP */
	.factory-view-section { padding: 120px 15px 60px; }
	.factory-view-card-body { padding: 25px 20px 40px; }
	.factory-view-list { gap: 40px; }
	.factory-view-item-title { font-size: 18px; margin-bottom: 15px; }
	.factory-view-embed { aspect-ratio: 4 / 3; }
	.factory-view-back { margin-top: 40px; }
	.factory-view-back-link { font-size: 14px; padding: 14px 40px; }
	.amazing-title-pc { display: none; }
	.amazing-title-sp { display: inline-block; width: 100%; }
	.amazing-cards { grid-template-columns: 1fr; }
	.amazing-card { background: #fff; }
	.amazing-card-header { font-size: 20px; width: 100%; }
	.amazing-card-img { height: auto; }
	.amazing-card-text { margin-top: 0; }
	.about-videos-title { font-size: 16px; padding: 14px 25px; }
	.about-videos-title-wrap { margin-bottom: 35px; }
	.about-videos-grid { grid-template-columns: 1fr; gap: 25px; }
	.about-video-title { font-size: 15px; }
	/* Demand SP */
	.pill-title { font-size: 18px; padding: 12px 25px; }
	.demand-card-body { padding: 25px 20px; }
	.demand-card-body > p { font-size: 16px; }
	.demand-chart-area { flex-direction: column; }
	.demand-chart-pc { display: none; }
	.demand-chart-sp { display: block; }
	/* Circulation SP */
	.circulation-card-body { padding: 25px 20px; }
	.circulation-text { font-size: 16px; }
	.term-title { font-size: 18px; }
	.term-desc { font-size: 14px; }
	.circulation-term { grid-template-columns: 1fr; gap: 20px; margin-bottom: 30px; }
	.term-image { aspect-ratio: 16 / 10; max-width: 400px; margin: 0 auto; }
	/* Usage SP */
	.usage-card-body { padding: 25px 20px; }
	.usage-lead { font-size: 16px; }
	.usage-hotspot { width: 12px; height: 12px; border: 2px solid var(--main-orange); }
	/* Works SP */
	.works-section { padding: 200px 20px 0; }
	.works-bg-title { font-size: 60px; top: 60px; }
	.works-section .section-header-side:first-child { top: -40px; }
	.works-header-char { width: 90px; }
	.works-header-dec { width: 60px; }
	.works-title-ja { font-size: 22px; }
	.works-subtitle { font-size: 16px; }
	.works-about-title { font-size: 20px; }
	.works-about-text { font-size: 16px; }
	.works-main-card-body { padding: 25px 20px; }
	.works-flow { flex-direction: column; }
	.works-flow-header { width: 100%; height: auto; padding: 150px 20px 20px; }
	.works-flow-col:first-child .works-flow-step { margin-bottom: 80px; }
	.works-flow-col:first-child .works-flow-step::after { height: 85px; }
	.works-flow-col:last-child .works-flow-step { margin-bottom: 80px; }
	.works-flow-col:last-child .works-flow-step::after { height: 85px; }
	.works-flow-icon { top: -55px; }
	.works-flow-col:last-child .works-flow-icon { top: -25px; }
	.works-flow-text { padding: 15px; }
	.works-flow-bottom { width: 50%; margin: -40px auto 25px; }
	/* Yarigai SP */
	.yarigai-section { padding: 0 20px 20px; }
	.yarigai-title { font-size: 20px; padding: 12px 30px; }
	.yarigai-item { flex-direction: column; gap: 15px; }
	.yarigai-right { flex-direction: column-reverse; }
	.yarigai-photo { width: 220px; height: 220px; margin: 0 auto; overflow: hidden; }
	.yarigai-photo img {
		width: 100%;
		height: 100%;
		object-fit: contain;
		object-position: center;
	}
	.yarigai-balloon { max-width: 100%; padding: 20px; }
	.yarigai-balloon p { font-size: 16px; }
	.yarigai-left .yarigai-balloon::before,
	.yarigai-right .yarigai-balloon::after { display: none; }
	/* Interview SP */
	.interview-bg-title { font-size: 60px; top: 60px; }
	.interview-header-char { width: 120px; }
	.interview-header-dec { width: 65px; top: -75px; }
	.interview-cards { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
	.interview-card-name { font-size: 18px; }
	/* Keyword SP */
	.keyword-section { padding: 200px 20px 40px; }
	.keyword-bg-title { font-size: 60px; top: 60px; }
	.keyword-header-char { width: 80px; }
	.keyword-header-numbers { width: 60px; }
	.keyword-title-ja { font-size: 24px; }
	.keyword-cards { grid-template-columns: 1fr; }
	.keyword-card { padding: 30px 40px 15px; }
	.keyword-card-img { max-width: 260px; margin-left: auto; margin-right: auto; }
	.keyword-num { font-size: 36px; }
	.keyword-awards { grid-template-columns: 1fr; max-width: 360px; margin: 25px auto 0; }
	.keyword-award-title { font-size: 18px; }
	.keyword-award-card:nth-child(2) .keyword-award-title { width: 100%; }
	/* Benefit SP */
	.benefit-section { padding: 200px 20px 20px; }
	.benefit-bg-title { font-size: 60px; top: 60px; }
	.benefit-header-char { width: 100px; }
	.benefit-header-dec { width: 60px; }
	.benefit-nav { grid-template-columns: 1fr; }
	.benefit-nav-link { font-size: 14px; }
	.benefit-block-title { font-size: 22px; padding: 12px 30px; }
	.benefit-text { font-size: 16px; }
	.benefit-modal-content { padding: 40px 30px 20px; }
	.benefit-modal-header { margin-bottom: 10px; }
	.benefit-modal-badge { top: -5%; right: 75%; }
	.benefit-cards-3 { grid-template-columns: 1fr; }
	.benefit-feature-grid { grid-template-columns: 1fr; gap: 35px; }
	.benefit-feature-title { font-size: 16px; }
	.benefit-feature-desc { font-size: 14px; }
	.benefit-flow { flex-direction: column; gap: 10px; }
	.benefit-flow-step { font-size: 14px; padding: 10px 20px; }
	.benefit-qualification-label { font-size: 15px; }
	.benefit-sub-heading { font-size: 16px; }
	.image-zoom-close { top: 10px; right: 10px; width: 40px; height: 40px; font-size: 26px; }
	/* SP: 職位別受講セミナー画像はインラインでは横幅いっぱい表示 */
	.qualification-image-link img {
		width: 100%;
		height: auto;
		max-width: 100%;
	}
	/* SP: 画像拡大モーダルは横スクロール可 */
	.image-zoom-content {
		max-width: 96%;
		max-height: 80vh;
		overflow-x: auto;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}
	.image-zoom-img {
		max-width: none;
		max-height: none;
		height: 80vh;
		width: auto;
	}
	.video-modal-close { top: 10px; right: 10px; width: 40px; height: 40px; font-size: 26px; }
	.video-play-icon { width: 52px; height: 52px; }
	.video-play-icon::after { border-left-width: 14px; border-top-width: 9px; border-bottom-width: 9px; }
	/* 工場見学追従ボタン SP */
	.fab-factory {
		top: auto;
		right: 0;
		bottom: 0;
		left: 0;
		transform: none;
		width: 100%;
		padding: 12px 20px;
		border-radius: 0;
		flex-direction: row;
		justify-content: center;
		gap: 12px;
	}
	.fab-factory:hover {
		transform: none;
	}
	.fab-factory-text {
		writing-mode: horizontal-tb;
		text-orientation: mixed;
		font-size: 17px;
		letter-spacing: 0.05em;
	}
	.fab-factory-arrow {
		margin-top: 0;
	}
	/* SPでfab-factoryがページ下部にあるため top-button を上にずらす */
	.top-button { bottom: 90px; right: 15px; }
	/* SPでページ下部に fab-factory 分の余白を確保 */
	body { padding-bottom: 70px; }
	/* Honne SP */
	.honne-bg-title { font-size: 60px; top: 60px; }
	.honne-header-numbers { width: 55px; }
	.honne-header-dec { width: 70px; }
	.honne-char { height: 200px; }
	.honne-title-ja { font-size: 24px; }
	.honne-subtitle { font-size: 13px; }
	.honne-question-title { font-size: 18px; padding: 10px 25px; }
	.honne-question-content { flex-direction: column; gap: 20px; }
	.honne-chart { max-width: 280px; margin: 0 auto; }
	.honne-balloon p { font-size: 14px; }
	/* FAQ SP */
	.faq-section { padding: 200px 20px 40px; }
	.faq-bg-title { font-size: 60px; top: 60px; }
	.faq-header-char { width: 90px; }
	.faq-q-text { font-size: 15px; }
	.faq-header-dec { width: 60px; }
	.faq-question { padding: 15px 15px; gap: 10px; font-size: 15px; }
	.faq-q-icon { width: 30px; height: 30px; font-size: 15px; }
	.faq-toggle { width: 28px; height: 28px; font-size: 15px; }
	.faq-answer-inner { padding: 10px 0 15px 15px; gap: 10px; }
	.faq-a-icon { width: 30px; height: 30px; font-size: 15px; }
	.faq-a-text { font-size: 15px; }
	.faq-answer p { padding: 0 15px 15px 5px; font-size: 14px; }
	.contact-card { padding: 40px 20px; }
	/* Information SP */
	.info-section { padding: 200px 20px 40px; }
	.info-bg-title { font-size: 50px; top: 75px; }
	.info-note { font-size: 14px !important; }
	.info-header-char { width: 80px; }
	.info-header-dec { width: 60px; }
	.info-table { padding: 15px 20px; }
	.info-row { flex-direction: column; gap: 5px; padding: 15px 0; }
	.info-label { width: 100%; padding-bottom: 3px; font-size: 15px; }
	.info-value { padding-left: 0; }
	.info-value p { font-size: 14px; }
	/* Quiz SP */
	.quiz-card { padding: 25px 20px; }
	.quiz-ttl-pc { display: none; }
	.quiz-ttl-sp { display: block; }
	.quiz-buttons { flex-direction: column; gap: 10px; }
	.quiz-btn { min-width: auto; }
	.quiz-btn-start { font-size: 22px; }
	.footer { flex-direction: column; gap: 20px; text-align: center; }
}

/* ============================
   短いスマホ（iPhone SE等）
   画面高さが低く人物下半身にアイコンが被るため非表示
   縦長スマホ（iPhone 12 Pro等）は余白があるため表示
   ============================ */
@media (max-width: 768px) and (max-height: 667px) {
	.dec-tank-1 { display: none; }
	.dec-gear-3 { top: 22%; }
	.dec-gear-4 { display: none; }
	.dec-track-2 { display: none; }
	.dec-forklift-y-1 { top: 68%; }
	.dec-recycling-2 { display: none; }
	.dec-recycling-3 { top: 14%; right: 14%; }
	.dec-ingot-2 { display: none; }
	.dec-ingot-3 { top: 42%; }
	.dec-excavator-2 { display: none; }
	.dec-furnace-1 { bottom: 40%; }
	.dec-forklift-1 { bottom: 25%; }
	.dec-car-y-1 { bottom: 36%; }
	.dec-excavator-1 { bottom: 45%; }
	.dec-track-1 { top: 40%; }
}
