@charset "UTF-8";

/* -------------------------------------------- */
/* Design tokens (light — Anzai Kogyo 2026)     */
/* -------------------------------------------- */
:root {
	--bg: #f7f5f0;
	--bg-elev-1: #ffffff;
	--surface: rgba(0, 0, 0, 0.04);
	--surface-2: rgba(0, 0, 0, 0.06);
	--text: #1a1a18;
	--text-muted: #4a4a48;
	--text-faint: #888884;
	--border: rgba(0, 0, 0, 0.1);
	--border-strong: rgba(0, 0, 0, 0.18);
	--accent: #00937f;
	--black: #0a0a09;
	--radius-sm: 2px;
	--radius-md: 2px;
	--radius-pill: 999px;
	--shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.08);
	--shadow-md: 0 10px 32px rgba(0, 0, 0, 0.12);
	--container: 1400px;
	--space-1: 6px;
	--space-2: 10px;
	--space-3: 14px;
	--space-4: 18px;
	--space-5: 24px;
	--space-6: 32px;
	--space-7: 44px;
	--space-8: 60px;
	/* Cormorant Garamond serif */
	--font-serif: 'Cormorant Garamond', 'Times New Roman', 'YuMincho', 'Hiragino Mincho ProN', serif;
}

html {
	overflow-x: clip;
	scrollbar-gutter: stable;
}
body {
	margin: 0;
	overflow-x: clip;
	background: var(--bg);
	color: var(--text);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	opacity: 1;
	transition: opacity 0.25s ease;
}
body.is-leaving {
	opacity: 1;
}

.sp-only { display: none; }
@media (max-width: 769px) { .sp-only { display: inline; } }

html * {
	font-family: "Noto Sans JP", "源ノ角ゴシック JP", "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
	font-size: 16px;
	color: inherit;
	word-wrap: break-word;
	box-sizing: border-box;
	outline: none;
}
	a { opacity: 1; text-decoration: none; color: inherit; font-size: inherit; font-weight: inherit; }
	a:hover { opacity: 0.88; }
	img { max-width: 100%; width: auto; height: auto; vertical-align: middle; }
	small { font-size: 0.8em; }
	em { font-size: inherit; }
	span { color: inherit; font-size: inherit; font-weight: inherit; }
	strong { color: inherit; font-size: inherit; font-weight: bold; }
	b { color: inherit; font-size: inherit; font-weight: bold; }

/* sensible defaults */
p { color: var(--text); }
.desc { color: var(--text-muted); }
.curent_color { color: var(--accent); }
.white_color { color: #fff !important; }
.black_color { color: var(--black) !important; }

/* -------------------------------------------- */
/* common class */
/* -------------------------------------------- */
	.center { text-align: center !important; }
	.alignright { text-align: right !important; }
	.alignleft { text-align: left !important; }
	.hidden { display: none; }
	.shadow { box-shadow: 0 0 5px 1px rgba(0,0,0,0.1); }
	.border { border: solid 1px var(--border); }
	.border-radius { border-radius: 6px; }
	.blur { -webkit-filter: blur(5px); -moz-filter: blur(5px); -o-filter: blur(5px); -ms-filter: blur(5px); filter: blur(5px); }
	.line { width: 100%; height: 1px; border: none; background: rgba(0,144,125,0.25); }

	.desc { margin-bottom: 30px; line-height: 2.0; }
	.link { text-decoration: underline; }
	.btn_link,
	.btn_tel_link,
	.btn_download,
	.btn_contact {
		position: relative;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 10px;
		height: 46px;
		padding: 0 18px;
		border-radius: var(--radius-pill);
		font-weight: 800;
		letter-spacing: 0.02em;
		white-space: nowrap;
		transition: transform .15s ease, background-color .15s ease, border-color .15s ease, opacity .15s ease;
	}
	.btn_link,
	.btn_tel_link {
		border: 1px solid var(--accent);
		background: transparent;
		color: var(--text);
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
		overflow: hidden;
	}
	.btn_link::before,
	.btn_tel_link::before {
		content: '';
		position: absolute;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100%;
		background: var(--accent);
		transition: left 0.25s ease;
		z-index: 0;
		border-radius: var(--radius-pill);
	}
	.btn_link:hover::before,
	.btn_tel_link:hover::before {
		left: 0;
	}
	.btn_link:hover,
	.btn_tel_link:hover {
		border-color: var(--accent);
		color: #fff;
		opacity: 1;
	}
	.btn_link span,
	.btn_link__icon,
	.btn_tel_link span,
	.btn_tel_link__icon {
		position: relative;
		z-index: 1;
	}
	.btn_contact,
	.btn_download {
		border: 1px solid rgba(0,0,0,0.18);
		background: var(--accent);
		color: #fff;
	}
	.btn_link { min-width: 160px; padding-right: 18px; justify-content: center; }
	.btn_tel_link { min-width: 160px; padding-left: 18px; justify-content: center; }
	.btn_contact { min-width: 220px; padding-right: 44px; justify-content: flex-start; }
	.btn_download { min-width: 200px; padding-right: 44px; justify-content: flex-start; background: var(--accent); }

	.btn_link:hover,
	.btn_tel_link:hover,
	.btn_contact:hover,
	.btn_download:hover { transform: translateY(-1px); opacity: 0.95; }

	.btn_link:active,
	.btn_tel_link:active,
	.btn_contact:active,
	.btn_download:active { transform: translateY(0); opacity: 0.9; }

	.btn_link__icon,
	.btn_download__icon,
	.btn_contact__icon { position: absolute; top: 50%; right: 16px; transform: translateY(-50%); }
	.btn_link__icon,
	.btn_tel_link__icon { display: none; }
	.btn_tel_link__icon { position: absolute; top: 50%; left: 16px; transform: translateY(-50%); }
	.btn_download__icon { filter: brightness(400%) saturate(190); }

	

	/* .btn_link:hover { background: #00937f; color: #fff; opacity: 1; } */
	/* .btn_link:hover .btn_link__icon { filter: brightness(400%) saturate(190); } */
	/* .btn_tel_link:hover { background: #00937f; color: #fff; opacity: 1; } */
	/* .btn_tel_link:hover .btn_tel_link__icon { filter: brightness(400%) saturate(190); } */
	/* .btn_contact:hover { background: #fff; color: #00937f; opacity: 1; } */
	/* .btn_contact:hover .btn_contact__icon { filter: invert(52%) sepia(85%) saturate(5182%) hue-rotate(150deg) brightness(89%) contrast(101%); } */

	.line_list { list-style: none; margin: 0 0 20px 0; border-top: dashed 1px rgba(0,144,125,0.3); }
	.line_list__li { padding: 10px 0; border-bottom: dashed 1px rgba(0,144,125,0.3); }
	.disc_list { list-style: none; margin: 0 0 20px 0; }
	.disc_list__li { position: relative; margin: 0; padding-left: 1.5em; }
	.disc_list__li:before { content: '●'; position: absolute; top: 0; left: 0; }
	.num_list { list-style: decimal; margin: 0 0 20px 0; padding: 0 0 0 20px; }
	.num_list__li { position: relative; margin: 0 0 5px 0; }
	.roman_list { list-style: lower-roman; margin: 0 0 20px 0; padding: 0 0 0 20px; }
	.roman_list__li { position: relative; margin: 0 0 5px 0; }

	.table_style { width: 100%; margin: 0 0 30px 0; }
	.table_style tr {}
	.table_style th { padding: 12px 15px; background: rgba(255,255,255,0.05); border: solid 1px rgba(255,255,255,0.10); white-space: nowrap; vertical-align: top; color: var(--text); }
	.table_style td { padding: 12px 15px; background: rgba(255,255,255,0.02); border: solid 1px rgba(255,255,255,0.10); color: var(--text-muted); }
	.map { margin: 0 0 20px 0; }

	.row { display: flex; flex-wrap: wrap; margin: 0 -15px; }
	.row-reverse { display: flex; flex-wrap: wrap; margin: 0 -15px; flex-direction: row-reverse; }
	.col { padding: 15px; }
	.col-1 { flex: 0 0 8.333333%; max-width: 8.333333%; padding: 15px; }
	.col-2 { flex: 0 0 16.666667%; max-width: 16.666667%; padding: 15px; }
	.col-3 { flex: 0 0 25%; max-width: 25%; padding: 15px; }
	.col-4 { flex: 0 0 33.333333%; max-width: 33.333333%; padding: 15px; }
	.col-5 { flex: 0 0 41.666667%; max-width: 41.666667%; padding: 15px; }
	.col-6 { flex: 0 0 50%; max-width: 50%; padding: 15px; }
	.col-7 { flex: 0 0 58.333333%; max-width: 58.333333%; padding: 15px; }
	.col-8 { flex: 0 0 66.666667%; max-width: 66.666667%; padding: 15px; }
	.col-9 { flex: 0 0 75%; max-width: 75%; padding: 15px; }
	.col-10 { flex: 0 0 83.333333%; max-width: 83.333333%; padding: 15px; }
	.col-11 { flex: 0 0 91.666667%; max-width: 91.666667%; padding: 15px; }
	.col-12 { flex: 0 0 100%; max-width: 100%; padding: 15px; }

	.mb0 { margin-bottom: 0 !important; }
	.mb10 { margin-bottom: 10px !important; }
	.mb20 { margin-bottom: 20px !important; }
	.mb30 { margin-bottom: 30px !important; }
	.mb40 { margin-bottom: 40px !important; }
	.mb50 { margin-bottom: 50px !important; }
	.mb60 { margin-bottom: 60px !important; }
	.pt0 { padding-top: 0 !important; }
	.pl60 { padding-left: 60px; }
	.pr60 { padding-right: 60px; }
	.b { font-weight: bold; }

/* -------------------------------------------- */
/* layout */
/* -------------------------------------------- */
#page { overflow: hidden; min-width: 375px; height: 100%; margin: 0 auto; background: transparent; }
	.inner { width: auto; max-width: 1440px; margin: 0 auto; padding: 0 40px; }
	.glid-12.inner { max-width: var(--container); padding: var(--space-8) 40px; }
	.glid-10.inner { max-width: 1400px; padding: 60px 40px 60px 40px; margin: 0 auto 0 40px; }
	.glid-8.inner { max-width: 860px; padding: 60px 40px; }

#header {
	position: fixed;
	z-index: 9999;
	opacity: 1;
}

/* MV上：フラット透明・全幅 */
#header.home {
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	max-width: none;
	transform: none;
	border-radius: 0;
	background: transparent;
	border: none;
	box-shadow: none;
	transition: opacity .3s ease, transform .3s ease;
}
#header.home .inner { padding: 0 40px; }
#header.home .topnav_logo__link { line-height: 90px; }
#header.home .topnav_btn { width: 90px; height: 90px; padding: 27px 15px; margin: 0 -30px 0 0; }
#header.home .topnav_menu_list__link { color: #fff; opacity: 0.85; }
#header.home .topnav_mail__btn { background: var(--accent); }
#header.home.hide { opacity: 0; transform: translateY(-100%); }

/* スクロール後：カプセル型 — 全ページで暗色テキスト固定 */
#header:not(.home) .topnav_menu_list__link { color: #1a1a18; opacity: 0.82; }
#header:not(.home) .topnav_menu_list__link:hover { color: var(--accent); opacity: 1; }
#header:not(.home) .btn-trigger span { background-color: #1a1a18 !important; }
#header:not(.home) .btn-menu { color: #1a1a18 !important; }

#header:not(.home) {
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	max-width: none;
	transform: none;
	border-radius: 0;
	background: rgba(255, 255, 255, 0.88);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
	transition: opacity .3s ease, transform .3s ease;
}
#header:not(.home) .inner { padding: 0 32px; }
#header:not(.home) .topnav_logo__link { line-height: 64px; }
#header:not(.home) .topnav_btn { width: 64px; height: 64px; padding: 20px 15px; margin: 0 -16px 0 0; }
#header:not(.home).hide { opacity: 0; transform: translateX(-50%) translateY(-150%); }

	#header.show_admin_bar { top: 32px; }
	.topnav { display: flex; justify-content: flex-end; align-items: stretch; }
	.topnav_logo { margin: 0 auto 0 0; }
	.topnav_logo__link { display: inline-block; line-height: 90px; margin: 0 25px 0 0; }
	.topnav_logo__img { width: 267px; height: auto; vertical-align: middle; }
	.topnav_menu { display: flex; align-items: center; }
	.topnav_menu_list { display: flex; margin: 0 -10px; }
	.topnav_menu_list__li {}
	.topnav_menu_list__link {
		display: inline-block;
		padding: 0 14px;
		font-size: 15px;
		font-weight: 800;
		white-space: nowrap;
		line-height: 1.6;
		letter-spacing: 0.02em;
		color: var(--text);
		opacity: 0.92;
		position: relative;
		transition: color 0.35s ease, opacity 0.35s ease;
	}
	.topnav_menu_list__link::after {
		content: '';
		position: absolute;
		bottom: -4px;
		left: 14px;
		right: 14px;
		height: 2px;
		background: var(--accent);
		transform: scaleX(0);
		transform-origin: left;
		transition: transform 0.2s ease;
	}
	.topnav_menu_list__link:hover {
		color: var(--accent);
		opacity: 1;
	}
	.topnav_menu_list__link:hover::after {
		transform: scaleX(1);
	}

/* NEWS more link */
.top_news_more {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--accent);
	font-weight: 700;
}
.top_news_more::after { content: '→'; }
	.topnav_sns { margin: 0 20px; white-space: nowrap; }
	.topnav_sns__btn { display: inline-block; }
	.topnav_sns__img_instagram { width: 34px; height: 34px; vertical-align: middle; }
	.topnav_sns__img_facebook { width: 34px; height: 34px; vertical-align: middle; }
	.topnav_mail {}
	.topnav_mail__btn { display: inline-flex; align-items: center; gap: 10px; min-width: 160px; background: var(--accent); color: #fff; padding: 0 18px; height: 46px; font-size: 14px; border-radius: 0; font-weight: 800; white-space: nowrap; line-height: 1.6; border: 1px solid rgba(0,0,0,0.18); }
	.topnav_mail__img { width: auto; height: 16px; vertical-align: text-bottom; }
	/* #header.home .topnav_logo__img { filter: brightness(400%) saturate(190); } */

	.topnav_btn { display: none; width: 90px; height: 90px; padding: 27px 15px; margin: 0 -30px 0 0; text-align: center; cursor: pointer; box-sizing: border-box; font-size: 10px; font-weight: bold; }
	.btn-trigger { position: relative; width: 34px; height: 24px; cursor: pointer; }
	.btn-trigger span { position: absolute; left: 0; width: 100%; height: 4px; background-color: #00937f; border-radius: 4px; }
	.btn-trigger, .btn-trigger span { display: inline-block; transition: all .5s; box-sizing: border-box; }
	.btn-trigger span:nth-of-type(1) { top: 0; }
	.btn-trigger span:nth-of-type(2) { top: 10px; }
	.btn-trigger span:nth-of-type(3) { bottom: 0; }
	.btn-trigger.active span:nth-of-type(1) { -webkit-transform: translateY(10px) rotate(-45deg); transform: translateY(10px) rotate(-45deg); }
	.btn-trigger.active span:nth-of-type(2) { opacity: 0; }
	.btn-trigger.active span:nth-of-type(3) { -webkit-transform: translateY(-10px) rotate(45deg); transform: translateY(-10px) rotate(45deg); }
	.btn-menu { color: #00937f; }
	#header.home .btn-trigger span { background-color: #fff; }
	#header.home .btn-menu { color: #fff; }

#contents { padding: 0 0 80px 0; }
	/* トップページ以外の汎用見出し */
	.sec_head { display: block; font-size: 36px; font-weight: 800; margin: 0 0 10px 0; letter-spacing: 0.01em; color: var(--text); }
	/* トップページ eyebrow 共通（.sec_headをeyebrowとして使っている箇所） */
	#sec_top_news .sec_head,
	#sec_top_about .sec_head,
	#sec_top_service .sec_head,
	#sec_top_recruit .sec_head {
		font-size: 11px;
		font-weight: 700;
		letter-spacing: 0.28em;
		text-transform: uppercase;
		color: var(--accent);
		display: flex;
		align-items: center;
		gap: 10px;
		margin-bottom: 14px;
	}
	#sec_top_news .sec_head::before,
	#sec_top_about .sec_head::before,
	#sec_top_service .sec_head::before,
	#sec_top_recruit .sec_head::before {
		content: '';
		display: block;
		width: 20px;
		height: 0.5px;
		background: var(--accent);
		flex-shrink: 0;
	}
	/* RECRUIT はダーク背景なので色はそのままアクセントを使用 */
	#sec_top_recruit .sec_head {
		color: var(--accent);
	}
	#sec_top_recruit .sec_head::before {
		background: var(--accent);
	}
	.sec_title { display: block; font-size: 14px; font-weight: 700; margin: 0 0 26px 0; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-faint); }
	.sec_sub_title { display: block; font-size: 22px; font-weight: 700; margin: 0 0 30px 0; color: var(--text); }
	.icon {}
	.head_title { display: block; font-size: 26px; font-weight: 800; margin: 0 0 0 0; letter-spacing: 0.01em; color: var(--text); }
	.head_sub_title { display: block; font-size: 12px; font-weight: 700; margin: 0 0 28px 0; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
	.copy_title { font-size: 22px; font-weight: 800; margin: 0 0 26px 0; }
	.title_style_1 { font-size: 18px; font-weight: 800; padding: 6px 15px; border-left: solid 4px var(--accent); margin: 0 0 20px 0; }

	/* サイドナビレイアウト */
	.page_nav_wrap { display: flex; align-items: flex-start; gap: 80px; padding-left: 20px; }
	.page_nav_wrap .page_nav {
		position: sticky;
		top: 150px;
		width: 200px;
		min-width: 200px;
		flex-shrink: 0;
		align-self: flex-start;
	}
	.page_nav_content { flex: 1; min-width: 0; padding: 0 100px; }
	.page_nav_wrap .page_nav_list__link { font-size: 14px; padding: 14px 16px 14px 44px; }
	.page_nav_title { font-size: 28px; font-weight: bold; text-align: center; margin: 0 auto 20px; width: 100%; }
	.page_nav_line { display: block; width: 60px; height: 4px; background: var(--accent); border: none; margin: 0 auto 30px; border-radius: 999px; }
	.page_nav_desc { text-align: center; max-width: 640px; text-align: center; margin: 0 auto 60px; word-break: break-word; }
	.page_nav_list { width: 100%; display: flex; flex-direction: row; flex-wrap: wrap; counter-reset: nav-counter; }
	.page_nav_list__li { width: 25%; margin: 0; counter-increment: nav-counter; }
	.page_nav_wrap .page_nav_list { flex-direction: column; }
	.page_nav_wrap .page_nav_list__li { width: 100%; }
	.page_nav_list__link { display: block; position: relative; padding: 12px 16px 12px 40px; box-sizing: border-box; color: var(--text-muted); border-bottom: 1px solid rgba(255,255,255,0.08); transition: color 0.2s; font-size: 13px; }
	.page_nav_list__link::before { content: counter(nav-counter, decimal-leading-zero); position: absolute; left: 12px; top: 50%; transform: translateY(-50%); font-size: 9px; font-family: 'Inter', sans-serif; font-weight: 300; letter-spacing: 0.05em; color: var(--accent); line-height: 1; }
	.page_nav_list__link::after { content: ''; position: absolute; bottom: -1px; left: 0; width: 0; height: 2px; background: var(--accent); transition: width 0.3s ease; }
	.page_nav_list__link:hover { color: var(--text); }
	.page_nav_list__link:hover::after { width: 100%; }
	.page_nav_list__link.curent { color: var(--text); }
	.page_nav_list__link.curent::after { width: 100%; }
	.page_nav_list__link.is-active { color: var(--text); }
	.page_nav_list__link.is-active::after { width: 100%; }
	.page_nav_wrap .page_nav_list__link::after { bottom: auto; top: 0; left: 0; width: 2px; height: 0; transition: height 0.3s ease; }
	.page_nav_wrap .page_nav_list__link:hover::after { width: 2px; height: 100%; }
	.page_nav_wrap .page_nav_list__link.curent::after { width: 2px; height: 100%; }
	.page_nav_wrap .page_nav_list__link.is-active::after { width: 2px; height: 100%; }
	.page_nav_list .icon { display: none; }

#sec_head { position: relative; margin: 0; background: center / cover no-repeat url("../img/img_top_slide_01@2x.webp"); width: 100vw; left: 50%; transform: translateX(-50%); height: 30vh; display: flex; align-items: center; padding-top: 80px; box-sizing: border-box; }
	#sec_head:before { content: ''; display: block; width: 100%; height: 100%; position: absolute; z-index: 0; top: 0; left: 0; right: 0; bottom: 0;
		background:
			linear-gradient(90deg, rgba(15,31,26,0.75) 0%, rgba(15,31,26,0.30) 55%, rgba(15,31,26,0.45) 100%),
			radial-gradient(900px 520px at 22% 40%, rgba(0,147,127,0.25) 0%, rgba(0,147,127,0.08) 55%, rgba(0,0,0,0.0) 70%);
	}
	#sec_head .inner { padding: 120px 60px 60px; z-index: 10; position: relative; max-width: 1400px; margin: 0 auto; width: 100%; }
	.sec_head_title { display: block; font-size: clamp(34px, 4.2vw, 44px); font-weight: 900; color: var(--text); margin: 0; text-align: center; letter-spacing: 0.04em; }
	.sec_head_sub_title { display: block; font-size: 16px; font-weight: 800; color: var(--text-muted); margin: 10px 0 0 0; text-align: center; letter-spacing: 0.08em; }

.page-template-page-about #sec_head {
	background: #f0ede6;
	border-top: 0.5px solid rgba(0,0,0,0.08);
	border-bottom: 0.5px solid rgba(0,0,0,0.1);
	height: auto;
	min-height: 280px;
	padding-top: 52px;
	margin-top: 120px;
}

/* aboutヘッダー — テキスト・装飾のライト化 */
.about-nav-spacer { display: none; }
.page-template-page-about .ph-bg { background: #f0ede6; }
.page-template-page-about .ph-bg-word { color: rgba(0,0,0,0.04); }
.page-template-page-about .ph-vline { background: rgba(0,0,0,0.08); }
.page-template-page-about .ph-title { color: #1a1a18; }
.page-template-page-about .ph-title-sub { color: rgba(0,0,0,0.3); }
.page-template-page-about .ph-eyebrow { color: var(--accent); }
.page-template-page-about .ph-eyebrow::before { background: var(--accent); }
.page-template-page-service #sec_head { background: none; }
.sec-head-img {
	position:absolute;
	top:0;left:0;
	width:100%;height:100%;
	object-fit:cover;object-position:center;
	z-index:0;
	pointer-events:none;
}
.page-template-page-download #sec_head { background: center / cover no-repeat url("../img/img_top_slide_03@2x.webp"); }
.page-template-page-contact #sec_head { background: center / cover no-repeat url("../img/img_top_slide_06@2x.webp"); }
.page-template-page-recruit #sec_head { background: center / cover no-repeat url("../img/img_top_slide_05@2x.webp"); }
.post-type-archive-work #sec_head, .single-work #sec_head { background: center / cover no-repeat url("../img/img_top_slide_04@2x.webp"); }
.page-template-page-activities #sec_head { background: center / cover no-repeat url("../img/img_top_slide_01@2x.webp"); }
.blog #sec_head, .single-post #sec_head { background: center / cover no-repeat url("../img/img_top_slide_02@2x.webp"); }

#sec_slide { position: relative; overflow: hidden; height: 750px; }
	.slide_bg { position: absolute; z-index: 0; top: 0; left: 0; right: 0; bottom: 0; height: 100%; width: 100%; }
	
	/* 2026.03.05　コメントアウト
	.slide_bg:after { content: ''; display: block; width: 100%; height: 100%; position: absolute; z-index: 5; top: 0; left: 0; right: 0; bottom: 0; background: rgb(0,105,91); background: linear-gradient(128deg, rgba(0,105,91,0.8) 0%, rgba(0,105,91,0) 59%, rgba(0,105,91,0.8) 100%); }
	*/
	
	.slide_contents { position: relative; z-index: 10; padding-top: 90px; height: 100%; width: 100%; box-sizing: border-box; }
	.slide_contents .inner { height: 100%; display: flex; align-items: center; }
	.slide_image { position: absolute; top: 15%; right: 5%; z-index: 5; }
	.slide_list {}

	/* 2026.03.05　コメントアウト
	.slide_list__img { height: 750px; width: auto; max-width: none !important; }
	*/

	/* 2026.03.05　メインビジュアル差し替えのため追加 */
	.slide_list__video { position: absolute; top: 0; left: 0; width: 100%; height: 750px; object-fit: cover; z-index: -1; max-width: none !important;}
	.slide_item {
    width: 100%;
    height: 750px;
    position: relative;
	}
	.slide_contents {
    position: absolute;   /* relativeから修正 */
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 90px;
    box-sizing: border-box;
	}
	/*　ここまで　*/

	.slide_box { max-width: 600px; }
	.slide_anzai { display: block; margin: 0 0 20px 0; }
	.slide_sub_title { display: inline-block; margin: 0 0 20px 0; font-size: 42px; color: #fff; font-weight: 200; line-height: 1; position: relative; font-family: 'Inter', sans-serif; letter-spacing: 0.25em; text-transform: uppercase; }
	.slide_title { display: inline-block; margin: 0 0 60px 0; font-size: 32px; color: #fff; font-weight: bold; line-height: 1; position: relative; font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif; letter-spacing: 1px; }
	.slide_txt { display: block; margin: 0 0 60px 0; color: #fff; font-weight: bold; }
	.slick-slide { display: flex !important; justify-content: center; }
	.slick-dots > li { display: inline-block; }
	.slick-dots > li > button { height: 5px; width: 5vw; background: rgba(255,255,255,0.55); border: none; margin: 0 5px 0 0; text-indent: -9999px; opacity: 0.6; }
	.slick-dots:hover > li > button { opacity: 1; }
	.slick-dots > li.slick-active > button { background: #00937f; }

	/*
	.sec_slide:after { content: ''; display: block; background: rgba(255,255,255,0.1); width: 1px; height: 100%; position: absolute; z-index: 5; top: 0; left: 10%; }
	.sec_slide:before { content: ''; display: block; background: rgba(255,255,255,0.1); width: 1px; height: 100%; position: absolute; z-index: 5; top: 0; left: 90%; }
	.slide_bg:before { content: ''; display: block; background: rgba(255,255,255,0.1); width: 1px; height: 100%; position: absolute; z-index: 5; top: 0; left: 50%; }
	.slide_contents:after { content: ''; display: block; background: rgba(255,255,255,0.1); width: 1px; height: 100%; position: absolute; z-index: 5; top: 0; left: 30%; }
	.slide_contents:before { content: ''; display: block; background: rgba(255,255,255,0.1); width: 1px; height: 100%; position: absolute; z-index: 5; top: 0; left: 70%; }
	.slide_sub_title:after { content: ''; display: block; background: rgba(255,255,255,0.2); width: 102%; height: 1px; position: absolute; z-index: 5; top: 0; left: -2%; }
	.slide_sub_title:before { content: ''; display: block; background: rgba(255,255,255,0.2); width: 102%; height: 1px; position: absolute; z-index: 5; bottom: 0; left: -2%; }
	.slide_title:after { content: ''; display: block; background: rgba(255,255,255,0.2); width: 102%; height: 1px; position: absolute; z-index: 5; top: 0; left: -2%; }
	.slide_title:before { content: ''; display: block; background: rgba(255,255,255,0.2); width: 102%; height: 1px; position: absolute; z-index: 5; bottom: 0; left: -2%; }
	*/

/* -------------------------------------------- */
/* TOP PAGE sections (2026 redesign)            */
/* -------------------------------------------- */

/* ── NEWS ── */
#sec_top_news {
	background: #fff;
	padding: 50px 0;
	border-bottom: 0.5px solid #e8e4db;
}
#sec_top_news .glid-12.inner {
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 0;
	align-items: start;
	padding-top: 50px;
	padding-bottom: 50px;
}
.news_label_large {
	font-family: var(--font-serif);
	font-size: clamp(48px, 6vw, 72px);
	font-weight: 300;
	font-style: italic;
	color: #e0ddd6;
	line-height: 1;
}
	.table_news { width: 100%; border-top: 0.5px solid #e0ddd6; }
	.table_news td {
		display: grid;
		grid-template-columns: 100px 1fr;
		gap: 16px;
		align-items: baseline;
		padding: 16px 0;
		border-bottom: 0.5px solid #e8e4db;
		font-size: 14px;
		color: #333;
	}
	.table_news th {
		font-size: 13px;
		color: #888;
		letter-spacing: 0.08em;
		font-family: var(--font-serif);
		font-weight: 400;
		padding: 0;
		border: none;
		background: none;
	}
	.table_news td a {
		color: var(--text);
		font-size: 13px;
		transition: color 0.2s;
	}
	.table_news td a:hover { color: var(--accent); }

/* ── ABOUT ── */
#sec_top_about {
	background: var(--bg);
	padding: 100px 0;
	position: relative;
	overflow: hidden;
}
#sec_top_about .glid-12.inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}
.top_about_bg_word {
	position: absolute;
	top: -20px; right: -20px;
	font-family: var(--font-serif);
	font-size: clamp(120px, 20vw, 240px);
	font-weight: 300;
	color: rgba(0, 0, 0, 0.035);
	line-height: 1;
	pointer-events: none;
	user-select: none;
}
.top_about_h2 {
	font-family: var(--font-serif);
	line-height: 1.1;
	margin-bottom: 32px;
}
.top_about_h2_line1 {
	display: block;
	font-size: clamp(32px, 4.5vw, 56px);
	font-weight: 300;
	color: var(--text);
	letter-spacing: -0.01em;
}
.top_about_h2_line2 {
	display: block;
	font-size: clamp(32px, 4.5vw, 56px);
	font-weight: 300;
	font-style: italic;
	color: var(--accent);
	letter-spacing: -0.01em;
	padding-left: 40px;
}
#sec_top_about .desc { color: var(--text-muted); font-weight: 300; }
.top_about_img_wrap { position: relative; }
.top_about__img {
	transform: none;
	width: 100%;
	max-width: none;
	-webkit-mask-image: none;
	mask-image: none;
	border-radius: 2px;
	height: 320px;
	object-fit: cover;
}
.top_about_img_caption {
	position: absolute;
	bottom: -20px; right: 0;
	font-family: var(--font-serif);
	font-size: 48px;
	font-weight: 300;
	font-style: italic;
	color: rgba(0, 0, 0, 0.05);
	line-height: 1;
	white-space: nowrap;
	pointer-events: none;
}
.top_about_dx_note {
	margin-top: 10px;
	font-size: 11px;
	color: #8a9e9a;
	display: flex;
	align-items: center;
	gap: 6px;
}
.top_about_dx_note::before {
	content: '';
	display: block;
	width: 4px; height: 4px;
	border-radius: 50%;
	background: var(--accent);
	flex-shrink: 0;
}
.top_about_stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border: 0.5px solid #e0ddd6;
	margin-top: 20px;
}
.top_about_stat {
	padding: 16px 12px;
	text-align: center;
	border-right: 0.5px solid #e0ddd6;
}
.top_about_stat:last-child { border-right: none; }
.top_about_stat_num {
	font-family: var(--font-serif);
	font-size: 38px;
	font-weight: 300;
	color: var(--text);
	line-height: 1;
	display: block;
}
.top_about_stat_unit {
	font-size: 15px;
	color: var(--accent);
	font-weight: 700;
	vertical-align: super;
}
.top_about_stat_label {
	font-size: 12px;
	color: #888;
	margin-top: 5px;
	display: block;
	letter-spacing: 0.05em;
}

/* ── SERVICE ── */
#sec_top_service {
	background: var(--bg);
	padding: 80px 0;
}
#sec_top_service .glid-12.inner { padding-bottom: 0; }
.top_service_header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 32px;
}
.top_service_h2 {
	font-family: var(--font-serif);
	font-size: clamp(28px, 4vw, 48px);
	font-weight: 300;
	color: var(--text);
	line-height: 1.1;
}
.top_service_more {
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--accent);
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 6px;
	white-space: nowrap;
}
.top_service_more::after { content: '→'; }
/* サービスグリッド */
.top_service_grid {
	display: grid;
	grid-template-columns: 3fr 2fr;
	grid-template-rows: 260px 140px;
	gap: 2px;
}
.top_service_grid2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2px;
	margin-top: 2px;
}
.top_s_card {
	position: relative;
	overflow: hidden;
	cursor: pointer;
	background: var(--black);
	display: block;
	text-decoration: none;
}
.top_s_card:nth-child(1) { grid-row: span 2; }
.top_s_card_bg {
	position: absolute; inset: 0;
	transition: transform 0.5s ease;
}
.top_s_card:hover .top_s_card_bg { transform: scale(1.05); }
.top_s_card_bg_1 { background: linear-gradient(160deg, #0d2218, #040c08 60%, #102018); }
.top_s_card_bg_2 { background: linear-gradient(140deg, #081a12, #030a07); }
.top_s_card_bg_3 { background: linear-gradient(140deg, #0a1a14, #040c09); }
.top_s_card_bg_4 { background: linear-gradient(140deg, #0c1c10, #050e08); }
.top_s_card_bg_5 { background: linear-gradient(140deg, #081410, #030908); }
.top_s_card_overlay {
	position: absolute; inset: 0;
	background: linear-gradient(to top, rgba(3,8,5,0.92) 0%, transparent 60%);
}
.top_s_card_lines {
	position: absolute; inset: 0;
	opacity: 0.04;
	background-image: linear-gradient(rgba(255,255,255,1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,1) 1px, transparent 1px);
	background-size: 36px 36px;
}
.top_s_card_accent {
	position: absolute; top: 0; left: 0;
	width: 2px; height: 100%;
	background: var(--accent);
	transform: scaleY(0);
	transform-origin: bottom;
	transition: transform 0.3s ease;
}
.top_s_card:hover .top_s_card_accent { transform: scaleY(1); }
.top_s_card_num {
	position: absolute; top: 20px; left: 20px;
	font-family: var(--font-serif);
	font-size: clamp(40px, 5vw, 72px);
	font-weight: 300;
	color: rgba(255,255,255,0.07);
	line-height: 1;
}
.top_s_card_body { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; }
.top_s_card_en {
	font-size: 9px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(0,144,125,0.8);
	margin-bottom: 5px;
}
.top_s_card_title { font-size: 14px; font-weight: 700; color: #fff; line-height: 1.4; }
.top_s_card_title_sm { font-size: 11px; }
.top_s_card_h {
	position: relative;
	overflow: hidden;
	cursor: pointer;
	height: 130px;
	background: var(--black);
	display: block;
	text-decoration: none;
}
.top_s_card_h .top_s_card_bg { position: absolute; inset: 0; transition: transform 0.5s; }
.top_s_card_h:hover .top_s_card_bg { transform: scale(1.05); }

/* ── MESSAGE（代表メッセージ） ── */
#sec_top_message {
	background: var(--black);
	padding: 110px 0;
	position: relative;
	overflow: hidden;
	text-align: center;
}
.top_msg_bg_lines { display: none; }
.top_msg_vignette { display: none; }
#sec_top_message .glid-12.inner {
	position: relative;
	z-index: 1;
	max-width: 680px;
}
.top_msg_eyebrow {
	font-size: 11px;
	letter-spacing: 0.35em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.2);
	margin-bottom: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
}
.top_msg_eyebrow::before,
.top_msg_eyebrow::after {
	content: '';
	display: block;
	width: 24px; height: 0.5px;
	background: rgba(255,255,255,0.15);
}
.top_msg_h2 {
	font-family: var(--font-serif);
	font-size: clamp(28px, 4.5vw, 54px);
	font-weight: 300;
	color: #e8e4dc;
	line-height: 1.25;
	margin-bottom: 36px;
	letter-spacing: 0.02em;
}
.top_msg_h2 em { font-style: italic; color: rgba(255,255,255,0.75); }
.top_msg_body {
	font-size: 15px;
	color: rgba(220,215,205,0.85);
	line-height: 2.2;
	font-weight: 300;
	margin-bottom: 52px;
}
.top_msg_divider {
	width: 32px; height: 0.5px;
	background: var(--accent);
	margin: 0 auto 40px;
	border: none;
}
.top_msg_motto {
	font-family: var(--font-serif);
	font-size: clamp(36px, 5vw, 64px);
	font-weight: 300;
	color: rgba(255,255,255,0.9);
	letter-spacing: 0.15em;
	margin-bottom: 12px;
}
.top_msg_motto_sub {
	font-size: 13px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.4);
}

/* ── RECRUIT ── */
#sec_top_recruit {
	position: relative;
	height: 440px;
	background: #162820;
	overflow: hidden;
	display: flex;
	align-items: center;
	clip-path: none;
	padding-top: 0;
}
.top_recruit_bg {
	position: absolute; inset: 0;
	background: linear-gradient(160deg, #1e3828, #0d1e14 50%, #243020);
	opacity: 0.9;
}
.top_recruit_bg_dots {
	position: absolute; inset: 0;
	background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
	background-size: 20px 20px;
}
.top_recruit_overlay {
	position: absolute; inset: 0;
	background: linear-gradient(to right, rgba(5,12,8,0.85) 0%, rgba(5,12,8,0.3) 60%, rgba(5,12,8,0.7) 100%);
}
.top_recruit_content {
	position: relative;
	z-index: 2;
	padding: 0 40px;
	max-width: 620px;
}
.top_recruit_bigword {
	position: absolute;
	right: 40px; top: 50%;
	transform: translateY(-50%);
	font-family: var(--font-serif);
	font-size: clamp(60px, 12vw, 160px);
	font-weight: 300;
	color: rgba(255,255,255,0.04);
	line-height: 1;
	pointer-events: none;
	user-select: none;
}
.top_recruit_h2 {
	font-family: var(--font-serif);
	font-size: clamp(36px, 5.5vw, 68px);
	font-weight: 300;
	color: #fff;
	line-height: 1.1;
	margin-bottom: 20px;
	letter-spacing: -0.01em;
}
.top_recruit_h2 em { font-style: italic; color: var(--accent); }
#sec_top_recruit .desc {
	color: rgba(255,255,255,0.5);
	font-weight: 300;
	max-width: 420px;
}
.top_recruit_roles {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 28px;
}
.top_recruit_role {
	background: rgba(255,255,255,0.07);
	border: 0.5px solid rgba(255,255,255,0.12);
	font-size: 12px;
	color: rgba(255,255,255,0.6);
	padding: 4px 10px;
	border-radius: 1px;
}
#sec_top_recruit .btn_link {
	color: #fff;
	border-color: rgba(255,255,255,0.3);
	background: transparent;
}

#sec_about {}
	#sec_about .box { padding: 60px 0; }
	#sec_about .glid-10.inner { margin: 0 auto; }
	#sec_gallery .glid-10.inner { margin: 0 auto; }
	.outline_table { width: 100%; border-top: solid 1px var(--accent); border-radius: var(--radius-sm); overflow: hidden; background: transparent; }
	.outline_table th { border-bottom: solid 1px rgba(0,144,125,0.3); border-left: solid 3px var(--accent); padding: 16px 16px; background: transparent; font-weight: 800; white-space: nowrap; color: var(--text); }
	.outline_table td { border-bottom: solid 1px rgba(0,144,125,0.3); padding: 16px 16px; color: var(--text-muted); }
	.regist_table { width: 100%; border-top: solid 1px var(--accent); border-radius: var(--radius-sm); overflow: hidden; background: transparent; }
	.regist_table th { border-bottom: solid 1px rgba(0,144,125,0.3); border-left: solid 3px var(--accent); padding: 16px 16px; font-weight: 800; white-space: nowrap; color: var(--text); background: transparent; }
	.regist_table td { border-bottom: solid 1px rgba(0,144,125,0.3); padding: 16px 16px; color: var(--text-muted); }
	.office_table { width: 100%; border-top: solid 1px var(--accent); border-radius: var(--radius-sm); overflow: hidden; background: transparent; }
	.office_table th { border-bottom: solid 1px rgba(0,144,125,0.3); border-left: solid 3px var(--accent); padding: 16px 16px; font-weight: 800; white-space: nowrap; color: var(--text); background: transparent; }
	.office_table td { border-bottom: solid 1px rgba(0,144,125,0.3); padding: 16px 16px; color: var(--text-muted); }

#sec_recruit { background: rgba(255,255,255,0.01); }
	#sec_recruit .box { padding: 60px 0; }

#sec_service { background: rgba(255,255,255,0.01); }
	#sec_service > .glid-10.inner:first-of-type { margin: 0 auto; }
	.sec_service_inner { max-width: 1200px; margin: 0 auto; }
	#sec_service .box { padding: 60px 0; }
	.service_image { margin: 0 0 50px 0; }
	.service_content { max-width: 860px; margin: 0 auto; }
	.flow_list { margin: 0 0 30px 0; }
	.flow_list__li { position: relative; margin: 0 0 20px 0; }
	.flow_list__li:after { position: absolute; bottom: -20px; content: ''; background: center no-repeat url("../icon/ico_angle_down.svg"); width: 100%; height: 20px; }
	.flow_list__li:last-child:after { content: none; }
	.flow_list__li .row { border: solid 1px var(--accent); border-radius: var(--radius-sm); overflow: hidden; margin: 0; background: transparent; }
	.flow_list__li .col-4 { padding: 0; }
	.flow_list__li .col-8 { padding: 30px; }
	.flow_list__img { width: 100%; }
	.flow_list__title { font-size: 18px; font-weight: bold; margin: 0 0 20px 0; }
	.flow_list__num { color: #00937f; display: inline-block; margin: 0 15px 0 0; }
	.flow_list__desc { line-height: 1.6; }
	.service_contact { background: transparent; border-radius: var(--radius-md); padding: 60px 20px; border: 1px solid var(--accent); box-shadow: 0 0 18px rgba(0,144,125,0.1); }

#sec_work { background: center / contain no-repeat url('../img/bg_logo_anzai.svg'); background-color: rgba(255,255,255,0.01); }
	#sec_work .box { padding: 60px 0; }
	#sec_work .page_nav_list__li { flex: 0 0 33.3%; width: 33.3%; margin: 0 0 20px -1px; }
	.work_nav_title { display: none; border-left: solid 5px #00937f; padding: 5px 15px; margin: 0 0 20px; }
	.work_nav_count { font-size: 18px; font-weight: bold; }
	.work_nav_num { font-size: 18px; font-weight: bold; margin: 0 10px; }
	.work_nav_unit { font-size: 14px; font-weight: bold; }
	.work_list { margin: 0 0 30px 0; border-bottom: dotted 1px rgba(0,144,125,0.25); }
	.work_list__li { border-top: dotted 1px rgba(0,144,125,0.25); padding: 12px 0; }
	.work_list__img { border-radius: 6px; width: 100%; }
	.work_list__meta { margin: 0 0 5px 0; }
	.work_list__date { color: #00937f; font-weight: bold; }
	.work_list__div { margin: 0 5px; }
	.work_list__cat {}
	.work_list__title { margin: 0 0 10px 0; font-size: 20px; font-weight: bold; }
	.work_list__client { margin: 0 0 10px 0; }
	.work_list__desc { margin: 0 0 15px 0; }
	.work_list__link {}
	.work_list__link .btn_link { height: 40px; min-width: 190px; padding: 0 14px; padding-right: 40px; font-weight: 800; }
	.work_page_nav { background: #F7FCFA; padding: 30px 30px; border-radius: 6px; }
	.work_content { border: solid 1px var(--accent); border-radius: var(--radius-md); padding: 60px 30px; margin: 0 0 30px 0; background: transparent; box-shadow: 0 0 18px rgba(0,144,125,0.1); }
	.work_content_box { max-width: 760px; margin: 0 auto; }
	.work_content__meta { margin: 10px 0 10px 0; }
	.work_content__date { color: #00937f; font-weight: bold; }
	.work_content__div { margin: 0 5px; }
	.work_content__title { margin: 0 0 20px 0; font-size: 24px; font-weight: 800; border-bottom: solid 1px rgba(0,144,125,0.25); padding: 0 0 15px 0; position: relative; color: var(--text); }
	.work_content__title:after { content: ''; width: 80px; height: 1px; background: #00937f; position: absolute; bottom: -1px; left: 0; }
	.work_content__desc { margin: 0 0 60px 0; }
	.work_content_table { width: 100%; border-top: dotted 1px rgba(0,144,125,0.25); }
	.work_content_table th { border-bottom: dotted 1px rgba(0,144,125,0.25); padding: 15px; font-weight: 800; white-space: nowrap; color: var(--text); }
	.work_content_table td { border-bottom: dotted 1px rgba(0,144,125,0.25); padding: 15px; color: var(--text-muted); }
	.work_single_nav { display: flex; justify-content: space-between; align-items: center; }
	.work_single_nav__prev { position: relative; display: none; padding: 10px 15px 10px 15px; margin: 0 0 20px 0; border: solid 1px #F7FCFA; background: #F7FCFA; border-radius: 40px; white-space: nowrap; }
	.work_single_nav__next { position: relative; display: none; padding: 10px 15px 10px 15px; margin: 0 0 20px 0; border: solid 1px #F7FCFA; background: #F7FCFA; border-radius: 40px; white-space: nowrap; }
	.work_single_nav .btn_link { margin: 0 0 20px 0; }
	.wp-pagenavi { text-align: center; }
	.wp-pagenavi a, .wp-pagenavi span { display: inline-block; padding: 8px 0; min-width: 38px; font-size: 14px; background: rgba(255,255,255,0.08); margin: 3px 3px; border-radius: 10px; font-weight: 800; border: 1px solid rgba(255,255,255,0.10); color: var(--text-muted); }
	.wp-pagenavi .current, .wp-pagenavi a:hover { background: #00937f; color: #fff; }

#sec_news {}
	#sec_news .glid-10.inner { margin: 0 auto; }
	.news_list { margin: 0 0 30px 0; border-bottom: dotted 1px rgba(0,144,125,0.25); }
	.news_list__li { border-top: dotted 1px rgba(0,144,125,0.25); padding: 12px 0; }
	.news_list__img { border-radius: 6px; width: 100%; }
	.news_list__meta { margin: 0 0 5px 0; }
	.news_list__date { color: #00937f; font-weight: bold; }
	.news_list__div { margin: 0 5px; }
	.news_list__cat {}
	.news_list__title { margin: 0 0 10px 0; font-size: 20px; font-weight: bold; }
	.news_list__client { margin: 0 0 10px 0; }
	.news_list__desc { margin: 0 0 15px 0; }
	.news_list__link {}
	.news_list__link .btn_link { height: 40px; min-width: 190px; padding: 0 14px; padding-right: 40px; font-weight: 800; }
	.news_content { border: solid 1px var(--accent); border-radius: var(--radius-md); padding: 60px 30px; margin: 0 0 30px 0; background: transparent; box-shadow: 0 0 18px rgba(0,144,125,0.1); }
	.news_content_box { max-width: 760px; margin: 0 auto; }
	.news_content__meta { margin: 10px 0 10px 0; }
	.news_content__date { color: #00937f; font-weight: bold; }
	.news_content__div { margin: 0 5px; }
	.news_content__title { margin: 0 0 20px 0; font-size: 24px; font-weight: 800; border-bottom: solid 1px rgba(0,144,125,0.25); padding: 0 0 15px 0; position: relative; color: var(--text); }
	.news_content__title:after { content: ''; width: 80px; height: 1px; background: #00937f; position: absolute; bottom: -1px; left: 0; }
	.news_content__desc { margin: 0 0 60px 0; }
	.news_content__desc ul { list-style: disc; padding-left: 1.8em; margin: 0 0 20px 0; }
	.news_content__desc ol { list-style: decimal; padding-left: 1.8em; margin: 0 0 20px 0; }
	.news_content__desc li { margin: 0 0 8px 0; line-height: 1.8; }
	.news_content__desc strong, .news_content__desc b { font-weight: bold; color: var(--text); }
	.news_content__desc h2 { font-size: 1.4em; font-weight: bold; margin: 30px 0 15px; }
	.news_content__desc h3 { font-size: 1.2em; font-weight: bold; margin: 24px 0 12px; }


#sec_download { background: url('../img/bg_logo.svg') 90% 10% no-repeat; background-color: rgba(255,255,255,0.01); }
	#sec_download .glid-10.inner { margin: 0 auto; }
	.attention { padding: 50px 20px; margin: 0 0 30px 0; background: rgba(255,255,255,0.04); border-radius: var(--radius-md); text-align: center; border: 1px solid rgba(255,255,255,0.12); }
	.link_list { border-top: solid 1px rgba(255,255,255,0.14); }
	.link_list__link { display: block; border-bottom: solid 1px rgba(0,144,125,0.25); padding: 15px 0; color: var(--accent); text-decoration: underline; }

#sec_contact { background: rgba(255,255,255,0.01); }
	#sec_contact .box { padding: 60px 0; }
	.phone_contact { display: block; padding: 30px; background: rgba(255,255,255,0.04); border-radius: var(--radius-md); margin: 0 0 30px 0; border: 1px solid rgba(255,255,255,0.12); }
	.phone_contact_btn { display: block; }
	.phone_contact__tel { display: inline-block; vertical-align: middle; font-size: 24px; color: var(--accent); font-weight: 800; }
	.phone_contact__icon { height: 24px; margin: 0 10px 0 0; }
	.phone_contact__text { display: inline-block; vertical-align: middle; padding: 0 15px; }
	.contact_table { width: 100%; margin: 0 0 20px 0; }
	.contact_table th { padding: 20px 20px 20px 0; position: relative; font-weight: bold; vertical-align: top; }
	.contact_table td { padding: 20px 0 20px 20px; }
	.contact_table .req { display: inline-block; position: absolute; right: 0; background: #64BEFA; padding: 3px 5px; border-radius: 3px; color: #fff; font-size: 12px; font-weight: bold; }
	.contact_privacy { display: block; background: rgba(255,255,255,0.04); padding: 15px; border-radius: var(--radius-md); margin: 0 0 30px 0; text-align: center; border: 1px solid rgba(255,255,255,0.12); }
	.wpcf7-text {
		background: rgba(255,255,255,0.06); padding: 12px 14px; width: 100%; margin: -10px 0 0; display: block;
		box-sizing: border-box; border: solid 1px rgba(255,255,255,0.14); border-radius: 12px;
		-webkit-appearance: none; outline: none; font-size: 16px;
		appearance: none;
		color: var(--text);
	}
	.wpcf7-text[name="az-name"], .wpcf7-text[name="az-kana"], .wpcf7-text[name="az-tel"], .wpcf7-text[name="az-fax"] { max-width: 360px; }
	.wpcf7-textarea {
		background: rgba(255,255,255,0.06); padding: 12px 14px; width: 100%; margin: -10px 0 0; display: block;
		box-sizing: border-box; border: solid 1px rgba(255,255,255,0.14); border-radius: 12px;
		-webkit-appearance: none; outline: none; font-size: 16px;
		appearance: none;
		color: var(--text);
	}
	.wpcf7-submit {
		-webkit-appearance: none; outline: none; border: solid 1px #00937f;
		display: inline-block; padding: 10px 40px; background: #00937f;
		color: #fff; font-size: 18px; font-weight: bold;
		border-radius: 40px; margin-bottom: 10px;
		appearance: none;
	}
	.wpcf7-submit:hover { background: rgba(255,255,255,0.10); color: #fff; }
	.wpcf7-response-output { padding: 0.5em 2em !important; text-align: center; border-radius: 3px; margin: 1em 0 1em !important; }
	.wpcf7-not-valid-tip { color: #F65A71; padding: 0.3em 0.3em 0 0.3em; }
	.wpcf7-mail-sent-ok { border: 2px solid #398f14; background: #fff; }
	.wpcf7-mail-sent-ng { border: 2px solid #ff0000; background: #fff; }
	.wpcf7-spam-blocked { border: 2px solid #ffa500; background: #fff; }
	.wpcf7-validation-errors { border: 2px solid #f7e700; background: #fff; }
	.wpcf7-list-item-label { cursor: pointer; }

#subfooter { position: relative; background: url('../img/bg_footer@2x.webp') top center no-repeat; background-size: cover; }
#subfooter:before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,15,20,0.55) 0%, rgba(11,15,20,0.85) 60%, rgba(11,15,20,0.92) 100%); pointer-events: none; }
#subfooter .inner { position: relative; z-index: 1; }
	#subfooter .btn_link { margin: 0 5px 10px 5px; color: #fff !important; }
	#subfooter .btn_tel_link { margin: 0 5px 10px 5px; color: #fff !important; }

#footer {
	background: rgba(0,0,0,0.72);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	border-top: 1px solid rgba(255,255,255,0.1);
}
#footer .glass {
	background: none;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	border: none;
	border-radius: 0;
	box-shadow: none;
}
	.footer_address_box { margin: 0 -15px; }
	.footer_logo_type { margin: 0 0 20px 0; }
	.footer_address { margin: 0 0 30px 0; color: rgba(255,255,255,0.5); line-height: 1.85; }
	.footer_nav { margin: 0 0 20px 0; }
	.footer_nav__link { vertical-align: middle; color: rgba(255,255,255,0.75); opacity: 0.9; }
	.footer_nav__link:hover { opacity: 1; color: #fff; }
	.footer_menu_box {}
	.footer_menu_list {}
	.footer_menu_list__link { color: rgba(255,255,255,0.45); }
	.footer_menu_list__link:hover { color: rgba(255,255,255,0.85); }
	.footer_menu_list__link.head { display: block; font-weight: 900; margin: 0 0 15px 0; color: rgba(255,255,255,0.85); }
	.copyright { text-align: right; font-size: 12px; color: rgba(255,255,255,0.55); }

/* off-canvas full screen menu */
#menu { display: none; position: fixed; z-index: 100; top: 0; left: 0; right: 0; width: 100%; height: 100%; background: rgba(11,15,20,0.92); padding: 60px 0 60px 0; box-sizing: border-box; overflow-y: scroll; -webkit-overflow-scrolling: touch; backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
	.menu_list { margin: 0 0 30px 0; border-top: solid 1px rgba(255,255,255,0.14); }
	.menu_list__li {}
	.menu_list__link { display: block; border-bottom: solid 1px rgba(0,144,125,0.25); padding: 16px 0; color: rgba(255,255,255,0.85); font-weight: 800; letter-spacing: 0.02em; }
	.menu_list__icon { float: right; filter: brightness(400%) saturate(190); padding: 6px; }
	.menu_contact { text-align: center; }
	.menu_tel__btn { display: inline-block; min-width: 200px; background: rgba(255,255,255,0.10); color: #fff; padding: 10px 20px; font-size: 16px; border-radius: 40px; font-weight: bold; white-space: nowrap; line-height: 1.6; margin: 0 0 20px 0; border: 1px solid rgba(255,255,255,0.18); }
	.menu_tel__icon { vertical-align: text-bottom; }
	.menu_mail__btn { display: inline-flex; align-items: center; gap: 10px; min-width: 200px; background: var(--accent); color: #fff; padding: 0 18px; height: 46px; font-size: 14px; border-radius: var(--radius-pill); font-weight: 800; white-space: nowrap; line-height: 1.6; margin: 0 0 20px 0; border: 1px solid rgba(0,0,0,0.18); }
	.menu_mail__icon { vertical-align: text-bottom; }
	.menu_sns { text-align: center; }
	.menu_sns__btn { display: inline-block; padding: 5px; margin: 0 0 60px 0; }
	.menu_sns__img_facebook { width: 34px; height: 34px; vertical-align: middle; }
	.menu_sns__img_instagram { width: 34px; height: 34px; vertical-align: middle; }
	.menu_company { margin: 0 0 60px 0; }
	.menu_logo_type { margin: 0 0 30px 0; }
	.menu_logo_type__img { filter: brightness(400%) saturate(190); }
	.menu_address { color: #fff; }
	.menu_close__btn { display: block; border: solid 1px rgba(255,255,255,0.18); padding: 15px; text-align: center; color: rgba(255,255,255,0.7); border-radius: var(--radius-md); background: rgba(255,255,255,0.04); }

/* -------------------------------------------- */
/* animation */
/* -------------------------------------------- */
	@keyframes slideInLeft { 0% {
		-webkit-transform: translate3d(-10%, 0, 0);
		transform: translate3d(-10%, 0, 0);
		opacity: 0;
	} to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
		opacity: 1;
	}}
	@keyframes slideInRight { 0% {
		-webkit-transform: translate3d(10%, 0, 0);
		transform: translate3d(10%, 0, 0);
		opacity: 0;
	} to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
		opacity: 1;
	}}
	@keyframes fadeIn { 0% {
		opacity: 0;
	} to {
		opacity: 1;
	}}

	.animate__slideInLeft,
	.animate__slideInRight,
	.animate__fadeIn {
		-webkit-animation-duration: 1s;
		animation-duration: 1s;
		-webkit-animation-duration: 1s;
		animation-duration: 1s;
		-webkit-animation-fill-mode: forwards;
		animation-fill-mode: forwards;
	}
	.animate__slideInLeft { -webkit-animation-name: slideInLeft; animation-name: slideInLeft }
	.animate__slideInRight { -webkit-animation-name: slideInRight; animation-name: slideInRight }
	.animate__fadeIn { -webkit-animation-name: fadeIn; animation-name: fadeIn; }
	.slideInLeft,
	.slideInRight,
	.fadeIn { opacity: 0; }

/* -------------------------------------------- */
/* Extra large devices (large desktops, 1200px and down) */
/* -------------------------------------------- */
@media (max-width:1200px) {
	.topnav_menu_list { display: none; }
	.topnav_btn { display: block; }
	.footer_menu_box .col-4 { flex: 0 0 50%; max-width: 50%; }
}
/* -------------------------------------------- */
/* Large devices (desktops, 992px and down) */
/* -------------------------------------------- */
@media (max-width:992px) {
	/* フッター：左右2カラム固定 */
	#footer .row { display: flex; flex-wrap: nowrap; }
	#footer .col-6 { flex: 0 0 50%; max-width: 50%; }
	.footer_address_box { flex-direction: row; flex-wrap: nowrap; padding: 0; align-items: flex-start; }
	.footer_address_box .col-4 { flex: 0 0 40px; max-width: 40px; padding: 4px; }
	.footer_address_box .col-8 { flex: 1; max-width: 100%; padding: 4px; }
	.footer_logo_type { margin-bottom: 8px; }
	.footer_logo_type img { width: 100px; }
	.footer_address { font-size: 10px; line-height: 1.65; margin-bottom: 8px; }
	.footer_nav { font-size: 10px; margin-bottom: 6px; }
	.footer_menu_box { flex-direction: row; flex-wrap: nowrap; padding: 0; }
	.footer_menu_box .col { flex: 0 0 50%; max-width: 50%; padding: 4px; }
	.footer_menu_list__link { font-size: 10px; padding: 4px 0; }
	.footer_menu_list__link.head { font-size: 10px; margin-bottom: 6px; }
	.copyright { text-align: center; font-size: 10px; }
	.page_nav_wrap { flex-direction: column; gap: 30px; padding-left: 0; }
	.page_nav_wrap .page_nav { position: static; width: 100%; min-width: 0; margin-left: 0; }
	.page_nav_content { padding: 0; }
	.page_nav_wrap .page_nav_list { flex-direction: row; flex-wrap: wrap; }
	.page_nav_wrap .page_nav_list__li { width: 50%; }
	.page_nav_wrap .page_nav_list__link::after { bottom: -1px; top: auto; width: 0; height: 2px; transition: width 0.3s ease; }
	.page_nav_wrap .page_nav_list__link.is-active::after { width: 100%; height: 2px; }
}
/* -------------------------------------------- */
/* Medium devices (tablets, 768px and down) */
/* -------------------------------------------- */
@media (max-width:769px) {
	#header.show_admin_bar { top: 46px; }
	#header:not(.home) {
		width: 100%;
		top: 0;
	}
	.topnav_menu { display: none; }
	.topnav_logo { margin: 0 auto 0 -15px; }
	.glid-10.inner { margin: 0 auto; }
	#sec_head { height: 40vh; padding-top: 0; }
	#sec_head .inner { padding: 80px 25px 25px; }
	#sec_top_about { background: linear-gradient(135deg, #111 0%, #0d0d0d 100%); }
	#sec_top_recruit { background: #f5f7f6; }
	.top_about__img { transform: translateX(0); width: 100%; }
	.top_recruit__img { transform: translateX(0); width: 100%; }

	#sec_top_news .glass,
	#sec_top_service .glass { padding: 46px 26px; }

	#sec_top_service .row.slideInRight .col-8 { padding: 22px 22px; }

	.page_nav_wrap { flex-direction: column; gap: 30px; padding-left: 0; }
	.page_nav_wrap .page_nav { position: static; width: 100%; min-width: 0; margin-left: 0; }
	.page_nav_content { padding: 0; }
	.page_nav_wrap .page_nav_list { flex-direction: row; flex-wrap: wrap; }
	.page_nav_wrap .page_nav_list__li { width: 50%; }
	.page_nav_wrap .page_nav_list__link::after { bottom: -1px; top: auto; width: 0; height: 2px; transition: width 0.3s ease; }
	.page_nav_wrap .page_nav_list__link.is-active::after { width: 100%; height: 2px; }
	.page_nav { position: static; width: 100%; }
	.page_nav_list { flex-direction: row; flex-wrap: wrap; }
	.page_nav_list__li { width: 50% !important; margin: 0; }
	.page_nav_list__link::after { width: 0; height: 2px; bottom: -1px; top: auto; transition: width 0.3s ease; }
	.page_nav_list__link.is-active::after { width: 100%; height: 2px; }
	.work_list__li { padding: 20px 0; }
	.work_list__li .row { flex-direction: column-reverse; flex-wrap: nowrap; }
	.outline_table th { display: block; border-bottom: none; padding: 15px 0 5px; background: none; }
	.outline_table td { display: block; border-bottom: solid 1px rgba(255,255,255,0.12); padding: 0 0 15px; }
	.regist_table th { display: block; border-bottom: none; padding: 15px 0 5px; }
	.regist_table td { display: block; border-bottom: solid 1px rgba(255,255,255,0.12); padding: 0 0 15px; }
	.office_table th { display: block; border-bottom: none; padding: 15px 0 5px; }
	.office_table td { display: block; border-bottom: solid 1px rgba(255,255,255,0.12); padding: 0 0 15px; }
	.work_content_table th { display: block; border-bottom: none; padding: 15px 0 5px; }
	.work_content_table td { display: block; border-bottom: solid 1px rgba(255,255,255,0.12); padding: 0 0 15px; }
	.work_content { border: none; padding: 30px 0px; }
	.attention br { display: none; }
	.phone_contact { text-align: center; }
	.phone_contact__tel { margin: 0 0 10px 0; }
	.contact_table th { display: block; padding: 15px 0 10px; }
	.contact_table td { display: block; padding: 0 0 15px; }
	.wpcf7-text { margin: 0; }
	.wpcf7-textarea { margin: 0; }
	.wpcf7-text[name="az-name"], .wpcf7-text[name="az-kana"], .wpcf7-text[name="az-tel"], .wpcf7-text[name="az-fax"] { max-width: none; }

	.col-1 { flex: 0 0 100%; max-width: 100%; }
	.col-2 { flex: 0 0 100%; max-width: 100%; }
	.col-3 { flex: 0 0 100%; max-width: 100%; }
	.col-4 { flex: 0 0 100%; max-width: 100%; }
	.col-5 { flex: 0 0 100%; max-width: 100%; }
	.col-6 { flex: 0 0 100%; max-width: 100%; }
	.col-7 { flex: 0 0 100%; max-width: 100%; }
	.col-8 { flex: 0 0 100%; max-width: 100%; }
	.col-9 { flex: 0 0 100%; max-width: 100%; }
	.col-10 { flex: 0 0 100%; max-width: 100%; }
	.col-11 { flex: 0 0 100%; max-width: 100%; }
	.col-12 { flex: 0 0 100%; max-width: 100%; }

	#sec_top_work .col-3 { flex: 0 0 50%; max-width: 50%; }
}
/* -------------------------------------------- */
/* Small devices (landscape phones, 576px and down) */
/* -------------------------------------------- */
@media (max-width:577px) {
	.glid-12.inner { padding: 60px 25px; }
	.glid-10.inner { padding: 60px 25px; margin: 0 auto; }
	#sec_work .page_nav_list__li { flex: 0 0 100% !important; width: 100% !important; margin: 0 0 20px 0; }
	#sec_service .page_nav_list__li { flex: 0 0 100% !important; width: 100% !important; margin: 0 0 20px 0; }
	#sec_contact .page_nav_list__li { flex: 0 0 100% !important; width: 100% !important; margin: 0 0 20px 0; }
	#subfooter .desc br { display: none; }
	#subfooter .btn_link { width: 100%; }
	#subfooter .btn_tel_link { width: 100%; }
	.service_contact { margin: 0 -20px; }
	.service_contact .btn_link { width: 100%; }
	.service_contact .btn_contact { width: 100%; }

	.service_name { font-size: 20px; }
	.service_num { font-size: 20px; }
	.page_nav_desc br { display: none; }

	.col-1 { flex: 0 0 100%; max-width: 100%; }
	.col-2 { flex: 0 0 100%; max-width: 100%; }
	.col-3 { flex: 0 0 100%; max-width: 100%; }
	.col-4 { flex: 0 0 100%; max-width: 100%; }
	.col-5 { flex: 0 0 100%; max-width: 100%; }
	.col-6 { flex: 0 0 100%; max-width: 100%; }
	.col-7 { flex: 0 0 100%; max-width: 100%; }
	.col-8 { flex: 0 0 100%; max-width: 100%; }
	.col-9 { flex: 0 0 100%; max-width: 100%; }
	.col-10 { flex: 0 0 100%; max-width: 100%; }
	.col-11 { flex: 0 0 100%; max-width: 100%; }
	.col-12 { flex: 0 0 100%; max-width: 100%; }

	#sec_top_work .col-3 { flex: 0 0 50%; max-width: 50%; padding: 10px; }
}



/* 2026.14.30 追加  会社概要ページ「もっと見る」ボタンの中央配置 */
.button-container {
  display: flex;
  justify-content: center; 
  width: 100%;            
  margin: 40px 0;         /* 隙間を作る */
}

/* 
.more-btn {
  background-color: #00937f;
  color: #ffffff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  display: inline-block;
  padding: 12px 48px;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-align: center;
  border: none;
  cursor: pointer;
}

.more-btn:hover {
  opacity: 0.8;
}

*/


.slide_list__video {
    width: 100%;           /* 横幅は常に画面いっぱいに広げる */
    height: 750px;         /* 高さを750pxで固定 */
    object-fit: cover;     /* アスペクト比を保ったまま、枠を隙間なく埋める（はみ出しはカット） */
    object-position: center; /* 動画の真ん中を中心に表示する */
    display: block;
}

/* メインビジュアル動画のレスポンシブ対応 */
@media (max-width: 768px) {
    .slide_list__video {
        /* もしスマホで750pxだと高すぎると感じたら、ここで少し低く（例: 500px）調整可能 */
        height: 750px; 
    }
}

/*ギャラリーにSNSを追加する場合に使用*/
.gallery_title {
	margin-top: 30px;
}





/*ここから追加*/

/* -------------------------------------------- */
/* MV — fixed-video / bg-video                  */
/* -------------------------------------------- */

/* 動画コンテナ：sec_slide内に収める */
.fixed-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: #0a100e;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 3s ease;
}
.bg-video.active {
    opacity: 1;
}

/* opening-animation は display:none で非表示済み */
.opening-animation { display: none !important; }

/* -------------------------------------------- */
/* Home main visual                              */
/* -------------------------------------------- */

#sec_slide.sec_slide {
    position: relative;
    height: 100vh;
    min-height: 680px;
    width: 100%;
    overflow: hidden;
}

#sec_slide .slide_contents {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
}

#sec_slide .slide_contents .inner {
    height: auto;
    display: block;
    padding: 0 40px;
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
}

#sec_slide .slide_box {
	max-width: 760px;
	text-align: left !important;
}

/* ほんの少しだけ上に寄せて「中央左」に見せる（不要なら0に） */
#sec_slide .slide_box {
	transform: translateY(-14px);
}

#sec_slide .slide_sub_title {
	display: block;
	margin: 0 0 16px 0;
	font-size: clamp(28px, 6vw, 48px);
	font-weight: 200;
	font-family: 'Inter', sans-serif;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	line-height: 1.2;
	color: var(--text);
	text-shadow: 0 14px 40px rgba(0,0,0,0.40);
}

#sec_slide .slide_title {
	display: block;
	margin: 0 0 26px 0;
	font-size: clamp(16px, 1.7vw, 22px);
	font-weight: 800;
	letter-spacing: 0.08em;
	line-height: 1.5;
	color: var(--text-muted);
	text-shadow: 0 10px 30px rgba(0,0,0,0.35);
	opacity: 0;
}

.mv_btn_wrap { margin: 0; text-align: left; }
#sec_slide .slide_box > .mv_btn_wrap { padding-left: 0; }
#sec_slide .mv_btn_wrap .btn_link { min-width: 240px; }

/* 右上ナビを半透明カプセルに（HOME時のみ） */
#header.home .topnav_menu {
	background: rgba(255,255,255,0.04);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	border: 1px solid rgba(255,255,255,0.14);
	border-radius: 0;
	padding: 10px 18px;
	margin: 18px 0 0 0;
}

@media (max-width:769px) {
	#sec_slide.sec_slide { min-height: 620px; }
	#sec_slide .slide_contents .inner { padding: 0 20px; justify-content: center; }
	#sec_slide .slide_box { max-width: 100%; text-align: center; }
	#sec_slide .slide_title { margin-bottom: 22px; font-size: clamp(22px, 5.5vw, 32px); line-height: 1.4; }
	#sec_slide .slide_sub_title { font-size: clamp(28px, 8vw, 48px); letter-spacing: 0.15em; }
	#sec_slide .mv_btn_wrap .btn_link { min-width: 210px; }
}

/* -------------------------------------------- */
/* スクロールインジケーター */
/* -------------------------------------------- */
.scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
    opacity: 0;
    animation: scrollIndicatorFade 0.8s ease 3.5s forwards;
}
.scroll-indicator__text {
    color: rgba(255,255,255,0.6);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.2em;
}
.scroll-indicator__line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
    animation: scrollLine 1.6s ease-in-out 3.5s infinite;
}
@keyframes scrollIndicatorFade {
    0%   { opacity: 0; }
    100% { opacity: 1; }
}
@keyframes scrollLine {
    0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
    50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
    51%  { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; opacity: 0.3; }
}

/* -------------------------------------------- */
/* カーソルエフェクト */
/* -------------------------------------------- */
.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, opacity 0.3s ease;
}
.cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(0,147,127,0.6);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
}
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring {
    width: 52px;
    height: 52px;
    border-color: var(--accent);
}
@media (max-width: 768px) {
    .cursor-dot, .cursor-ring { display: none; }
}

/* -------------------------------------------- */
/* -------------------------------------------- */
/* タップリップルエフェクト（スマホ用）          */
/* -------------------------------------------- */
.ripple-effect {
    position: fixed;
    border-radius: 50%;
    background: rgba(0, 147, 127, 0.3);
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%) scale(0);
    animation: rippleAnim 0.6s ease-out forwards;
}
@keyframes rippleAnim {
    0%   { transform: translate(-50%, -50%) scale(0); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(3); opacity: 0; }
}

/* ページトランジション */
/* -------------------------------------------- */
.page-transition {
    position: fixed;
    inset: 0;
    background: #100c05;
    z-index: 99999;
    pointer-events: none;
    opacity: 1;
    animation: ptFadeOut 0.6s 0.2s ease forwards;
}
.page-transition::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10%;
    height: 10%;
    background-image: url('../img/bg_logo_green.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.page-transition.is-active {
    animation: none;
    opacity: 1;
    pointer-events: all;
    transition: opacity 0.38s ease;
}
@keyframes ptFadeOut {
    to { opacity: 0; }
}

/* -------------------------------------------- */
/* ドットグリッド・OPアニメ・MVグリッチ — 無効化 */
/* -------------------------------------------- */
.dot-grid-overlay { display: none; }
.opening-animation { display: none; }
.mv-bg-text { display: none; }
.mv-side-text { display: none; }

/* -------------------------------------------- */
/* GSAP スクロール演出 — 基本スタイル            */
/* -------------------------------------------- */

/* セクションが fixed になったとき内部コンテンツを縦中央に */
#sec_top_news.gsap-scene,
#sec_top_about.gsap-scene,
#sec_top_service.gsap-scene,
#sec_top_message.gsap-scene,
#sec_top_recruit.gsap-scene {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* MV — 動画のパララックスはGSAPで制御するので overflow hidden */
#sec_slide {
	overflow: hidden;
}
#sec_slide .fixed-video {
	will-change: transform;
}
#sec_slide .slide_contents {
    display: flex;
    align-items: flex-end;
    padding-bottom: 80px;
}
#sec_slide .slide_contents .inner {
    justify-content: flex-start !important;
    align-items: flex-end;
}
#sec_slide .slide_box { display: none; } /* 旧タイトル非表示 */

.mv-content { max-width: 640px; }

.mv-eyebrow {
    font-size: 9px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.mv-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 0.5px;
    background: var(--accent);
    flex-shrink: 0;
}

.mv-h1 {
    display: block;
    margin-bottom: 20px;
}
.mv-h1-ja {
    display: block;
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(44px, 6.5vw, 88px);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}
.mv-h1-accent { color: var(--accent); font-family: inherit; font-size: inherit; font-weight: inherit; }
.mv-h1-en {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(13px, 1.6vw, 20px);
    font-weight: 300;
    font-style: italic;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
}

.mv-lead {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 2.1;
    font-weight: 300;
    margin-bottom: 32px;
}

#sec_slide .mv-btns {
    display: flex;
    gap: 16px;
    align-items: center;
}
#sec_slide .mv-btn-primary {
    background: var(--accent);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 13px 28px;
    border-radius: 1px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
}
#sec_slide .mv-btn-ghost {
    color: rgba(255, 255, 255, 0.55);
    font-size: 10px;
    letter-spacing: 0.08em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
#sec_slide .mv-btn-ghost::after { content: '→'; }

/* SNS — 表示復活・右側縦並び */
.mv-sns {
    display: flex;
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    flex-direction: column;
    gap: 16px;
    z-index: 10;
}
.mv-sns a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    opacity: 0.4;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.mv-sns a:hover { opacity: 0.9; transform: scale(1.15); }
.mv-sns a img {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
}

/* -------------------------------------------- */
/* グレイン（フィルム質感）オーバーレイ          */
/* -------------------------------------------- */

/* テキストアニメーション（mv-animクラスはJS制御から撤廃、各要素に直接animationを指定） */
/* .mv-anim {
    opacity: 0;
    transform: translateY(24px);
} */

@keyframes mvSlideUp {
    0%   { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* 左縦書きテキスト */
.mv-side-text {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: center center;
    color: rgba(255,255,255,0.25);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
    white-space: nowrap;
    z-index: 10;
    opacity: 0;
    animation: mvSlideUp 0.8s ease 4.2s forwards;
}

/* SNS縦並び */
.mv-sns {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 10;
    opacity: 0;
    animation: mvSlideUp 0.8s ease 4.2s forwards;
}
.mv-sns a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    opacity: 0.5;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.mv-sns a:hover {
    opacity: 1;
    transform: scale(1.15);
}
.mv-sns a img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
    .mv-side-text { display: none; }
    .mv-sns { display: none; }
}

/* OPアニメーションなしのページ向け（mv-animクラス撤廃につき不要）
body:not(.home) .mv-anim {
    animation-delay: 0.3s;
} */

/* -------------------------------------------- */
/* MV 背景テキスト — 無効化済み                  */
/* -------------------------------------------- */
.mv-bg-text { display: none; }
.mv-gl { display: none; }
.accent-green { color: #00937f; font-family: inherit; font-size: inherit; font-weight: inherit; }


/* ============================================================
   === BOLD THEME — front-page.php 専用 =====================
   ヘッダー・フッターには一切触れない
   ============================================================ */

/* ── body背景・トークン ── */
body.home {
	--serif:  'Cormorant Garamond','Times New Roman',serif;
	--sans:   'Noto Sans JP',sans-serif;
	--gold:   #b89a5a;
	--line:   rgba(255,255,255,0.055);
	--line-2: rgba(255,255,255,0.1);
	background: #1e1208;
	color: #e2ddd4;
}

/* ── グレインテクスチャ ── */
body.home::before {
	content: '';
	position: fixed; inset: 0; z-index: 9998;
	pointer-events: none;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
	opacity: 0.28;
	mix-blend-mode: overlay;
}

/* ── #contents ── */
body.home #contents {
	padding-bottom: 0;
	background: #1e1208;
}

/* ──────────────────────────────────────────
   MV
────────────────────────────────────────── */

/* コンテンツを縦中央に */
#sec_slide .slide_contents {
	display: flex;
	align-items: center;
	padding-top: 90px;
	padding-bottom: 0;
}
#sec_slide .slide_contents .inner {
	display: block;
	height: auto;
	justify-content: flex-start;
}
.mv-inner-content {
	max-width: 760px;
	width: 100%;
	position: relative;
	z-index: 6;
}

/* eyebrow */
.mv-eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 8px;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 24px;
	opacity: 0;
	animation: mvFadeUp .8s .3s ease forwards;
}
.mv-eyebrow::before {
	content: '';
	display: block;
	width: 28px;
	height: 0.5px;
	background: var(--accent);
	flex-shrink: 0;
}

/* h1 全体 */
.mv-h1 {
	margin-bottom: 0;
	opacity: 0;
	animation: mvFadeUp .9s .5s ease forwards;
	position: relative;
}
/* 文字背後の暗幕 */
.mv-h1::before {
	content: '';
	position: absolute;
	inset: -20px -60px -20px -60px;
	background: radial-gradient(ellipse at 30% 50%, rgba(0,0,0,0.52) 0%, transparent 72%);
	pointer-events: none;
	z-index: 0;
}

/* 「Link to the Next」小さいセリフイタリック */
.mv-h1-en {
	display: block;
	font-family: var(--serif);
	font-size: clamp(12px, 1.4vw, 18px);
	font-weight: 300;
	font-style: italic;
	color: rgba(255,255,255,0.35);
	letter-spacing: 0.12em;
	margin-bottom: 10px;
	position: relative;
	z-index: 1;
}

/* 1行目：ゴシック900・塗り白 */
.mv-h1-line1 {
	display: block;
	font-family: var(--sans);
	font-size: clamp(52px, 9vw, 130px);
	font-weight: 900;
	color: #fff;
	line-height: 0.92;
	letter-spacing: -0.03em;
	position: relative;
	z-index: 1;
	text-shadow:
		0 2px 4px rgba(0,0,0,0.6),
		0 4px 20px rgba(0,0,0,0.4);
}

/* 2行目：セリフイタリック・アウトライン */
.mv-h1-line2 {
	display: block;
	font-family: var(--serif);
	font-size: clamp(52px, 9vw, 130px);
	font-weight: 300;
	font-style: italic;
	color: transparent;
	-webkit-text-stroke: 1px rgba(255,255,255,0.7);
	line-height: 0.92;
	letter-spacing: -0.02em;
	padding-left: clamp(20px, 4vw, 60px);
	position: relative;
	z-index: 1;
	filter: drop-shadow(0 2px 8px rgba(0,0,0,0.7));
	white-space: nowrap;
}

/* 「未来へ」：セリフ体・緑・グロー */
.mv-accent {
	font-family: var(--serif);
	font-style: italic;
	color: var(--accent);
	-webkit-text-stroke: 0px;
	text-shadow:
		0 0 3px rgba(0,0,0,0.95),
		0 0 12px rgba(0,0,0,0.8),
		0 0 8px rgba(0,144,125,0.4);
	opacity: 0;
	transition: opacity .7s ease;
}
.mv-accent.is-in { opacity: 1; }

/* サブ：リード＋ボタン */
#sec_slide .mv-sub {
	margin-top: 32px;
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: flex-end;
	gap: 40px;
	opacity: 0;
	animation: mvFadeUp .8s .8s ease forwards;
}
#sec_slide .mv-lead {
	font-size: 11px;
	color: rgba(255,255,255,0.4);
	line-height: 2.2;
	font-weight: 300;
	max-width: 380px;
	border-left: 0.5px solid var(--accent);
	padding-left: 16px;
}
#sec_slide .mv-btns {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: flex-end;
}
#sec_slide .mv-btn-p {
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	background: var(--accent);
	color: #fff;
	padding: 13px 28px;
	border-radius: 1px;
	text-decoration: none;
	display: inline-block;
	transition: background .2s;
}
#sec_slide .mv-btn-p:hover { background: #007d6e; opacity: 1; }
#sec_slide .mv-btn-g {
	font-size: 9px;
	letter-spacing: 0.1em;
	color: rgba(255,255,255,0.35);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
#sec_slide .mv-btn-g::after { content: '→'; }

@keyframes mvFadeUp {
	from { opacity: 0; transform: translateY(24px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* ビネット */
#sec_slide.sec_slide::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 3;
	pointer-events: none;
	background:
		radial-gradient(ellipse at center, transparent 38%, rgba(0,0,0,0.60) 100%),
		linear-gradient(to bottom,
			rgba(0,0,0,0.35) 0%,
			transparent 25%,
			transparent 65%,
			rgba(0,0,0,0.52) 100%
		);
}

/* グレインノイズ */
#sec_slide.sec_slide::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 4;
	pointer-events: none;
	opacity: 0.22;
	mix-blend-mode: overlay;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
}

/* スキャンライン */
#sec_slide .scanlines {
	position: absolute;
	inset: 0;
	z-index: 5;
	pointer-events: none;
	background: repeating-linear-gradient(
		0deg,
		transparent,
		transparent 2px,
		rgba(0,0,0,0.05) 2px,
		rgba(0,0,0,0.05) 4px
	);
}

/* グラデーション暗幕 */
#sec_slide .mv-gradient {
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	background:
		linear-gradient(125deg, rgba(0,10,8,0.52) 0%, rgba(0,0,0,0.18) 40%, transparent 70%),
		linear-gradient(to top, rgba(0,0,0,0.62) 0%, transparent 45%);
}

/* ──────────────────────────────────────────
   NEWS
────────────────────────────────────────── */
#sec_top_news {
	background: #131411;
	border-bottom: 0.5px solid rgba(255,255,255,0.06);
}
.news_label_large {
	color: rgba(255,255,255,0.04);
}
.table_news {
	border-top-color: rgba(255,255,255,0.08);
}
.table_news tr,
.table_news td {
	border-bottom-color: rgba(255,255,255,0.05);
}
.table_news th {
	color: rgba(255,255,255,0.3);
	background: none;
	border: none;
	padding: 0;
}
.table_news td,
.table_news td a {
	color: rgba(255,255,255,0.65);
}
.table_news td a:hover {
	color: var(--accent);
	opacity: 1;
}
.top_news_more {
	color: var(--accent);
}

/* ============================================================
   === END BOLD THEME ========================================
   ============================================================ */

/* ── about.css — 会社案内ページ専用 ── */

/* ダークテーマ変数 — #sec_aboutが存在するページにのみ適用 */
.page-template-page-about {
	--bg:     #1a1208;
	--bg-2:   #231509;
	--bg-3:   #2d1e0e;
	--text:   #e8e0cc;
	--text-2: #8a8680;
	--text-3: #3a3830;
	--gold:   #b89a5a;
	--gold-2: #8a7040;
	--line:   rgba(255,255,255,0.055);
	--line-2: rgba(255,255,255,0.1);
	--pad:    clamp(24px,5vw,80px);
	background: #1a1208;
	color: #e8e0cc;
}

/* 測量グリッド */
.page-template-page-about .survey-grid {
	position:fixed;inset:0;z-index:0;pointer-events:none;
	background-image:
		linear-gradient(var(--line) 1px, transparent 1px),
		linear-gradient(90deg, var(--line) 1px, transparent 1px);
	background-size:80px 80px;
	mask-image:radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

/* ── PAGE HEADER ── */
#sec_head {
	position:relative;
	height:42vh;min-height:320px;
	display:flex;align-items:flex-end;
	background:var(--bg);overflow:hidden;
	border-bottom:0.5px solid var(--line-2);
	background-image:none !important;
}
.ph-bg {
	position:absolute;inset:0;
	background:linear-gradient(170deg,#100d06 0%,#080602 50%,#0d0b05 100%);
}
.ph-bg-word {
	position:absolute;right:-2vw;bottom:-6vh;
	font-family:var(--font-serif);
	font-size:clamp(120px,22vw,300px);
	font-weight:300;
	color:rgba(255,255,255,0.018);
	line-height:1;letter-spacing:-0.04em;
	pointer-events:none;user-select:none;
}
.ph-vline {
	position:absolute;top:0;bottom:0;
	width:0.5px;background:var(--line-2);
}
.ph-vline:first-of-type { left:var(--pad); }
.ph-vline:last-of-type  { right:var(--pad); }

.ph-inner {
	position:relative;z-index:2;
	width:100%;max-width:1400px;
	margin:0 auto;padding:0 var(--pad) 52px;
}
.ph-eyebrow {
	display:flex;align-items:center;gap:12px;
	font-size:11px;letter-spacing:0.32em;text-transform:uppercase;
	color:var(--accent);margin-bottom:16px;
	opacity:0;animation:phFadeUp .8s .2s ease forwards;
}
.ph-eyebrow::before {
	content:'';display:block;
	width:32px;height:0.5px;background:var(--accent);flex-shrink:0;
}
.ph-title {
	font-family:var(--font-serif);
	font-size:clamp(42px,7vw,96px);
	font-weight:300;color:#fff;
	line-height:0.95;letter-spacing:-0.02em;
	opacity:0;animation:phFadeUp .9s .4s ease forwards;
}
.ph-title-sub {
	display:block;
	font-size:clamp(14px,1.5vw,18px);
	font-weight:300;color:rgba(255,255,255,0.3);
	letter-spacing:0.15em;margin-top:10px;
	font-style:normal;
	font-family:var(--sans,'Noto Sans JP',sans-serif);
}
@keyframes phFadeUp {
	from { opacity:0;transform:translateY(24px); }
	to   { opacity:1;transform:translateY(0); }
}

/* ── LAYOUT ── */
#sec_about { position:relative;z-index:1; }

.about-layout {
	display:grid;
	grid-template-columns:200px 1fr;
	max-width:1400px;
	margin:0 auto 0 40px;
	padding:0 40px 0 20px;
	gap:80px;
	align-items:start;
}

/* ── SIDE NAV ── */
.page-nav {
	position:sticky;
	top:88px;
	padding-top:60px;
}
.page-nav-list {
	list-style:none;
	border-top:0.5px solid rgba(255,255,255,0.25);
	counter-reset:nav-counter;
}
.page-nav-list li {
	border-bottom:0.5px solid rgba(255,255,255,0.25);
	counter-increment:nav-counter;
}
.page-nav-list a {
	display:flex;align-items:center;gap:10px;
	padding:13px 0;
	font-size:12px;font-weight:700;letter-spacing:0.14em;
	color:var(--text-2);text-transform:uppercase;
	transition:color .2s;
	position:relative;
}
.page-nav-list a::before {
	content:counter(nav-counter, decimal-leading-zero);
	font-family:var(--font-serif);font-size:11px;font-weight:300;
	color:rgba(255,255,255,0.15);
	flex-shrink:0;
}
.page-nav-list a:hover,
.page-nav-list a.is-active { color:var(--accent); }
.page-nav-list a.is-active::after {
	content:'';
	position:absolute;left:-1px;top:0;bottom:0;
	width:1px;background:var(--accent);
}

/* ── CONTENT ── */
.about-content { padding:60px 0 120px; }

.about-section {
	padding:72px 0;
	border-bottom:0.5px solid var(--line);
}
.about-section:first-child { padding-top:0; }
.about-section:last-child  { border-bottom:none; }

/* eyebrow */
.sec-eyebrow {
	display:flex;align-items:center;gap:10px;
	font-size:11px;font-weight:700;letter-spacing:0.28em;text-transform:uppercase;
	color:var(--accent);margin-bottom:12px;
}
.sec-eyebrow::before {
	content:'';width:20px;height:0.5px;
	background:var(--accent);flex-shrink:0;
}
.sec-title {
	font-family:var(--font-serif);
	font-size:clamp(32px,4vw,52px);
	font-weight:300;color:var(--text);
	line-height:1.05;letter-spacing:-0.01em;
	margin-bottom:36px;
}
.sec-desc {
	font-size:15px;color:var(--text-2);
	line-height:2.4;font-weight:300;
	border-left:0.5px solid var(--text-3);
	padding-left:18px;
	max-width:680px;
}
.sec-desc + .sec-desc { margin-top:20px; }
.sec-sign {
	font-size:14px;color:rgba(255,255,255,0.4);
	text-align:right;margin-top:24px;
	line-height:1.9;
}

/* ── MESSAGE ── */
.msg-imgs {
	display:grid;grid-template-columns:1fr 1fr;gap:12px;
	margin-bottom:40px;
}
.msg-img {
	aspect-ratio:4/3;overflow:hidden;position:relative;
}
.msg-img img {
	width:100%;height:100%;object-fit:cover;
	transition:transform .5s ease;
}
.msg-img:hover img { transform:scale(1.03); }

.msg-body-grid {
	display:grid;grid-template-columns:1fr 260px;gap:40px;align-items:start;
}
.msg-portrait {
	aspect-ratio:3/4;overflow:hidden;
}
.msg-portrait img {
	width:100%;height:100%;object-fit:cover;object-position:top center;
}

/* ── PHILOSOPHY ── */
.philosophy-grid {
	display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:start;
}

/* ── MOTTO ── */
.motto-message {
	margin-bottom:40px;
	padding-bottom:40px;
	border-bottom:0.5px solid var(--line-2);
}
.motto-message-text {
	font-family:var(--font-serif);
	font-size:clamp(20px,2.5vw,28px);
	font-weight:300;color:rgba(255,255,255,0.75);
	letter-spacing:0.04em;line-height:1.4;
	margin-bottom:20px;
}
.motto-message-body {
	font-size:14px;color:var(--text-2);
	line-height:2.2;
}
.motto-block {
	display:block;
}
.motto-main {
	font-family:var(--font-serif);
	font-size:clamp(44px,6vw,72px);
	font-weight:300;color:rgba(255,255,255,0.85);
	letter-spacing:0.2em;line-height:1.1;
	margin-bottom:12px;
}
.motto-kana {
	font-size:13px;color:var(--text-2);letter-spacing:0.14em;
	margin-bottom:20px;
}
.motto-desc {
	font-size:15px;color:rgba(255,255,255,0.35);line-height:2.2;
	border-left:0.5px solid var(--gold-2);padding-left:16px;
}
.motto-divider {
	width:0.5px;height:80px;
	background:linear-gradient(to bottom,transparent,var(--gold),transparent);
	margin:0 auto;
}

/* ── OUTLINE TABLE ── */
.outline-table {
	width:100%;
	border-top:0.5px solid var(--line-2);
}
.outline-table tr {
	display:grid;
	grid-template-columns:180px 1fr;
	border-bottom:0.5px solid var(--line);
}
.outline-table th {
	padding:16px 0;
	font-size:12px;font-weight:700;letter-spacing:0.12em;text-transform:uppercase;
	color:var(--text-2);background:none;border:none;
	white-space:nowrap;
}
.outline-table td {
	padding:16px 0;
	font-size:14px;color:rgba(255,255,255,0.6);
	line-height:1.9;border:none;background:none;
}

/* ── REGIST TABLE ── */
.regist-table {
	width:100%;
	border-top:0.5px solid var(--line-2);
}
.regist-table tr {
	display:grid;
	grid-template-columns:160px 1fr;
	border-bottom:0.5px solid var(--line);
}
.regist-table th {
	padding:14px 0;
	font-family:var(--font-serif);font-size:13px;font-weight:300;
	color:var(--text-2);background:none;border:none;
	white-space:nowrap;
}
.regist-table td {
	padding:14px 0;
	font-size:13px;color:rgba(255,255,255,0.55);
	line-height:1.9;border:none;background:none;
}
.regist-table td a {
	color:var(--accent);border-bottom:0.5px solid rgba(0,144,125,0.3);
}
.regist-table td a:hover { border-color:var(--accent); }

/* ── OFFICE TABLE ── */
.office-table {
	width:100%;
	border-top:0.5px solid var(--line-2);
}
.office-table tr {
	display:grid;
	grid-template-columns:140px 1fr;
	border-bottom:0.5px solid var(--line);
}
.office-table th {
	padding:16px 0;
	font-size:12px;font-weight:700;letter-spacing:0.1em;
	color:var(--accent);background:none;border:none;
	white-space:nowrap;
}
.office-table td {
	padding:16px 0;
	font-size:13px;color:rgba(255,255,255,0.55);
	line-height:2;border:none;background:none;
}
.office-table td a {
	color:var(--text-2);border-bottom:0.5px solid var(--line);
	transition:color .2s;
}
.office-table td a:hover { color:var(--accent); }

/* ── ACTIVITY ── */
.activity-desc {
	font-size:15px;color:var(--text-2);line-height:2.4;
	border-left:0.5px solid var(--text-3);padding-left:18px;
	margin-bottom:32px;max-width:680px;
}
.activity-sns {
	display:flex;gap:12px;flex-wrap:wrap;margin-bottom:40px;
}
.activity-sns__item {
	display:inline-flex;align-items:center;gap:8px;
	font-size:11px;font-weight:700;letter-spacing:0.12em;
	color:var(--text-muted);border:0.5px solid var(--border-strong);
	padding:10px 18px;transition:border-color .2s,color .2s;
}
.activity-sns__item img { opacity:.6;transition:opacity .2s;width:auto; }
.activity-sns__item img[alt="Instagram"] { height:22px; }
.activity-sns__item img[alt="X"]         { height:20px; }
.activity-sns__item img[alt="Facebook"]  { height:16px; }
.activity-sns__item img[alt="TikTok"]    { height:28px; }
.activity-sns__item:hover { border-color:var(--text);color:var(--text); }
.activity-sns__item:hover img { opacity:1; }
.activity-more {
	display:inline-flex;align-items:center;gap:10px;
	font-size:12px;font-weight:700;letter-spacing:0.16em;text-transform:uppercase;
	color:var(--accent);border:0.5px solid var(--accent);padding:12px 24px;
	transition:background .2s,color .2s;
	margin-bottom:40px;
}
.activity-more:hover { background:var(--accent);color:#080807; }
.activity-toggle {
	display:inline-flex;align-items:center;gap:10px;
	font-size:12px;font-weight:700;letter-spacing:0.16em;text-transform:uppercase;
	color:var(--text-1);border:0.5px solid var(--text-3);padding:12px 24px;
	background:none;cursor:pointer;margin-bottom:32px;
	transition:border-color .2s,color .2s;
}
.activity-toggle:hover { border-color:var(--text-1); }
.activity-toggle[aria-expanded="true"] { color:var(--accent);border-color:var(--accent); }
.activity-toggle-icon {
	display:inline-block;width:10px;height:10px;
	border-right:1.5px solid currentColor;border-bottom:1.5px solid currentColor;
	transform:rotate(45deg);transition:transform .3s;margin-top:-4px;
}
.activity-toggle[aria-expanded="true"] .activity-toggle-icon { transform:rotate(-135deg);margin-top:4px; }
.grid_layout {
	overflow:hidden;max-height:0;transition:max-height .5s ease;
}

/* ── フェードイン ── */
.fade-up { opacity:0;transform:translateY(28px);transition:opacity .8s ease,transform .8s ease; }
.fade-up.is-visible { opacity:1;transform:translateY(0); }
.fade-up[data-delay="1"] { transition-delay:.1s; }
.fade-up[data-delay="2"] { transition-delay:.2s; }
.fade-up[data-delay="3"] { transition-delay:.3s; }

/* ── RESPONSIVE ── */
@media (max-width:1024px) {
	.about-layout { grid-template-columns:160px 1fr;gap:48px; }
}
@media (max-width:768px) {
	.about-layout { grid-template-columns:1fr;gap:0; }
	.page-nav { display:none; }
	.msg-body-grid { grid-template-columns:1fr; }
	.msg-portrait { display:none; }
	.philosophy-grid { grid-template-columns:1fr; }
	.motto-block { grid-template-columns:1fr; }
	.motto-divider { display:none; }
	.outline-table tr,
	.regist-table tr,
	.office-table tr { grid-template-columns:110px 1fr; }
}
.more-btn {
  background-color: #00937f;
  color: #ffffff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  display: inline-block;
  padding: 12px 48px;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-align: center;
  border: none;
  cursor: pointer;
}

.more-btn:hover {
  opacity: 0.8;
}

*/


.slide_list__video {
    width: 100%;           /* 横幅は常に画面いっぱいに広げる */
    height: 750px;         /* 高さを750pxで固定 */
    object-fit: cover;     /* アスペクト比を保ったまま、枠を隙間なく埋める（はみ出しはカット） */
    object-position: center; /* 動画の真ん中を中心に表示する */
    display: block;
}

/* メインビジュアル動画のレスポンシブ対応 */
@media (max-width: 768px) {
    .slide_list__video {
        /* もしスマホで750pxだと高すぎると感じたら、ここで少し低く（例: 500px）調整可能 */
        height: 750px; 
    }
}

/*ギャラリーにSNSを追加する場合に使用*/
.gallery_title {
	margin-top: 30px;
}





/*ここから追加*/

/* -------------------------------------------- */
/* MV — fixed-video / bg-video                  */
/* -------------------------------------------- */

/* 動画コンテナ：sec_slide内に収める */
.fixed-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: #0a100e;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 3s ease;
}
.bg-video.active {
    opacity: 1;
}

/* opening-animation は display:none で非表示済み */
.opening-animation { display: none !important; }

/* -------------------------------------------- */
/* Home main visual                              */
/* -------------------------------------------- */

#sec_slide.sec_slide {
    position: relative;
    height: 100vh;
    min-height: 680px;
    width: 100%;
    overflow: hidden;
}

#sec_slide .slide_contents {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
}

#sec_slide .slide_contents .inner {
    height: auto;
    display: block;
    padding: 0 40px;
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
}

#sec_slide .slide_box {
	max-width: 760px;
	text-align: left !important;
}

/* ほんの少しだけ上に寄せて「中央左」に見せる（不要なら0に） */
#sec_slide .slide_box {
	transform: translateY(-14px);
}

#sec_slide .slide_sub_title {
	display: block;
	margin: 0 0 16px 0;
	font-size: clamp(28px, 6vw, 48px);
	font-weight: 200;
	font-family: 'Inter', sans-serif;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	line-height: 1.2;
	color: var(--text);
	text-shadow: 0 14px 40px rgba(0,0,0,0.40);
}

#sec_slide .slide_title {
	display: block;
	margin: 0 0 26px 0;
	font-size: clamp(16px, 1.7vw, 22px);
	font-weight: 800;
	letter-spacing: 0.08em;
	line-height: 1.5;
	color: var(--text-muted);
	text-shadow: 0 10px 30px rgba(0,0,0,0.35);
	opacity: 0;
}

.mv_btn_wrap { margin: 0; text-align: left; }
#sec_slide .slide_box > .mv_btn_wrap { padding-left: 0; }
#sec_slide .mv_btn_wrap .btn_link { min-width: 240px; }

/* 右上ナビを半透明カプセルに（HOME時のみ） */
#header.home .topnav_menu {
	background: rgba(255,255,255,0.04);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	border: 1px solid rgba(255,255,255,0.14);
	border-radius: 0;
	padding: 10px 18px;
	margin: 18px 0 0 0;
}

@media (max-width:769px) {
	#sec_slide.sec_slide { min-height: 620px; }
	#sec_slide .slide_contents .inner { padding: 0 20px; justify-content: center; }
	#sec_slide .slide_box { max-width: 100%; text-align: center; }
	#sec_slide .slide_title { margin-bottom: 22px; font-size: clamp(22px, 5.5vw, 32px); line-height: 1.4; }
	#sec_slide .slide_sub_title { font-size: clamp(28px, 8vw, 48px); letter-spacing: 0.15em; }
	#sec_slide .mv_btn_wrap .btn_link { min-width: 210px; }
}

/* -------------------------------------------- */
/* スクロールインジケーター */
/* -------------------------------------------- */
.scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
    opacity: 0;
    animation: scrollIndicatorFade 0.8s ease 3.5s forwards;
}
.scroll-indicator__text {
    color: rgba(255,255,255,0.6);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.2em;
}
.scroll-indicator__line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
    animation: scrollLine 1.6s ease-in-out 3.5s infinite;
}
@keyframes scrollIndicatorFade {
    0%   { opacity: 0; }
    100% { opacity: 1; }
}
@keyframes scrollLine {
    0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
    50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
    51%  { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; opacity: 0.3; }
}

/* -------------------------------------------- */
/* カーソルエフェクト */
/* -------------------------------------------- */
.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, opacity 0.3s ease;
}
.cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(0,147,127,0.6);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
}
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring {
    width: 52px;
    height: 52px;
    border-color: var(--accent);
}
@media (max-width: 768px) {
    .cursor-dot, .cursor-ring { display: none; }
}

/* -------------------------------------------- */
/* -------------------------------------------- */
/* タップリップルエフェクト（スマホ用）          */
/* -------------------------------------------- */
.ripple-effect {
    position: fixed;
    border-radius: 50%;
    background: rgba(0, 147, 127, 0.3);
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%) scale(0);
    animation: rippleAnim 0.6s ease-out forwards;
}
@keyframes rippleAnim {
    0%   { transform: translate(-50%, -50%) scale(0); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(3); opacity: 0; }
}

/* ページトランジション */
/* -------------------------------------------- */
.page-transition {
    position: fixed;
    inset: 0;
    background: #100c05;
    z-index: 99999;
    pointer-events: none;
    opacity: 1;
    animation: ptFadeOut 0.6s 0.2s ease forwards;
}
.page-transition::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10%;
    height: 10%;
    background-image: url('../img/bg_logo_green.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.page-transition.is-active {
    animation: none;
    opacity: 1;
    pointer-events: all;
    transition: opacity 0.38s ease;
}
@keyframes ptFadeOut {
    to { opacity: 0; }
}

/* -------------------------------------------- */
/* ドットグリッド・OPアニメ・MVグリッチ — 無効化 */
/* -------------------------------------------- */
.dot-grid-overlay { display: none; }
.opening-animation { display: none; }
.mv-bg-text { display: none; }
.mv-side-text { display: none; }

/* -------------------------------------------- */
/* GSAP スクロール演出 — 基本スタイル            */
/* -------------------------------------------- */

/* セクションが fixed になったとき内部コンテンツを縦中央に */
#sec_top_news.gsap-scene,
#sec_top_about.gsap-scene,
#sec_top_service.gsap-scene,
#sec_top_message.gsap-scene,
#sec_top_recruit.gsap-scene {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* MV — 動画のパララックスはGSAPで制御するので overflow hidden */
#sec_slide {
	overflow: hidden;
}
#sec_slide .fixed-video {
	will-change: transform;
}
#sec_slide .slide_contents {
    display: flex;
    align-items: flex-end;
    padding-bottom: 80px;
}
#sec_slide .slide_contents .inner {
    justify-content: flex-start !important;
    align-items: flex-end;
}
#sec_slide .slide_box { display: none; } /* 旧タイトル非表示 */

.mv-content { max-width: 640px; }

.mv-eyebrow {
    font-size: 9px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.mv-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 0.5px;
    background: var(--accent);
    flex-shrink: 0;
}

.mv-h1 {
    display: block;
    margin-bottom: 20px;
}
.mv-h1-ja {
    display: block;
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(44px, 6.5vw, 88px);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}
.mv-h1-accent { color: var(--accent); font-family: inherit; font-size: inherit; font-weight: inherit; }
.mv-h1-en {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(13px, 1.6vw, 20px);
    font-weight: 300;
    font-style: italic;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
}

.mv-lead {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 2.1;
    font-weight: 300;
    margin-bottom: 32px;
}

#sec_slide .mv-btns {
    display: flex;
    gap: 16px;
    align-items: center;
}
#sec_slide .mv-btn-primary {
    background: var(--accent);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 13px 28px;
    border-radius: 1px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
}
#sec_slide .mv-btn-ghost {
    color: rgba(255, 255, 255, 0.55);
    font-size: 10px;
    letter-spacing: 0.08em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
#sec_slide .mv-btn-ghost::after { content: '→'; }

/* SNS — 表示復活・右側縦並び */
.mv-sns {
    display: flex;
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    flex-direction: column;
    gap: 16px;
    z-index: 10;
}
.mv-sns a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    opacity: 0.4;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.mv-sns a:hover { opacity: 0.9; transform: scale(1.15); }
.mv-sns a img {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
}

/* -------------------------------------------- */
/* グレイン（フィルム質感）オーバーレイ          */
/* -------------------------------------------- */

/* テキストアニメーション（mv-animクラスはJS制御から撤廃、各要素に直接animationを指定） */
/* .mv-anim {
    opacity: 0;
    transform: translateY(24px);
} */

@keyframes mvSlideUp {
    0%   { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* 左縦書きテキスト */
.mv-side-text {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: center center;
    color: rgba(255,255,255,0.25);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
    white-space: nowrap;
    z-index: 10;
    opacity: 0;
    animation: mvSlideUp 0.8s ease 4.2s forwards;
}

/* SNS縦並び */
.mv-sns {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 10;
    opacity: 0;
    animation: mvSlideUp 0.8s ease 4.2s forwards;
}
.mv-sns a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    opacity: 0.5;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.mv-sns a:hover {
    opacity: 1;
    transform: scale(1.15);
}
.mv-sns a img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
    .mv-side-text { display: none; }
    .mv-sns { display: none; }
}

/* OPアニメーションなしのページ向け（mv-animクラス撤廃につき不要）
body:not(.home) .mv-anim {
    animation-delay: 0.3s;
} */

/* -------------------------------------------- */
/* MV 背景テキスト — 無効化済み                  */
/* -------------------------------------------- */
.mv-bg-text { display: none; }
.mv-gl { display: none; }
.accent-green { color: #00937f; font-family: inherit; font-size: inherit; font-weight: inherit; }


/* ============================================================
   === BOLD THEME — front-page.php 専用 =====================
   ヘッダー・フッターには一切触れない
   ============================================================ */

/* ── body背景・トークン ── */
body.home {
	--serif:  'Cormorant Garamond','Times New Roman',serif;
	--sans:   'Noto Sans JP',sans-serif;
	--gold:   #b89a5a;
	--line:   rgba(255,255,255,0.055);
	--line-2: rgba(255,255,255,0.1);
	background: #0c0802;
	color: #e2ddd4;
}

/* ── グレインテクスチャ ── */
body.home::before {
	content: '';
	position: fixed; inset: 0; z-index: 9998;
	pointer-events: none;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
	opacity: 0.28;
	mix-blend-mode: overlay;
}

/* ── #contents ── */
body.home #contents {
	padding-bottom: 0;
	background: #0c0802;
}

/* ──────────────────────────────────────────
   MV
────────────────────────────────────────── */

/* コンテンツを縦中央に */
#sec_slide .slide_contents {
	display: flex;
	align-items: center;
	padding-top: 90px;
	padding-bottom: 0;
}
#sec_slide .slide_contents .inner {
	display: block;
	height: auto;
	justify-content: flex-start;
}
.mv-inner-content {
	max-width: 760px;
	width: 100%;
	position: relative;
	z-index: 6;
}

/* eyebrow */
.mv-eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 11px;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 24px;
	opacity: 0;
	animation: mvFadeUp .8s .3s ease forwards;
}
.mv-eyebrow::before {
	content: '';
	display: block;
	width: 28px;
	height: 0.5px;
	background: var(--accent);
	flex-shrink: 0;
}

/* h1 全体 */
.mv-h1 {
	margin-bottom: 0;
	opacity: 0;
	animation: mvFadeUp .9s .5s ease forwards;
	position: relative;
}
/* 文字背後の暗幕 */
.mv-h1::before {
	content: '';
	position: absolute;
	inset: -20px -60px -20px -60px;
	background: radial-gradient(ellipse at 30% 50%, rgba(0,0,0,0.52) 0%, transparent 72%);
	pointer-events: none;
	z-index: 0;
}

/* 「Link to the Next」小さいセリフイタリック */
.mv-h1-en {
	display: block;
	font-family: var(--serif);
	font-size: clamp(12px, 1.4vw, 18px);
	font-weight: 300;
	font-style: italic;
	color: rgba(255,255,255,0.35);
	letter-spacing: 0.12em;
	margin-bottom: 10px;
	position: relative;
	z-index: 1;
}

/* 1行目：ゴシック900・塗り白 */
.mv-h1-line1 {
	display: block;
	font-family: var(--sans);
	font-size: clamp(52px, 9vw, 130px);
	font-weight: 900;
	color: #fff;
	line-height: 0.92;
	letter-spacing: -0.03em;
	position: relative;
	z-index: 1;
	text-shadow:
		0 2px 4px rgba(0,0,0,0.6),
		0 4px 20px rgba(0,0,0,0.4);
}

/* 2行目：セリフイタリック・アウトライン */
.mv-h1-line2 {
	display: block;
	font-family: var(--serif);
	font-size: clamp(52px, 9vw, 130px);
	font-weight: 300;
	font-style: italic;
	color: transparent;
	-webkit-text-stroke: 1px rgba(255,255,255,0.7);
	line-height: 0.92;
	letter-spacing: -0.02em;
	padding-left: clamp(20px, 4vw, 60px);
	position: relative;
	z-index: 1;
	filter: drop-shadow(0 2px 8px rgba(0,0,0,0.7));
	white-space: nowrap;
}

/* 「未来へ」：セリフ体・緑・グロー */
.mv-accent {
	font-family: var(--serif);
	font-style: italic;
	color: var(--accent);
	-webkit-text-stroke: 0px;
	text-shadow:
		0 0 3px rgba(0,0,0,0.95),
		0 0 12px rgba(0,0,0,0.8),
		0 0 8px rgba(0,144,125,0.4);
	opacity: 0;
	transition: opacity .7s ease;
}
.mv-accent.is-in { opacity: 1; }

/* サブ：リード＋ボタン */
#sec_slide .mv-sub {
	margin-top: 32px;
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: flex-end;
	gap: 40px;
	opacity: 0;
	animation: mvFadeUp .8s .8s ease forwards;
}
#sec_slide .mv-lead {
	font-size: 13px;
	color: rgba(255,255,255,0.4);
	line-height: 2.2;
	font-weight: 300;
	max-width: 380px;
	border-left: 0.5px solid var(--accent);
	padding-left: 16px;
}
#sec_slide .mv-btns {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: flex-end;
}
#sec_slide .mv-btn-p {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	background: var(--accent);
	color: #fff;
	padding: 13px 28px;
	border-radius: 1px;
	text-decoration: none;
	display: inline-block;
	transition: background .2s;
}
#sec_slide .mv-btn-p:hover { background: #007d6e; opacity: 1; }
#sec_slide .mv-btn-g {
	font-size: 11px;
	letter-spacing: 0.1em;
	color: rgba(255,255,255,0.35);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
#sec_slide .mv-btn-g::after { content: '→'; }

@keyframes mvFadeUp {
	from { opacity: 0; transform: translateY(24px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* ビネット */
#sec_slide.sec_slide::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 3;
	pointer-events: none;
	background:
		radial-gradient(ellipse at center, transparent 38%, rgba(0,0,0,0.60) 100%),
		linear-gradient(to bottom,
			rgba(0,0,0,0.35) 0%,
			transparent 25%,
			transparent 65%,
			rgba(0,0,0,0.52) 100%
		);
}

/* グレインノイズ */
#sec_slide.sec_slide::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 4;
	pointer-events: none;
	opacity: 0.22;
	mix-blend-mode: overlay;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
}

/* スキャンライン */
#sec_slide .scanlines {
	position: absolute;
	inset: 0;
	z-index: 5;
	pointer-events: none;
	background: repeating-linear-gradient(
		0deg,
		transparent,
		transparent 2px,
		rgba(0,0,0,0.05) 2px,
		rgba(0,0,0,0.05) 4px
	);
}

/* グラデーション暗幕 */
#sec_slide .mv-gradient {
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	background:
		linear-gradient(125deg, rgba(0,10,8,0.52) 0%, rgba(0,0,0,0.18) 40%, transparent 70%),
		linear-gradient(to top, rgba(0,0,0,0.62) 0%, transparent 45%);
}

/* ──────────────────────────────────────────
   NEWS
────────────────────────────────────────── */
#sec_top_news {
	background: #131411;
	border-bottom: 0.5px solid rgba(255,255,255,0.06);
}
.news_label_large {
	color: rgba(255,255,255,0.04);
}
.table_news {
	border-top-color: rgba(255,255,255,0.08);
}
.table_news tr,
.table_news td {
	border-bottom-color: rgba(255,255,255,0.05);
}
.table_news th {
	color: rgba(255,255,255,0.3);
	background: none;
	border: none;
	padding: 0;
}
.table_news td,
.table_news td a {
	color: rgba(255,255,255,0.65);
}
.table_news td a:hover {
	color: var(--accent);
	opacity: 1;
}
.top_news_more {
	color: var(--accent);
}

/* ============================================================
   === END BOLD THEME ========================================
   ============================================================ */
/* ============================================================
   SERVICE PAGE 2026 redesign
   ============================================================ */

/* ── 共通ヘッダー ── */
.svc2-head { margin-bottom: 44px; }
.svc2-eye {
	font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
	color: var(--accent); display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.svc2-eye::before { content: ''; width: 20px; height: 0.5px; background: var(--accent); }
.svc2-h2 {
	font-family: var(--font-serif); font-size: clamp(28px, 4vw, 36px);
	font-weight: 300; color: var(--text); line-height: 1.0; letter-spacing: -0.01em;
}
.svc2-h2 em { font-style: normal; color: var(--text); font-family: inherit; font-weight: inherit; }
.svc2-lead {
	margin-top: 18px; font-size: 13px; color: var(--text-muted);
	line-height: 2.0; max-width: 480px;
}
.svc2-divider { height: 0.5px; background: var(--border); margin-bottom: 40px; }

/* ── 写真＋リスト レイアウト ── */
.svc2-layout { display: grid; grid-template-columns: 5fr 4fr; gap: 48px; align-items: start; }
.svc2-photo-main {
	width: 100%; aspect-ratio: 4/3; overflow: hidden;
	position: relative; background: var(--surface);
}
.svc2-photo-main img {
	width: 100%; height: 100%; object-fit: cover;
	transition: transform 0.4s ease; display: block;
}
.svc2-photo-main:hover img { transform: scale(1.03); }
.svc2-photo-label {
	position: absolute; bottom: 0; left: 0; width: 100%;
	font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
	color: rgba(255,255,255,0.4); padding: 10px 12px;
	background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
}
.svc2-thumbs {
	display: grid; grid-template-columns: repeat(4, 1fr);
	gap: 4px; margin-top: 4px;
}
.svc2-thumbs.svc2-thumbs-2 { grid-template-columns: repeat(2, 1fr); gap: 4px; margin-top: 4px; }
.svc2-thumbs.svc2-thumbs-2 .svc2-thumb { height: 120px; aspect-ratio: unset !important; }
.svc2-thumb {
	aspect-ratio: 1; overflow: hidden; cursor: pointer;
	position: relative; opacity: 0.55; transition: opacity 0.2s;
}
.svc2-thumb.active { opacity: 1; }
.svc2-thumb::after {
	content: ''; position: absolute; inset: 0;
	border: 1.5px solid transparent; transition: border-color 0.2s;
	pointer-events: none;
}
.svc2-thumb.active::after { border-color: var(--accent); }
.svc2-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── リスト ── */
.svc2-lists { display: flex; flex-direction: column; gap: 32px; padding-top: 4px; }
.svc2-list-label {
	font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
	color: var(--text); font-weight: 500; margin-bottom: 14px;
	display: flex; align-items: center; gap: 12px;
}
.svc2-list-label span { white-space: nowrap; }
.svc2-list-label::after { content: ''; flex: 1; height: 0.5px; background: var(--border); }
.svc2-list-item {
	font-size: 13px; color: var(--text-muted);
	padding: 10px 0; border-bottom: 0.5px solid var(--border);
	display: flex; align-items: center; justify-content: space-between; line-height: 1.5;
}
.svc2-list-item:last-child { border-bottom: none; }
.svc2-list-item::after {
	content: ''; width: 4px; height: 4px; border-radius: 50%;
	background: rgba(0,147,127,0.3); flex-shrink: 0;
}

/* ── CTA ── */
.svc2-cta {
	margin-top: 44px; padding-top: 28px;
	border-top: 0.5px solid var(--border);
	display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.svc2-cta-t { font-size: 12px; color: var(--text-muted); line-height: 1.8; }
.svc2-cta-t strong { display: block; font-size: 14px; font-weight: 500; color: var(--text); margin-bottom: 3px; }
.svc2-cta-btn {
	font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
	color: var(--accent); border: 0.5px solid var(--accent);
	padding: 12px 24px; white-space: nowrap; flex-shrink: 0;
	transition: background 0.2s, color 0.2s; text-decoration: none; display: inline-block;
}
.svc2-cta-btn:hover { background: var(--accent); color: #fff; opacity: 1; }

/* ── 発掘フロー ── */
.svc2-flow { display: flex; flex-direction: column; }
.svc2-step {
	display: grid; grid-template-columns: 32px 160px 1fr;
	opacity: 0; transform: translateY(10px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}
.svc2-step.is-visible { opacity: 1; transform: translateY(0); }
.svc2-axis { display: flex; flex-direction: column; align-items: center; }
.svc2-axis-top { width: 0.5px; background: var(--border); flex: 0 0 20px; }
.svc2-step:first-child .svc2-axis-top { background: transparent; }
.svc2-dot {
	width: 7px; height: 7px; border-radius: 50%;
	border: 0.5px solid var(--text); background: var(--bg);
	flex-shrink: 0; transition: background 0.4s;
}
.svc2-step.is-visible .svc2-dot { background: var(--text); }
.svc2-axis-bottom { width: 0.5px; background: var(--border); flex: 1; min-height: 20px; }
.svc2-step:last-child .svc2-axis-bottom { background: transparent; }
.svc2-step-photo {
	width: 160px; height: 120px; overflow: hidden;
	flex-shrink: 0; align-self: flex-start; margin-top: 20px; background: var(--surface);
}
.svc2-step-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.svc2-step-body {
	padding: 20px 0 32px 28px;
	display: flex; flex-direction: column; justify-content: flex-start;
}
.svc2-step:not(:last-child) .svc2-step-body { border-bottom: 0.5px solid var(--border); }
.svc2-step-en {
	font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
	color: var(--accent); margin-bottom: 8px; margin-top: 20px;
}
.svc2-step-title { font-size: 16px; font-weight: 500; color: var(--text); margin-bottom: 8px; }
.svc2-step-desc { font-size: 13px; color: var(--text-muted); line-height: 1.9; }

/* ── .box間の区切り ── */
.page_nav_content .box { padding: 60px 0; border-bottom: 0.5px solid var(--border); }
.page_nav_content .box:last-child { border-bottom: none; }

/* ── レスポンシブ ── */
@media (max-width: 768px) {
	.svc2-layout { grid-template-columns: 1fr; gap: 24px; }
	.svc2-step { grid-template-columns: 24px 90px 1fr; }
	.svc2-step-photo { width: 90px; height: 68px; }
	.svc2-step-body { padding: 14px 0 24px 16px; }
	.svc2-cta { flex-direction: column; align-items: flex-start; gap: 16px; }
}
/* ============================================================
   SERVICE PAGE HEADER 2026
   ============================================================ */
#sec_head.svc-ph {
	background: #111a14;
	padding: calc(64px + 60px) clamp(24px,5vw,80px) 0;
	position: relative;
	overflow: hidden;
	border-bottom: none;
	height: auto;
	min-height: auto;
	display: block;
	transform: none;
	width: auto;
	left: auto;
}

/* 上端ベースライン */
#sec_head.svc-ph::before {
	content: '';
	position: absolute; top: 0; left: 0; right: 0;
	height: 1px;
	background: rgba(255,255,255,0.08);
	z-index: 10;
}

/* タイトル下の境界線 — 光のスイープ */
.svc-ph-inner::after {
	content: '';
	position: absolute; bottom: 0; left: -40%;
	width: 40%; height: 1px;
	background: linear-gradient(to right, transparent, #00937f, rgba(0,147,127,0.4), transparent);
	z-index: 11;
	animation: svcSweep 4s ease-in-out infinite;
	animation-delay: 1.5s;
}
@keyframes svcSweep {
	0%   { left: -40%; opacity: 0; }
	8%   { opacity: 1; }
	92%  { opacity: 1; }
	100% { left: 100%; opacity: 0; }
}

/* グリッド背景 */
.svc-ph-grid {
	position: absolute; inset: 0;
	background-image:
		linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
	background-size: 60px 60px;
	mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
	pointer-events: none;
}

/* 背景大文字 */
.svc-ph-bgword {
	position: absolute;
	left: -8px; top: -16px;
	font-family: var(--font-serif);
	font-size: clamp(120px, 20vw, 240px);
	font-weight: 300;
	color: rgba(255,255,255,0.04);
	line-height: 1; letter-spacing: -0.04em;
	pointer-events: none; user-select: none;
	z-index: 0;
}

/* タイトルエリア */
.svc-ph-inner {
	position: relative; z-index: 1;
	display: flex; align-items: flex-end; justify-content: space-between;
	padding-bottom: 40px;
	max-width: var(--container, 1400px);
	margin: 0 auto;
}
.svc-ph-eye {
	font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
	color: var(--accent); display: flex; align-items: center; gap: 10px;
	margin-bottom: 16px;
}
.svc-ph-eye::before { content: ''; width: 20px; height: 0.5px; background: var(--accent); }
.svc-ph-h1 {
	font-family: var(--font-serif);
	font-size: clamp(48px, 8vw, 88px);
	font-weight: 300; color: #e8e0cc;
	line-height: 0.95; letter-spacing: -0.03em;
}
.svc-ph-desc {
	font-size: 12px; color: rgba(232,224,204,0.3);
	line-height: 1.9; max-width: 220px; text-align: right;
}

/* カード */
.svc-ph-cards {
	display: grid; grid-template-columns: repeat(5, 1fr);
	gap: 1px; background: rgba(255,255,255,0.06);
	position: relative; z-index: 1;
	max-width: var(--container, 1400px);
	margin: 0 auto;
}
.svc-ph-card {
	background: #1a1208; text-decoration: none;
	position: relative; overflow: hidden;
	transition: background .25s; display: block;
}
.svc-ph-card:hover { background: #f0ede6; opacity: 1; }
.svc-ph-card-body {
	padding: 20px 18px 22px;
	border-top: none;
}
.svc-ph-card-en {
	font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase;
	color: var(--accent); margin-bottom: 5px;
}
.svc-ph-card-title {
	font-size: 12px; font-weight: 500;
	color: rgba(232,224,204,0.7); line-height: 1.4;
	transition: color .25s;
}
.svc-ph-card:hover .svc-ph-card-title { color: #1a1a18; }
.svc-ph-card-bar {
	position: absolute; bottom: 0; left: 0; right: 0; height: 1.5px;
	background: var(--accent); transform: scaleX(0); transform-origin: left;
	transition: transform .3s ease;
}
.svc-ph-card:hover .svc-ph-card-bar { transform: scaleX(1); }

/* sec_service との境界 */
#sec_service { border-top: 0.5px solid rgba(0,0,0,0.1); }

/* レスポンシブ */
@media (max-width: 768px) {
	#sec_head.svc-ph { height: auto; min-height: 0; padding-bottom: 0; }
	.svc-ph-inner { flex-direction: column; align-items: flex-start; gap: 12px; padding-bottom: 16px; }
	.svc-ph-desc { text-align: left; }
	.svc-ph-cards {
		grid-template-columns: repeat(5, minmax(110px, 1fr));
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		margin: 0;
	}
	.svc-ph-cards::-webkit-scrollbar { display: none; }
	.svc-ph-card:nth-child(4),
	.svc-ph-card:nth-child(5) { display: block; }
	.svc-ph-card-body { padding: 14px 12px 16px; }
	.svc-ph-card-en { font-size: 8px; }
	.svc-ph-card-title { font-size: 11px; }
}
/* ── about キャッチフレーズ ── */
.about-catch {
	padding: 48px 40px 40px;
	margin: 0 auto;
	max-width: 1400px;
	border-bottom: 0.5px solid var(--line-2);
	text-align: center;
}
.about-catch-text {
	font-family: var(--font-serif);
	font-size: clamp(22px, 3vw, 36px);
	font-weight: 300;
	color: rgba(255,255,255,0.75);
	line-height: 1.4;
	letter-spacing: 0.04em;
}
.about-catch-body {
	font-size: 14px;
	color: var(--text-2);
	line-height: 2.2;
	margin-top: 20px;
	border-left: 0.5px solid var(--line-2);
	padding-left: 16px;
}

/* ── SERVICE イントロ ── */
.svc-intro {
	background: var(--bg);
	border-bottom: 0.5px solid var(--border);
	padding: 52px 0;
}
.svc-intro-inner {
	max-width: var(--container, 1400px);
	margin: 0 auto;
	padding: 0 clamp(24px,5vw,80px);
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 60px;
	align-items: start;
}
.svc-intro-title {
	font-family: var(--font-serif);
	font-size: clamp(22px, 3vw, 32px);
	font-weight: 300;
	color: var(--text);
	line-height: 1.3;
	letter-spacing: -0.01em;
}
.svc-intro-co {
	color: var(--accent);
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
}
.svc-intro-desc {
	font-size: 14px;
	color: var(--text-muted);
	line-height: 2.2;
}
@media (max-width: 768px) {
	.svc-intro-inner { grid-template-columns: 1fr; gap: 16px; }
}

/* ============================================================
   RESPONSIVE IMPROVEMENTS 2026
   体系的なブレークポイント整理
   1200px — ハンバーガー（既存）
    992px — タブレット横（既存）
    900px — タブレット縦（追加）
    768px — モバイル主軸（追加）
    576px — 小型スマホ（追加）
   ============================================================ */

/* ━━━ [1] .inner コンテナ padding 縮小 ━━━━━━━━━━━━━━━━━━━━━━━
   注: .glid-12.inner 等は specificity が 0,2,0 なので
       セレクタを合わせて後勝ちを確実にする                      */
@media (max-width: 768px) {
	.inner,
	.glid-12.inner,
	.glid-10.inner,
	.glid-8.inner {
		padding-left: 20px;
		padding-right: 20px;
	}
	#header.home .inner,
	#header:not(.home) .inner {
		padding-left: 16px;
		padding-right: 16px;
	}
}

/* ━━━ [2] ヘッダーロゴ幅 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 768px) {
	.topnav_logo__img { width: 180px; }
}
@media (max-width: 380px) {
	.topnav_logo__img { width: 150px; }
}

/* ━━━ [3] ページヘッダー (#sec_head) ━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 768px) {
	#sec_head {
		height: auto;
		min-height: 180px;
		padding-top: 64px;
	}
	#sec_head .inner {
		padding: 64px 20px 24px;
	}
	.sec_head_title {
		font-size: clamp(22px, 6vw, 34px);
	}
	.sec_head_sub_title {
		font-size: 13px;
		margin-top: 6px;
	}
	/* about ページのヘッダー余白削減 */
	.page-template-page-about #sec_head {
		margin-top: 64px;
		min-height: 180px;
	}
}

/* ━━━ [4] サイドナビ付きレイアウト padding ━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1100px) {
	.page_nav_content { padding-left: 40px; padding-right: 40px; }
}
@media (max-width: 992px) {
	.page_nav_content { padding-left: 20px; padding-right: 20px; }
}
@media (max-width: 768px) {
	.page_nav_content { padding-left: 0; padding-right: 0; }
}

/* ━━━ [5] TOP PAGE — NEWS (style.css 側) ━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 768px) {
	#sec_top_news .glid-12.inner {
		grid-template-columns: 1fr;
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.news_label_large {
		font-size: 44px;
		margin-bottom: 10px;
	}
}

/* ━━━ [6] TOP PAGE — ABOUT (style.css 側) ━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 900px) {
	#sec_top_about { padding: 60px 0; }
	#sec_top_about .glid-12.inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.top_about_h2_line2 { padding-left: 16px; }
	.top_about__img     { height: 240px; }
}

/* ━━━ [7] TOP PAGE — SERVICE (style.css 側) ━━━━━━━━━━━━━━━━━━ */
@media (max-width: 900px) {
	.top_service_header {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}
	.top_service_grid {
		grid-template-columns: 1fr;
		grid-template-rows: 220px 180px 180px;
	}
	.top_s_card:nth-child(1) { grid-row: auto; }
	.top_service_grid2       { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 576px) {
	.top_service_grid  { grid-template-rows: 180px 160px 160px; }
	.top_service_grid2 { grid-template-columns: 1fr; }
	.top_s_card_h      { height: 100px; }
}

/* ━━━ [8] TOP PAGE — MESSAGE (style.css 側) ━━━━━━━━━━━━━━━━━━ */
@media (max-width: 768px) {
	#sec_top_message   { padding: 60px 0; }
	.top_msg_h2        { margin-bottom: 24px; }
	.top_msg_body      { margin-bottom: 36px; }
	.top_msg_motto     { font-size: clamp(28px, 7vw, 44px); }
}

/* ━━━ [9] TOP PAGE — RECRUIT (style.css 側 — 固定高さ解消) ━━━━ */
@media (max-width: 768px) {
	#sec_top_recruit         { height: auto; min-height: 0; padding: 60px 0; }
	.top_recruit_content     { padding: 0 20px; max-width: 100%; }
	.top_recruit_bigword     { display: none; }
}

/* ━━━ [10] サブフッター ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 768px) {
	#subfooter .glid-12.inner {
		padding-top:    50px;
		padding-bottom: 50px;
	}
	#subfooter .inner {
		padding-top:    50px;
		padding-bottom: 50px;
	}
}

/* ━━━ [11] フッター スモールスクリーン縦積み ━━━━━━━━━━━━━━━━━━ */
@media (max-width: 576px) {
	#footer .row                     { flex-wrap: wrap; }
	#footer .col-6                   { flex: 0 0 100%; max-width: 100%; }
	.footer_menu_box                 { flex-wrap: wrap; }
	.footer_menu_box .col-4,
	.footer_menu_box .col            { flex: 0 0 50%; max-width: 50%; }
	.copyright                       { text-align: center; margin-top: 16px; }
}

/* ━━━ [12] フロー (service ページ) ━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 768px) {
	.flow_list__li .row              { flex-direction: column; }
	.flow_list__li .col-4,
	.flow_list__li .col-8            { flex: 0 0 100%; max-width: 100%; }
	.flow_list__li .col-8            { padding: 20px 15px; }
	.flow_list__li .col-4            { padding: 0; }
}

/* ━━━ [13] about キャッチ、about-catch-body ━━━━━━━━━━━━━━━━━━ */
@media (max-width: 768px) {
	.about-catch      { padding: 32px 20px; }
	.about-catch-body { border-left: none; padding-left: 0; }
}

/* ━━━ [13b] about-layout — 非対称 margin/padding 補正 ━━━━━━━━ */
@media (max-width: 768px) {
	.about-layout {
		margin-left: 0;
		margin-right: 0;
		padding-left: 20px;
		padding-right: 20px;
	}
}

/* ━━━ [14] service ページ intro ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* svc-intro-inner は既存ルールで 768px 対応済み */

/* ━━━ [15] table_news — スマホ縦積み ━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 576px) {
	.table_news { display: block; }
	.table_news tbody { display: block; }
	.table_news tr {
		display: flex;
		flex-direction: column;
		padding: 14px 0;
		border-bottom: 0.5px solid rgba(0,0,0,0.08);
	}
	.table_news th {
		font-size: 11px;
		margin-bottom: 4px;
	}
	.table_news td { border-bottom: none; padding: 0; display: block; }
}

/* ━━━ [16] タブレット中間 (769px–900px) 補完 ━━━━━━━━━━━━━━━━━ */
@media (max-width: 900px) and (min-width: 769px) {
	.glid-12.inner { padding-left: 24px; padding-right: 24px; }
}

/* ━━━ [17] news_content (記事詳細) padding 縮小 ━━━━━━━━━━━━━━ */
@media (max-width: 768px) {
	.news_content {
		padding: 32px 16px;
	}
	.news_content__title {
		font-size: 20px;
	}
}

/* ━━━ [18] about page — セクション縦余白の縮小 ━━━━━━━━━━━━━━━ */
@media (max-width: 768px) {
	.about-section {
		padding: 44px 0;
	}
	.about-content {
		padding-top:    40px;
		padding-bottom: 60px;
	}
	/* メッセージ写真グリッドの高さ制限 */
	.msg-imgs {
		grid-template-columns: 1fr 1fr;
		gap: 8px;
		margin-bottom: 24px;
	}
	.msg-img {
		aspect-ratio: 4/3;
	}
	/* 社是 */
	.motto-message {
		margin-bottom: 24px;
		padding-bottom: 24px;
	}
	.motto-main {
		font-size: clamp(40px, 10vw, 64px);
	}
	/* 概要テーブル — th 幅をさらに縮小して小型端末に対応 */
	.outline-table tr,
	.regist-table tr,
	.office-table tr {
		grid-template-columns: 100px 1fr;
	}
}
@media (max-width: 400px) {
	/* 320px 端末では th を上段に出す */
	.outline-table tr,
	.regist-table tr,
	.office-table tr {
		display: flex;
		flex-direction: column;
	}
	.outline-table th,
	.regist-table th,
	.office-table th {
		padding-bottom: 0;
		white-space: normal;
	}
}

/* ━━━ [19] page-about #sec_head — ph タイトル / inner 余白 ━━━ */
@media (max-width: 768px) {
	/* about ページのページヘッダーは既存で height:auto 済み
	   ph-inner の下余白だけ縮小する */
	.page-template-page-about .ph-inner {
		padding-bottom: 32px;
	}
	/* 背景大文字は小さくして overflow を抑制 */
	.ph-bg-word {
		font-size: clamp(80px, 18vw, 160px);
	}
}

/* ━━━ [20] news_list — サムネイルを小さく統一 ━━━━━━━━━━━━━━━ */
@media (max-width: 576px) {
	.news_list__img {
		aspect-ratio: 4/3;
		object-fit: cover;
		height: auto;
	}
}

/* ============================================================
   END RESPONSIVE IMPROVEMENTS 2026
   ============================================================ */