@charset "UTF-8";
/* ==================================================================
   NDM Corporate — スタイルシート
   ロイヤルブルー × ホワイト / 太い欧文見出し + 各言語サブコピー
   ================================================================== */

/* ------------------------------------------------------------------
   0. 変数
   ---------------------------------------------------------------- */
:root {
	--blue-900: #061c56;
	--blue-800: #0b2f8f;
	--blue-700: #0f3aad;
	--blue-600: #1547c9;
	--blue-100: #dbe4f8;
	--blue-050: #eff3fc;

	--ink:      #0a1020;
	--ink-70:   #3d4658;
	--gray:     #5a6478;
	--line:     #dde3ee;
	--white:    #ffffff;
	--paper:    #f5f7fb;

	--ff-en: "Archivo", "Helvetica Neue", Arial, sans-serif;
	--ff-body: "Archivo", "Noto Sans JP", "Noto Sans KR", "Noto Sans SC",
		-apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic",
		"Segoe UI", sans-serif;

	--maxw: 1200px;
	--gutter: clamp(20px, 5vw, 48px);
	--sec-pad: clamp(88px, 11vw, 168px);
	--header-h: 76px;

	--ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

html[data-lang="ja"] { --ff-body: "Archivo", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif; }
html[data-lang="ko"] { --ff-body: "Archivo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Malgun Gothic", sans-serif; }
html[data-lang="zh"] { --ff-body: "Archivo", "Noto Sans SC", -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif; }
html[data-lang="en"] { --ff-body: "Archivo", "Helvetica Neue", Arial, sans-serif; }

/* ------------------------------------------------------------------
   1. リセット / 基本
   ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
}

body.ndm-body {
	margin: 0;
	font-family: var(--ff-body);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.9;
	color: var(--ink);
	background: var(--white);
	letter-spacing: 0.01em;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

html[data-lang="ja"] body, html[data-lang="zh"] body { line-break: strict; }
html[data-lang="ko"] body { word-break: keep-all; }

img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease), opacity .25s var(--ease); }
ul, ol, dl, dd { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, figure { margin: 0; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

::selection { background: var(--blue-700); color: #fff; }

.screen-reader-text {
	position: absolute !important; width: 1px; height: 1px;
	overflow: hidden; clip: rect(1px,1px,1px,1px); white-space: nowrap;
}
.skip-link {
	position: absolute; top: -100px; left: 16px; z-index: 999;
	background: var(--blue-800); color: #fff; padding: 10px 18px;
}
.skip-link:focus { top: 12px; }

:focus-visible { outline: 3px solid var(--blue-600); outline-offset: 3px; }

.container {
	width: 100%;
	max-width: var(--maxw);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

/* セクション共通 */
.section {
	position: relative;
	padding-block: var(--sec-pad);
	scroll-margin-top: var(--header-h);
}
#hero, #about, #business, #creed, #reasons, #partners, #achievements,
#founder, #makers, #vision, #contact, #company { scroll-margin-top: var(--header-h); }

.seclabel {
	display: flex; align-items: center; gap: 14px;
	margin-bottom: 22px;
	font-family: var(--ff-en);
}
.seclabel__en {
	font-size: 12px; font-weight: 700; letter-spacing: .22em;
	color: var(--blue-700);
	padding-left: 46px; position: relative;
}
.seclabel__en::before {
	content: ""; position: absolute; left: 0; top: 50%;
	width: 34px; height: 2px; background: var(--blue-700);
}
.seclabel__ja {
	font-size: 12px; letter-spacing: .08em; color: var(--gray);
	font-family: var(--ff-body);
}

.sectitle {
	font-size: clamp(28px, 4.4vw, 52px);
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: -0.01em;
	text-wrap: pretty;
}
html[data-lang="en"] .sectitle { letter-spacing: -0.025em; line-height: 1.15; }

.seclead {
	margin-top: 26px;
	max-width: min(720px, 100%);
	color: var(--ink-70);
	font-size: clamp(15px, 1.4vw, 17px);
}

.sechead { margin-bottom: clamp(48px, 6vw, 80px); }
.sechead--invert .seclabel__en { color: #8fb0ff; }
.sechead--invert .seclabel__en::before { background: #8fb0ff; }
.sechead--invert .seclabel__ja { color: rgba(255,255,255,.62); }
.sechead--invert .sectitle { color: #fff; }
.sechead--invert .seclead { color: rgba(255,255,255,.76); }

/* ボタン */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 12px;
	min-height: 60px; padding: 0 38px;
	font-family: var(--ff-body);
	font-size: 15px; font-weight: 700; letter-spacing: .04em;
	border: 2px solid transparent;
	transition: background-color .25s var(--ease), color .25s var(--ease),
		border-color .25s var(--ease), transform .25s var(--ease);
}
.btn::after {
	content: ""; width: 18px; height: 8px; flex: none;
	background: currentColor;
	clip-path: polygon(0 3px, 12px 3px, 12px 0, 18px 4px, 12px 8px, 12px 5px, 0 5px);
	transition: transform .25s var(--ease);
}
.btn:hover::after { transform: translateX(5px); }
.btn--primary { background: var(--blue-800); color: #fff; border-color: var(--blue-800); }
.btn--primary:hover { background: var(--blue-600); border-color: var(--blue-600); }
.btn--ghost { color: #fff; border-color: rgba(255,255,255,.55); }
.btn--ghost:hover { background: #fff; color: var(--blue-800); border-color: #fff; }
.btn--wide { width: 100%; max-width: 340px; }

/* ------------------------------------------------------------------
   2. ヘッダー
   ---------------------------------------------------------------- */
.site-header {
	position: fixed; inset: 0 0 auto 0; z-index: 100;
	height: var(--header-h);
	transition: background-color .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header__inner {
	height: 100%;
	max-width: 1440px; margin-inline: auto;
	padding-inline: var(--gutter);
	display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.site-header.is-scrolled {
	background: rgba(255,255,255,.94);
	backdrop-filter: saturate(1.4) blur(12px);
	box-shadow: 0 1px 0 var(--line);
}

.brand { display: flex; align-items: center; gap: 12px; color: #fff; }
.brand__logo { width: auto; max-height: 40px; filter: brightness(0) invert(1); transition: filter .3s var(--ease); }
.brand__mark {
	font-family: var(--ff-en); font-weight: 800; font-size: 26px;
	letter-spacing: .04em; line-height: 1;
}
.brand__sub { font-size: 11px; letter-spacing: .1em; opacity: .8; }
.is-scrolled .brand { color: var(--blue-900); }
.is-scrolled .brand__logo { filter: none; }
.custom-logo { max-height: 40px; width: auto; }

.gnav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 36px); }
.gnav__list { display: flex; align-items: center; gap: clamp(14px, 1.8vw, 28px); }
.gnav__list a {
	position: relative; font-size: 13px; font-weight: 500; letter-spacing: .04em;
	color: rgba(255,255,255,.9); padding-block: 6px;
}
.gnav__list a::after {
	content: ""; position: absolute; left: 0; bottom: 0;
	width: 100%; height: 2px; background: currentColor;
	transform: scaleX(0); transform-origin: left; transition: transform .28s var(--ease);
}
.gnav__list a:hover::after { transform: scaleX(1); }
.is-scrolled .gnav__list a { color: var(--ink); }
.is-scrolled .gnav__list a:hover { color: var(--blue-700); }

.gnav__cta {
	display: inline-flex; align-items: center; height: 44px; padding: 0 22px;
	font-size: 13px; font-weight: 700; letter-spacing: .04em;
	background: var(--blue-800); color: #fff;
}
.gnav__cta:hover { background: var(--blue-600); }
.is-scrolled .gnav__cta { background: var(--blue-800); }

/* 言語スイッチャー */
.langswitch { position: relative; }
.langswitch__toggle {
	display: inline-flex; align-items: center; gap: 7px;
	height: 38px; padding: 0 12px;
	border: 1px solid rgba(255,255,255,.4);
	color: rgba(255,255,255,.95);
	font-size: 12px; font-weight: 700; letter-spacing: .08em;
	font-family: var(--ff-en);
	transition: border-color .25s var(--ease), background-color .25s var(--ease);
}
.langswitch__toggle:hover { background: rgba(255,255,255,.12); }
.is-scrolled .langswitch__toggle { border-color: var(--line); color: var(--ink); }
.is-scrolled .langswitch__toggle:hover { background: var(--blue-050); border-color: var(--blue-100); }
.langswitch__icon { width: 16px; height: 16px; flex: none; }
.langswitch__caret {
	width: 8px; height: 8px; border-right: 1.6px solid currentColor; border-bottom: 1.6px solid currentColor;
	transform: rotate(45deg) translate(-2px, -2px);
	transition: transform .25s var(--ease);
}
.langswitch__toggle[aria-expanded="true"] .langswitch__caret { transform: rotate(-135deg) translate(-3px, -3px); }

.langswitch__list {
	position: absolute; top: calc(100% + 10px); right: 0; z-index: 20;
	min-width: 190px; padding: 8px;
	background: #fff; border: 1px solid var(--line);
	box-shadow: 0 18px 44px rgba(6,28,86,.16);
	opacity: 0; visibility: hidden; transform: translateY(-8px);
	transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
}
.langswitch.is-open .langswitch__list { opacity: 1; visibility: visible; transform: translateY(0); }
.langswitch__list a {
	display: flex; align-items: baseline; gap: 12px;
	padding: 10px 14px; font-size: 14px; color: var(--ink);
}
.langswitch__list a:hover { background: var(--blue-050); color: var(--blue-800); }
.langswitch__list a.is-current { background: var(--blue-800); color: #fff; }
.langswitch__code { font-family: var(--ff-en); font-weight: 700; font-size: 11px; letter-spacing: .12em; opacity: .7; }
.langswitch__label { font-size: 14px; }

/* ハンバーガー */
.navtoggle { display: none; width: 48px; height: 48px; margin-right: -10px; }
.navtoggle__bars { display: block; position: relative; width: 26px; height: 16px; margin-inline: auto; }
.navtoggle__bars i {
	position: absolute; left: 0; width: 100%; height: 2px; background: #fff;
	transition: transform .3s var(--ease), opacity .2s var(--ease), background-color .3s var(--ease);
}
.navtoggle__bars i:nth-child(1) { top: 0; }
.navtoggle__bars i:nth-child(2) { top: 7px; }
.navtoggle__bars i:nth-child(3) { top: 14px; }
.is-scrolled .navtoggle__bars i { background: var(--ink); }
.navtoggle[aria-expanded="true"] .navtoggle__bars i { background: var(--ink); }
.navtoggle[aria-expanded="true"] .navtoggle__bars i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navtoggle[aria-expanded="true"] .navtoggle__bars i:nth-child(2) { opacity: 0; }
.navtoggle[aria-expanded="true"] .navtoggle__bars i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.navscrim {
	position: fixed; inset: 0; z-index: 90;
	background: rgba(6,28,86,.5); opacity: 0;
	transition: opacity .3s var(--ease);
}
.navscrim.is-open { opacity: 1; }

/* ------------------------------------------------------------------
   3. ファーストビュー
   ---------------------------------------------------------------- */
.hero {
	position: relative;
	min-height: 100svh;
	display: flex; flex-direction: column; justify-content: center;
	padding-block: calc(var(--header-h) + 40px) 120px;
	color: #fff;
	overflow: hidden;
}
.hero__media {
	position: absolute; inset: 0;
	background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 48%, var(--blue-700) 100%);
	background-size: cover; background-position: center;
}
.hero__scrim {
	position: absolute; inset: 0;
	background:
		linear-gradient(180deg, rgba(6,28,86,.66) 0%, rgba(6,28,86,.44) 45%, rgba(6,28,86,.82) 100%),
		linear-gradient(90deg, rgba(6,28,86,.58) 0%, rgba(6,28,86,0) 72%);
}
.hero__grid {
	position: absolute; inset: 0; opacity: .16;
	background-image:
		linear-gradient(to right, rgba(255,255,255,.5) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(255,255,255,.5) 1px, transparent 1px);
	background-size: clamp(80px, 12vw, 160px) clamp(80px, 12vw, 160px);
	mask-image: radial-gradient(ellipse at 30% 40%, #000 0%, transparent 78%);
}
.hero__inner {
	position: relative; z-index: 2;
	width: 100%; max-width: var(--maxw);
	margin-inline: auto; padding-inline: var(--gutter);
}
.hero__kicker {
	font-family: var(--ff-en);
	font-size: clamp(10px, 1.1vw, 12px); font-weight: 700; letter-spacing: .34em;
	color: #a9c2ff;
	padding-left: 60px; position: relative; margin-bottom: 30px;
}
.hero__kicker::before {
	content: ""; position: absolute; left: 0; top: 50%;
	width: 44px; height: 1px; background: #a9c2ff;
}
.hero__title {
	font-family: var(--ff-en);
	font-size: clamp(40px, 10.2vw, 132px);
	font-weight: 800;
	line-height: .94;
	letter-spacing: -0.035em;
	text-transform: uppercase;
}
.hero__line { display: block; }
.hero__line--accent { color: #7ea3ff; }
.hero__sub {
	margin-top: 34px;
	font-size: clamp(17px, 2.1vw, 25px); font-weight: 700; letter-spacing: .04em;
}
.hero__lead {
	margin-top: 20px; max-width: min(560px, 100%);
	font-size: clamp(14px, 1.4vw, 16px);
	color: rgba(255,255,255,.82);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 46px; }

.hero__scroll {
	position: absolute; left: 50%; bottom: 34px; z-index: 2;
	transform: translateX(-50%);
	display: flex; flex-direction: column; align-items: center; gap: 12px;
	font-family: var(--ff-en); font-size: 10px; font-weight: 700; letter-spacing: .3em;
	color: rgba(255,255,255,.7);
}
.hero__scrollbar { position: relative; width: 1px; height: 56px; background: rgba(255,255,255,.28); overflow: hidden; }
.hero__scrollbar::after {
	content: ""; position: absolute; inset: 0; background: #fff;
	animation: ndm-scroll 2.2s var(--ease) infinite;
}
@keyframes ndm-scroll {
	0%   { transform: translateY(-100%); }
	60%  { transform: translateY(100%); }
	100% { transform: translateY(100%); }
}
@media (prefers-reduced-motion: reduce) {
	.hero__scrollbar::after { animation: none; }
}

/* ------------------------------------------------------------------
   4. 会社／事業紹介
   ---------------------------------------------------------------- */
.section--about { background: var(--white); }
.about__top {
	display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(32px, 6vw, 88px);
	align-items: start;
}
.about__body { padding-top: clamp(0px, 3vw, 40px); }
.about__p { color: var(--ink-70); font-size: clamp(15px, 1.4vw, 17px); }
.about__p + .about__p { margin-top: 26px; }
.about__p--lead { color: var(--ink); font-weight: 500; font-size: clamp(17px, 1.8vw, 21px); line-height: 1.85; }

.about__visual {
	position: relative;
	margin-top: clamp(56px, 7vw, 96px);
	aspect-ratio: 21 / 8;
	background: linear-gradient(120deg, var(--blue-800), var(--blue-600));
	background-size: cover; background-position: center 60%;
}
.about__visualtag {
	position: absolute; left: 0; bottom: 0;
	padding: 12px 22px;
	background: var(--blue-800); color: #fff;
	font-family: var(--ff-en); font-size: 11px; font-weight: 700; letter-spacing: .24em;
}

.about__points {
	display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px; margin-top: 1px;
	background: var(--line);
	border-block: 1px solid var(--line);
}
.pointcard { background: #fff; padding: clamp(28px, 3.4vw, 44px) clamp(20px, 2.6vw, 36px); }
.pointcard__num {
	display: block; font-family: var(--ff-en); font-size: 13px; font-weight: 700;
	letter-spacing: .18em; color: var(--blue-600); margin-bottom: 16px;
}
.pointcard__title { font-size: clamp(16px, 1.5vw, 19px); font-weight: 700; line-height: 1.6; margin-bottom: 12px; }
.pointcard__text { font-size: 14px; color: var(--gray); line-height: 1.85; }

/* ------------------------------------------------------------------
   5. 事業内容
   ---------------------------------------------------------------- */
.section--business { background: var(--paper); }
.bizlist { display: grid; gap: clamp(28px, 3vw, 40px); }
.bizcard {
	display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	background: #fff;
	border: 1px solid var(--line);
}
.bizcard:nth-child(even) { grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); }
.bizcard:nth-child(even) .bizcard__media { order: 2; }
.bizcard__media {
	position: relative; min-height: 320px;
	background: linear-gradient(140deg, var(--blue-900), var(--blue-700));
	background-size: cover; background-position: center;
}
.bizcard__media::after {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(6,28,86,.28), rgba(6,28,86,.62));
}
.bizcard__no {
	position: absolute; left: clamp(20px, 2.4vw, 32px); top: clamp(18px, 2.2vw, 28px); z-index: 2;
	font-family: var(--ff-en); font-size: clamp(46px, 6vw, 84px); font-weight: 800;
	line-height: 1; color: rgba(255,255,255,.9); letter-spacing: -0.04em;
}
.bizcard__body { padding: clamp(30px, 4vw, 60px); }
.bizcard__en {
	font-family: var(--ff-en); font-size: 12px; font-weight: 700; letter-spacing: .22em;
	color: var(--blue-600); margin-bottom: 14px;
}
.bizcard__title { font-size: clamp(20px, 2.2vw, 30px); font-weight: 700; line-height: 1.5; margin-bottom: 20px; }
.bizcard__text { font-size: 15px; color: var(--ink-70); }

.taglist { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.taglist li {
	padding: 7px 15px; font-size: 12px; letter-spacing: .03em;
	background: var(--blue-050); color: var(--blue-800);
	border: 1px solid var(--blue-100);
}

/* ------------------------------------------------------------------
   5-2. 基本理念
   ---------------------------------------------------------------- */
.section--creed {
	background: var(--white);
	padding-block: clamp(72px, 9vw, 132px);
}
.creed__statement {
	font-family: var(--ff-en);
	font-size: clamp(34px, 6.4vw, 84px);
	font-weight: 800;
	line-height: 1.06;
	letter-spacing: -0.035em;
	color: var(--blue-800);
	text-wrap: balance;
}
.creed__foot {
	display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(20px, 4vw, 64px);
	align-items: start;
	margin-top: clamp(34px, 4vw, 56px);
	padding-top: clamp(26px, 3vw, 40px);
	border-top: 1px solid var(--line);
}
.creed__sub {
	font-size: clamp(19px, 2.4vw, 30px); font-weight: 700; line-height: 1.6;
	letter-spacing: .03em; color: var(--ink);
	text-wrap: pretty;
}
.creed__lead { font-size: clamp(14px, 1.4vw, 16px); color: var(--ink-70); }

/* ------------------------------------------------------------------
   6. 選ばれる理由
   ---------------------------------------------------------------- */
.section--reasons {
	background: var(--blue-900);
	background-image: radial-gradient(ellipse at 78% 8%, rgba(21,71,201,.55), transparent 62%);
	color: #fff;
}
.reasonlist {
	display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1px; background: rgba(255,255,255,.14);
	border: 1px solid rgba(255,255,255,.14);
}
.reasoncard { background: var(--blue-900); padding: clamp(32px, 4vw, 56px); }
.reasoncard__num {
	display: block; font-family: var(--ff-en); font-size: clamp(34px, 4vw, 52px);
	font-weight: 800; line-height: 1; letter-spacing: -0.03em;
	color: rgba(126,163,255,.55); margin-bottom: 22px;
}
.reasoncard__title { font-size: clamp(18px, 1.9vw, 23px); font-weight: 700; line-height: 1.55; margin-bottom: 16px; }
.reasoncard__text { font-size: 14.5px; color: rgba(255,255,255,.74); }

/* ------------------------------------------------------------------
   7. 主要取引先
   ---------------------------------------------------------------- */
.section--partners { background: var(--white); }
.partners { display: grid; gap: clamp(28px, 3.4vw, 44px); }
.partners__group {
	display: grid; grid-template-columns: 190px minmax(0, 1fr);
	gap: clamp(18px, 3vw, 40px); align-items: center;
	padding-block: clamp(22px, 2.6vw, 34px);
	border-top: 1px solid var(--line);
}
.partners__group:last-child { border-bottom: 1px solid var(--line); }
.partners__cat {
	font-family: var(--ff-en); font-size: clamp(15px, 1.6vw, 20px); font-weight: 800;
	letter-spacing: .16em; color: var(--blue-800);
}
.partners__list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.partnercard {
	display: flex; flex-direction: column; justify-content: center; gap: 6px;
	min-height: 104px; padding: 20px 26px;
	background: var(--paper); border: 1px solid var(--line);
	transition: border-color .25s var(--ease), background-color .25s var(--ease);
}
.partnercard:hover { background: #fff; border-color: var(--blue-100); }
.partnercard__en {
	font-family: var(--ff-en); font-size: clamp(15px, 1.5vw, 19px); font-weight: 700;
	letter-spacing: .02em; color: var(--blue-900); line-height: 1.25;
}
.partnercard__name { font-size: 12px; color: var(--gray); letter-spacing: .04em; }
.partnercard__logo { max-height: 46px; width: auto; object-fit: contain; }
.partners__note { margin-top: 26px; font-size: 12px; color: var(--gray); }

/* ------------------------------------------------------------------
   8. 取扱ブランド・実績
   ---------------------------------------------------------------- */
.section--achievements { background: var(--paper); }
.statlist {
	display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px; background: var(--line); border: 1px solid var(--line);
}
.statcard { background: #fff; padding: clamp(28px, 3.4vw, 48px); text-align: center; }
.statcard__num {
	font-family: var(--ff-en); font-size: clamp(38px, 5vw, 64px); font-weight: 800;
	line-height: 1; letter-spacing: -0.03em; color: var(--blue-800);
}
.statcard__unit { font-size: .38em; margin-left: .3em; letter-spacing: 0; }
.statcard__label { margin-top: 14px; font-size: 13px; color: var(--gray); }

.brands__title {
	margin-top: clamp(48px, 6vw, 80px); margin-bottom: 22px;
	font-size: 15px; font-weight: 700; letter-spacing: .08em;
}
.brands { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px; }
.brandslot {
	display: grid; place-items: center; min-height: 92px;
	background: #fff; border: 1px dashed var(--line);
	font-size: 11px; color: #a8b0c0; letter-spacing: .08em;
}

/* ------------------------------------------------------------------
   9. 代表メッセージ
   ---------------------------------------------------------------- */
.section--founder { background: var(--white); }
.founder {
	display: grid; grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
	gap: clamp(32px, 5.5vw, 80px); align-items: start;
}
.founder__figure { position: relative; }
.founder__photo, .founder__placeholder {
	width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
	display: block;
}
.founder__placeholder {
	background:
		linear-gradient(150deg, var(--blue-800), var(--blue-600));
	position: relative;
}
.founder__placeholder::after {
	content: "PHOTO"; position: absolute; inset: 0;
	display: grid; place-items: center;
	font-family: var(--ff-en); font-size: 12px; font-weight: 700; letter-spacing: .3em;
	color: rgba(255,255,255,.45);
}
.founder__caption {
	display: flex; flex-direction: column; gap: 3px;
	margin-top: 20px; padding-left: 18px;
	border-left: 3px solid var(--blue-800);
}
.founder__role { font-size: 12px; color: var(--gray); letter-spacing: .08em; }
.founder__name { font-size: 20px; font-weight: 700; letter-spacing: .06em; }
.founder__nameen { font-family: var(--ff-en); font-size: 12px; letter-spacing: .16em; color: var(--gray); }

.founder__text { margin-top: 32px; }
.founder__text p { font-size: clamp(15px, 1.45vw, 17px); color: var(--ink-70); }
.founder__sign { margin-top: 40px; display: flex; align-items: baseline; gap: 16px; }
.founder__signrole { font-size: 12px; color: var(--gray); letter-spacing: .1em; }
.founder__signname { font-size: 22px; font-weight: 700; letter-spacing: .1em; }

/* ------------------------------------------------------------------
   10. 海外メーカー様へ
   ---------------------------------------------------------------- */
.section--makers { position: relative; color: #fff; overflow: hidden; }
.makers__bg {
	position: absolute; inset: 0; z-index: 0;
	background: linear-gradient(115deg, var(--blue-900) 0%, var(--blue-700) 100%);
	background-size: cover; background-position: center;
}
.makers__bg::after {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(105deg, rgba(6,28,86,.94) 0%, rgba(6,28,86,.78) 55%, rgba(15,58,173,.72) 100%);
}
.section--makers .container { position: relative; z-index: 1; }
.makers { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(36px, 6vw, 88px); }
.makers .seclabel__en { color: #9dbaff; }
.makers .seclabel__en::before { background: #9dbaff; }
.makers .seclabel__ja { color: rgba(255,255,255,.6); }
.makers .sectitle { color: #fff; }
.makers__lead { margin-top: 28px; font-size: clamp(14px, 1.4vw, 16px); color: rgba(255,255,255,.78); }

.checklist { display: grid; gap: 2px; }
.checklist li {
	position: relative;
	padding: 16px 16px 16px 46px;
	background: rgba(255,255,255,.07);
	font-size: 14.5px; line-height: 1.7;
}
.checklist li::before {
	content: ""; position: absolute; left: 18px; top: 24px;
	width: 12px; height: 7px;
	border-left: 2px solid #7ea3ff; border-bottom: 2px solid #7ea3ff;
	transform: rotate(-45deg);
}
.makers__closing { margin-top: 30px; font-size: 14.5px; color: rgba(255,255,255,.8); }
.makers__actions { margin-top: 32px; }
.section--makers .btn--primary { background: #fff; color: var(--blue-800); border-color: #fff; }
.section--makers .btn--primary:hover { background: #7ea3ff; border-color: #7ea3ff; color: var(--blue-900); }

/* ------------------------------------------------------------------
   11. ビジョン
   ---------------------------------------------------------------- */
.section--vision { background: var(--white); }
.phases {
	display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(20px, 2.6vw, 34px);
	counter-reset: phase;
}
.phase {
	position: relative; padding-top: 34px;
	border-top: 3px solid var(--blue-800);
}
.phase:nth-child(2) { border-top-color: var(--blue-600); }
.phase:nth-child(3) { border-top-color: var(--blue-100); }
.phase__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.phase__no {
	font-family: var(--ff-en); font-size: 12px; font-weight: 700; letter-spacing: .18em;
	color: var(--blue-800);
}
.phase__term {
	font-family: var(--ff-en); font-size: 10px; font-weight: 700; letter-spacing: .16em;
	padding: 4px 10px; background: var(--blue-050); color: var(--blue-700);
}
.phase__title { font-size: clamp(19px, 2vw, 25px); font-weight: 700; line-height: 1.5; margin-bottom: 14px; }
.phase__text { font-size: 14.5px; color: var(--gray); }

.vision__closing {
	margin-top: clamp(56px, 7vw, 96px);
	padding-top: clamp(40px, 5vw, 64px);
	border-top: 1px solid var(--line);
	font-size: clamp(24px, 4.2vw, 46px); font-weight: 700; line-height: 1.4;
	letter-spacing: .02em; color: var(--blue-800);
}

/* ------------------------------------------------------------------
   12. お問い合わせ
   ---------------------------------------------------------------- */
.section--contact { background: var(--paper); }
.contact {
	display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: clamp(36px, 5vw, 76px);
	align-items: start;
}
.contact__lead { margin-top: 26px; font-size: 15px; color: var(--ink-70); }
.contact__reply {
	display: inline-block; margin-top: 24px; padding: 10px 18px;
	background: var(--blue-800); color: #fff; font-size: 13px; font-weight: 700;
}
.contact__langs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.contact__langs li {
	padding: 6px 13px; font-size: 12px;
	border: 1px solid var(--line); background: #fff; color: var(--gray);
}

.contact__form { background: #fff; border: 1px solid var(--line); padding: clamp(26px, 3.6vw, 52px); }

.formnotice { padding: 22px 26px; margin-bottom: 30px; }
.formnotice--ok { background: var(--blue-050); border-left: 4px solid var(--blue-800); }
.formnotice--err { background: #fdf0f0; border-left: 4px solid #c0392b; }
.formnotice__title { font-weight: 700; margin-bottom: 8px; }
.formnotice--ok .formnotice__title { color: var(--blue-800); }
.formnotice--err .formnotice__title { color: #b03024; }
.formnotice__text { font-size: 14px; color: var(--ink-70); }

.cform__hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.cform__row + .cform__row, .cform__cols + .cform__row, .cform__row + .cform__cols { margin-top: 24px; }
.cform__cols { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.cform__cols .cform__row + .cform__row { margin-top: 0; }

.cform__label {
	display: flex; align-items: center; gap: 10px;
	font-size: 13px; font-weight: 700; letter-spacing: .04em; margin-bottom: 10px;
}
.badge { font-size: 10px; font-weight: 700; letter-spacing: .08em; padding: 3px 8px; line-height: 1.4; }
.badge--req { background: var(--blue-800); color: #fff; }
.badge--opt { background: var(--line); color: var(--gray); }

.cform__input {
	width: 100%; padding: 15px 16px;
	font-family: inherit; font-size: 15px; color: var(--ink);
	background: var(--paper);
	border: 1px solid var(--line); border-radius: 0;
	transition: border-color .2s var(--ease), background-color .2s var(--ease);
	appearance: none;
}
.cform__input::placeholder { color: #a3abbb; }
.cform__input:focus { background: #fff; border-color: var(--blue-600); outline: none; box-shadow: 0 0 0 3px rgba(21,71,201,.12); }
.cform__textarea { resize: vertical; min-height: 170px; line-height: 1.8; }
.cform__selectwrap { position: relative; }
.cform__selectwrap::after {
	content: ""; position: absolute; right: 18px; top: 50%; pointer-events: none;
	width: 9px; height: 9px; margin-top: -7px;
	border-right: 2px solid var(--gray); border-bottom: 2px solid var(--gray);
	transform: rotate(45deg);
}
.cform__select { padding-right: 44px; cursor: pointer; }

.has-error .cform__input { border-color: #c0392b; background: #fdf5f4; }
.cform__error { margin-top: 8px; font-size: 13px; color: #b03024; }

.cform__privacy { margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--line); }
.cform__privacytext { font-size: 12.5px; color: var(--gray); line-height: 1.85; }
.cform__check {
	display: flex; align-items: flex-start; gap: 12px;
	margin-top: 18px; font-size: 14px; cursor: pointer;
}
.cform__check input {
	appearance: none; flex: none; width: 22px; height: 22px; margin-top: 3px;
	border: 1.5px solid var(--gray); background: #fff; cursor: pointer;
	transition: background-color .2s var(--ease), border-color .2s var(--ease);
}
.cform__check input:checked { background: var(--blue-800); border-color: var(--blue-800); }
.cform__check input:checked::after {
	content: ""; display: block; width: 11px; height: 6px; margin: 5px auto 0;
	border-left: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(-45deg);
}
.cform__check span { display: inline-flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.cform__check.has-error input { border-color: #c0392b; }
.cform__submit { margin-top: 34px; }

/* ------------------------------------------------------------------
   13. 会社概要
   ---------------------------------------------------------------- */
.section--company { background: var(--white); }
.profile { border-top: 1px solid var(--line); }
.profile__row {
	display: grid; grid-template-columns: 220px minmax(0, 1fr);
	gap: clamp(12px, 3vw, 40px);
	padding-block: clamp(20px, 2.4vw, 28px);
	border-bottom: 1px solid var(--line);
}
.profile__row dt { font-size: 13px; font-weight: 700; letter-spacing: .06em; color: var(--blue-800); }
.profile__row dd { font-size: 15px; color: var(--ink-70); }
.profile__sub { display: block; font-family: var(--ff-en); font-size: 12.5px; letter-spacing: .06em; color: var(--gray); margin-top: 4px; }
.profile__map {
	display: block; width: fit-content; margin-top: 12px; font-size: 12px; font-weight: 700;
	letter-spacing: .06em; color: var(--blue-700);
	border-bottom: 1px solid currentColor; padding-bottom: 2px;
}
.profile__map:hover { color: var(--blue-600); }
.profile__row dd a[href^="mailto:"] { color: var(--blue-700); border-bottom: 1px solid currentColor; }

/* ------------------------------------------------------------------
   14. フッター
   ---------------------------------------------------------------- */
.site-footer { background: var(--blue-900); color: #fff; }
.site-footer__inner {
	max-width: var(--maxw); margin-inline: auto;
	padding: clamp(56px, 7vw, 92px) var(--gutter) clamp(40px, 5vw, 64px);
	display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.3fr) minmax(0, .8fr);
	gap: clamp(32px, 5vw, 64px);
}
.site-footer__mark { font-family: var(--ff-en); font-size: 34px; font-weight: 800; letter-spacing: .04em; line-height: 1; }
.site-footer__logo { max-height: 44px; width: auto; filter: brightness(0) invert(1); }
.site-footer__slogan { margin-top: 20px; font-size: 15px; font-weight: 500; }
.site-footer__en { margin-top: 8px; font-family: var(--ff-en); font-size: 11px; letter-spacing: .2em; color: rgba(255,255,255,.5); }

.site-footer__nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.site-footer__nav a { font-size: 13.5px; color: rgba(255,255,255,.76); }
.site-footer__nav a:hover { color: #fff; }
.site-footer__nav li + li { margin-top: 12px; }

.site-footer__langtitle {
	font-family: var(--ff-en); font-size: 11px; font-weight: 700; letter-spacing: .2em;
	color: rgba(255,255,255,.5); margin-bottom: 16px;
}
.site-footer__lang li + li { margin-top: 11px; }
.site-footer__lang a { font-size: 13.5px; color: rgba(255,255,255,.76); }
.site-footer__lang a:hover, .site-footer__lang a.is-current { color: #fff; }
.site-footer__lang a.is-current { font-weight: 700; }

.site-footer__bottom {
	max-width: var(--maxw); margin-inline: auto;
	padding: 22px var(--gutter) 30px;
	border-top: 1px solid rgba(255,255,255,.16);
	display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.copyright { font-size: 12px; color: rgba(255,255,255,.55); letter-spacing: .04em; }
.totop { font-family: var(--ff-en); font-size: 11px; font-weight: 700; letter-spacing: .16em; color: rgba(255,255,255,.7); }
.totop:hover { color: #fff; }

/* ------------------------------------------------------------------
   15. スクロール表示アニメーション
   ---------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); }
.reveal.is-in {
	opacity: 1; transform: none;
	transition: opacity .8s var(--ease), transform .8s var(--ease);
}
@media (prefers-reduced-motion: reduce) {
	.reveal { opacity: 1; transform: none; }
}

/* ------------------------------------------------------------------
   16. レスポンシブ
   ---------------------------------------------------------------- */
@media (max-width: 1080px) {
	.about__top { grid-template-columns: 1fr; }
	.founder { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); }
	.contact { grid-template-columns: 1fr; }
	.brands { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 960px) {
	:root { --header-h: 66px; }

	.navtoggle { display: block; }
	.gnav {
		position: fixed; inset: 0 0 0 auto; z-index: 95;
		width: min(400px, 88vw);
		flex-direction: column; align-items: stretch; justify-content: flex-start;
		gap: 0;
		padding: calc(var(--header-h) + 24px) 30px 40px;
		background: #fff;
		transform: translateX(100%);
		transition: transform .38s var(--ease);
		overflow-y: auto;
	}
	.gnav.is-open { transform: translateX(0); }
	.gnav__list { flex-direction: column; align-items: stretch; gap: 0; }
	.gnav__list li { border-bottom: 1px solid var(--line); }
	.gnav__list a { display: block; padding: 18px 2px; color: var(--ink); font-size: 15px; }
	.gnav__list a::after { display: none; }
	.gnav__cta { justify-content: center; height: 56px; margin-top: 28px; order: 3; }

	.langswitch { order: 2; margin-top: 28px; }
	.langswitch__toggle { display: none; }
	.langswitch__list {
		position: static; opacity: 1; visibility: visible; transform: none;
		box-shadow: none; border: 1px solid var(--line); padding: 6px;
		display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 4px;
	}
	.langswitch__list a { padding: 13px 12px; }

	.bizcard, .bizcard:nth-child(even) { grid-template-columns: 1fr; }
	.bizcard:nth-child(even) .bizcard__media { order: 0; }
	.bizcard__media { min-height: 220px; aspect-ratio: 16 / 9; }

	.creed__foot { grid-template-columns: 1fr; gap: 18px; }
	.reasonlist { grid-template-columns: 1fr; }
	.makers { grid-template-columns: 1fr; }
	.phases { grid-template-columns: 1fr; gap: 28px; }
	.founder { grid-template-columns: 1fr; }
	.founder__figure { max-width: 380px; }
	.about__points { grid-template-columns: 1fr; }
	.about__visual { aspect-ratio: 16 / 9; }
	.site-footer__inner { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
	.partners__group { grid-template-columns: 1fr; gap: 16px; align-items: start; }
	.partners__list { grid-template-columns: 1fr; }
	.statlist { grid-template-columns: 1fr; }
	.brands { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.profile__row { grid-template-columns: 1fr; gap: 6px; }
	.cform__cols { grid-template-columns: 1fr; }
	.cform__cols .cform__row + .cform__row { margin-top: 24px; }
	.hero__actions .btn { width: 100%; }
	.btn--wide { max-width: none; }
	.site-footer__bottom { flex-direction: column; align-items: flex-start; }
	.contact__form { padding: 26px 20px; }
}

/* ------------------------------------------------------------------
   17. 印刷
   ---------------------------------------------------------------- */
@media print {
	.site-header, .hero__scroll, .navtoggle, .navscrim, .contact__form { display: none !important; }
	body.ndm-body { color: #000; }
	.section { padding-block: 24px; page-break-inside: avoid; }
}

/* ------------------------------------------------------------------
   18. 2カラム内の見出しサイズ調整
   （幅の狭いカラムで日本語見出しが不自然に折り返さないようにする）
   ---------------------------------------------------------------- */
.founder .sectitle,
.makers .sectitle,
.contact .sectitle {
	font-size: clamp(24px, 3.2vw, 38px);
}
@media (max-width: 960px) {
	.founder .sectitle,
	.makers .sectitle,
	.contact .sectitle {
		font-size: clamp(26px, 4.4vw, 42px);
	}
}

/* 英語版はセクションラベルの英字と補足が重複するため、補足を隠す */
html[data-lang="en"] .seclabel__ja { display: none; }

/* 極小画面ではブランド名の日本語表記を省略し、メニューボタンと干渉させない */
@media (max-width: 420px) {
	.brand__sub { display: none; }
}
