/* ==================================================================
   RAILIX SECURITY — main.css
   鉄道警備会社コーポレートサイト
   ================================================================== */

/* ---------- Design tokens ---------- */
:root {
	--gold:        #f3a300;
	--gold-light:  #ffbe2e;
	--gold-dark:   #d98b00;
	--ink:         #16191f;   /* 黒に近い濃紺 */
	--ink-soft:    #232831;
	--text:        #2b2f36;
	--muted:       #6b727c;
	--line:        #e3e6ea;
	--bg:          #ffffff;
	--bg-alt:      #eef1f4;
	--bg-soft:     #f6f7f9;
	--white:       #ffffff;

	--radius:      14px;
	--radius-sm:   8px;
	--shadow:      0 18px 40px -18px rgba(20, 25, 35, .28);
	--shadow-sm:   0 8px 24px -12px rgba(20, 25, 35, .25);

	--container:   1180px;
	--gutter:      clamp(18px, 4vw, 40px);

	--ease:        cubic-bezier(.22, .61, .36, 1);
	--header-h:    84px;

	--font-ja: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
	--font-en: "Oswald", "Noto Sans JP", sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--font-ja);
	color: var(--text);
	background: var(--bg);
	line-height: 1.8;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

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

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

.section { padding-block: clamp(56px, 8vw, 110px); }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0,0,0,0);
	white-space: nowrap; border: 0;
}
.skip-link:focus {
	position: fixed; top: 8px; left: 8px;
	width: auto; height: auto; clip: auto;
	z-index: 9999; padding: 10px 16px;
	background: var(--ink); color: #fff; border-radius: 6px;
}

.arrow {
	display: inline-block;
	margin-left: .4em;
	color: var(--gold);
	transform: translateX(0);
	transition: transform .25s var(--ease);
	font-weight: 700;
}

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	gap: .4em;
	padding: 15px 34px;
	border-radius: 999px;
	font-weight: 700;
	letter-spacing: .04em;
	transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.btn .arrow { color: inherit; }
.btn--solid {
	background: var(--ink);
	color: #fff;
	box-shadow: var(--shadow-sm);
}
.btn--solid:hover { transform: translateY(-3px); box-shadow: 0 16px 32px -14px rgba(20,25,35,.55); }
.btn:hover .arrow { transform: translateX(4px); }

/* ==================================================================
   HEADER
   ================================================================== */
.site-header {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 1000;
	background: rgba(255,255,255,.92);
	backdrop-filter: saturate(180%) blur(12px);
	-webkit-backdrop-filter: saturate(180%) blur(12px);
	border-bottom: 1px solid transparent;
	transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.site-header.is-scrolled {
	box-shadow: 0 6px 24px -16px rgba(20,25,35,.4);
	border-bottom-color: var(--line);
}
.site-header__inner {
	display: flex;
	align-items: center;
	gap: 20px;
	height: var(--header-h);
	max-width: 1280px;
	margin-inline: auto;
	padding-inline: var(--gutter);
}

/* Brand / logo */
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__img { height: clamp(40px, 4.4vw, 54px); width: auto; display: block; }
.brand__badge { height: clamp(42px, 4.6vw, 56px); width: auto; display: block; }
.brand__mark { color: var(--ink); display: inline-flex; }
.brand__mark svg path { transition: fill .3s var(--ease); }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
	font-family: var(--font-en);
	font-weight: 700;
	font-size: 26px;
	letter-spacing: .06em;
	color: var(--ink);
}
.brand__sub {
	font-family: var(--font-en);
	font-size: 11px;
	letter-spacing: .42em;
	color: var(--gold);
	margin-top: 3px;
}

.brand--light .brand__mark,
.brand--light .brand__name { color: #fff; }

/* Nav */
.site-nav { margin-left: auto; }
.site-nav__list { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); }
.site-nav__list > .menu-item > a {
	display: flex;
	flex-direction: column;
	align-items: center;
	line-height: 1.2;
	padding: 8px 4px;
	position: relative;
	font-weight: 700;
	color: var(--ink);
}
.menu-ja { font-size: 15px; }
.menu-en { font-family: var(--font-en); font-size: 10px; letter-spacing: .14em; color: var(--muted); font-weight: 500; margin-top: 2px; }
.site-nav__list > .menu-item > a::after {
	content: "";
	position: absolute;
	left: 50%; bottom: 0;
	width: 0; height: 2px;
	background: var(--gold);
	transform: translateX(-50%);
	transition: width .28s var(--ease);
}
.site-nav__list > .menu-item > a:hover { color: var(--gold-dark); }
.site-nav__list > .menu-item > a:hover::after { width: 100%; }
.site-nav__list > .menu-item.current-menu-item > a::after { width: 100%; }

/* Contact button */
.site-header__cta { flex-shrink: 0; }
.btn-contact {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 22px;
	border-radius: 10px;
	background: linear-gradient(135deg, var(--ink), var(--ink-soft));
	color: #fff;
	box-shadow: var(--shadow-sm);
	transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.btn-contact__icon {
	display: inline-flex;
	color: var(--gold);
}
.btn-contact__text { display: flex; flex-direction: column; line-height: 1.1; }
.btn-contact__ja { font-size: 14px; font-weight: 700; }
.btn-contact__en { font-family: var(--font-en); font-size: 10px; letter-spacing: .2em; color: var(--gold-light); }
.btn-contact:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -14px rgba(20,25,35,.55); }

/* Hamburger */
.nav-toggle {
	display: none;
	width: 46px; height: 46px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 6px;
	margin-left: auto;
	border-radius: 10px;
}
.nav-toggle__bar {
	width: 26px; height: 2px;
	background: var(--ink);
	border-radius: 2px;
	transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ==================================================================
   HERO
   ================================================================== */
.hero {
	position: relative;
	min-height: clamp(560px, 92vh, 860px);
	padding-top: var(--header-h);
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow: hidden;
	color: var(--ink);
}
.hero__bg {
	position: absolute; inset: 0;
	background-color: #e9edf2;
	background-image: url(../images/hero.png);
	background-size: cover;
	background-position: center right;
	background-repeat: no-repeat;
}
/* 斜めのスピードライン演出 */
.hero__bg::after {
	content: "";
	position: absolute; inset: 0;
	background:
		repeating-linear-gradient(115deg, rgba(255,255,255,0) 0 40px, rgba(255,255,255,.45) 40px 42px);
	mask-image: linear-gradient(90deg, transparent, #000 60%);
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 60%);
	opacity: .12;
}
.hero__overlay {
	position: absolute; inset: 0;
	background: linear-gradient(90deg, rgba(255,255,255,.85) 0%, rgba(255,255,255,.4) 45%, transparent 70%);
}
.hero__inner {
	position: relative;
	z-index: 2;
	flex: 1;
	display: flex;
	align-items: center;
	padding-block: clamp(40px, 6vw, 80px);
}
.hero__content { max-width: 640px; }
.hero__title {
	font-weight: 900;
	font-size: clamp(40px, 8vw, 92px);
	line-height: 1.08;
	letter-spacing: .01em;
	text-shadow: 0 2px 18px rgba(255,255,255,.6);
}
.hero__line { display: block; white-space: nowrap; }
.hero__line--accent {
	color: var(--gold);
	-webkit-text-fill-color: var(--gold);
}
.hero__lead {
	margin-top: 18px;
	font-family: var(--font-en);
	font-weight: 600;
	font-size: clamp(15px, 2.4vw, 24px);
	letter-spacing: .08em;
	color: var(--ink-soft);
}
.hero__lead em { color: var(--gold-dark); }
.hero__desc {
	margin-top: 22px;
	font-size: clamp(13px, 1.5vw, 16px);
	line-height: 2;
	color: var(--text);
	font-weight: 500;
}
.hero__badge {
	position: absolute;
	right: clamp(40px, 9vw, 150px);
	bottom: 16%;
	width: clamp(120px, 18vw, 200px);
	height: auto;
	color: var(--ink);
	opacity: .85;
	animation: railix-float 5s ease-in-out infinite;
}
.hero__badge svg { width: 100%; height: auto; }
@keyframes railix-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

/* News ticker（斜めカット） */
.hero__news {
	position: relative;
	z-index: 3;
	margin-top: auto;
}
.hero__news-inner {
	display: flex;
	align-items: center;
	gap: clamp(14px, 2vw, 28px);
	background: rgba(255,255,255,.92);
	box-shadow: var(--shadow-sm);
	border-radius: 12px;
	padding: 16px clamp(18px, 3vw, 30px);
	margin-bottom: clamp(20px, 4vw, 40px);
}
.hero__news-label {
	font-family: var(--font-en);
	font-weight: 700;
	letter-spacing: .14em;
	color: #fff;
	background: var(--ink);
	padding: 8px 20px;
	border-radius: 6px;
	flex-shrink: 0;
	position: relative;
}
.hero__news-label::before {
	content: "";
	position: absolute;
	right: -8px; top: 50%;
	transform: translateY(-50%);
	border: 6px solid transparent;
	border-left-color: var(--ink);
}
.hero__news-date { font-family: var(--font-en); color: var(--muted); flex-shrink: 0; letter-spacing: .04em; }
.hero__news-title {
	flex: 1;
	min-width: 0;
	font-weight: 500;
	color: var(--text);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
a.hero__news-title:hover { color: var(--gold-dark); }
.hero__news-more {
	flex-shrink: 0;
	font-weight: 700;
	font-size: 14px;
	color: var(--ink);
}
.hero__news-more:hover { color: var(--gold-dark); }

/* ==================================================================
   SECTION HEAD
   ================================================================== */
.section-head { margin-bottom: clamp(30px, 4vw, 54px); position: relative; padding-left: 18px; }
.section-head::before {
	content: "";
	position: absolute;
	left: 0; top: 4px; bottom: 4px;
	width: 5px;
	background: linear-gradient(var(--gold), var(--gold-dark));
	border-radius: 3px;
}
.section-head__en {
	display: block;
	font-family: var(--font-en);
	font-weight: 600;
	letter-spacing: .2em;
	color: var(--gold-dark);
	font-size: 14px;
}
.section-head__en--light { color: var(--gold-light); }
.section-head__ja {
	font-size: clamp(26px, 4vw, 40px);
	font-weight: 900;
	color: var(--ink);
	line-height: 1.3;
	margin-top: 4px;
}
.section-head__ja .num { color: var(--gold); }
.section-head--row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
}

/* ==================================================================
   SERVICE
   ================================================================== */
.service { background: var(--bg); }
.service__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(20px, 3vw, 34px);
}
.service-card {
	background: var(--white);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	overflow: hidden;
	transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.service-card__link { display: block; height: 100%; }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 28px 50px -22px rgba(20,25,35,.4); }
.service-card__media {
	position: relative;
	aspect-ratio: 16 / 10;
	background: linear-gradient(135deg, #2a3038, #4a5562);
	background-size: cover;
	background-position: center;
}
.service-card__media::after {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(180deg, transparent 40%, rgba(20,25,35,.45));
}
.service-card__no {
	position: absolute;
	top: 14px; left: 16px;
	z-index: 2;
	font-family: var(--font-en);
	font-weight: 700;
	font-size: 30px;
	color: var(--ink);
	background: var(--gold);
	width: 54px; height: 44px;
	display: grid; place-items: center;
	border-radius: 6px;
	box-shadow: 0 6px 14px -6px rgba(0,0,0,.5);
}
.service-card__body { padding: 26px clamp(20px, 2.4vw, 30px) 30px; }
.service-card__title {
	font-size: clamp(19px, 2vw, 23px);
	font-weight: 800;
	color: var(--ink);
	margin-bottom: 12px;
}
.service-card__desc { font-size: 14px; color: var(--muted); line-height: 1.9; }
.service-card__more {
	display: inline-flex;
	align-items: center;
	margin-top: 18px;
	font-weight: 700;
	font-size: 14px;
	color: var(--ink);
}
.service-card:hover .service-card__more .arrow { transform: translateX(5px); }

/* ==================================================================
   RECRUIT
   ================================================================== */
.recruit {
	position: relative;
	overflow: hidden;
	color: var(--ink);
}
.recruit__bg {
	position: absolute; inset: 0;
	background-color: #e9edf2;
	background-image:
		linear-gradient(100deg, rgba(238,241,244,.96) 0%, rgba(238,241,244,.8) 32%, rgba(238,241,244,.28) 52%, rgba(238,241,244,0) 70%),
		url(../images/bg-recruit.png);
	background-size: cover;
	background-position: center 28%;
	background-repeat: no-repeat;
}
.recruit__bg::after {
	content: "";
	position: absolute; inset: 0;
	background: repeating-linear-gradient(120deg, rgba(0,0,0,0) 0 60px, rgba(0,0,0,.02) 60px 62px);
}
.recruit__overlay { display: none; }
.recruit__inner {
	position: relative;
	z-index: 2;
	min-height: clamp(300px, 30vw, 430px);
	display: flex;
	align-items: center;
	padding-block: clamp(40px, 5vw, 64px);
}
.recruit__text { max-width: 640px; }
.recruit .section-head__en--light { color: var(--gold-dark); }
.recruit__title { font-size: clamp(30px, 5vw, 52px); font-weight: 900; line-height: 1.2; margin: 6px 0 14px; color: var(--ink); }
.recruit__lead { font-size: clamp(15px, 2vw, 20px); color: var(--muted); margin-bottom: 30px; }

/* ==================================================================
   REASON
   ================================================================== */
.reason { background: var(--white); padding-block: clamp(46px, 6vw, 80px); }
.reason__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: clamp(16px, 2vw, 26px);
}
.reason-card {
	position: relative;
	padding: clamp(18px, 2vw, 26px) clamp(18px, 2vw, 26px);
	text-align: center;
	background: transparent;
}
/* 斜めの平行四辺形カード（背景のみ skew、テキストは水平のまま） */
.reason-card::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 6px;
	box-shadow: var(--shadow-sm);
	transform: skewX(-10deg);
	transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.reason-card:hover::before {
	border-color: var(--gold);
	box-shadow: var(--shadow);
}
.reason-card > * { position: relative; z-index: 1; }
.reason-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 12px;
	background: none;
}
.reason-card__icon svg { width: clamp(42px, 4vw, 50px); height: auto; }
.reason-card__title { font-size: clamp(17px, 1.8vw, 20px); font-weight: 800; color: var(--ink); margin-bottom: 10px; }
.reason-card__desc { font-size: 13px; color: var(--muted); line-height: 1.8; }

/* ==================================================================
   QUALIFY CTA
   ================================================================== */
.qualify {
	position: relative;
	overflow: hidden;
	color: var(--ink);
	padding-block: clamp(40px, 6vw, 70px);
}
/* 明るいシルバー背景 */
.qualify__bg {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, #eef1f4 0%, #e6eaef 100%);
}
/* 列車は右端のパネルにして、マスクでグレー背景へ自然にフェード */
.qualify__overlay {
	display: block;
	position: absolute;
	top: 0; bottom: 0; right: 0;
	width: clamp(300px, 42vw, 620px);
	background-image: url(../images/bg-license.png);
	background-size: auto 132%;
	background-position: right center;
	background-repeat: no-repeat;
	-webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.15) 35%, rgba(0,0,0,.6) 60%, #000 85%);
	mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.15) 35%, rgba(0,0,0,.6) 60%, #000 85%);
	z-index: 1;
	pointer-events: none;
}
/* バナー全体の白い枠線 */
.qualify::after {
	content: "";
	position: absolute;
	inset: clamp(10px, 1.4vw, 16px);
	border: 2px solid rgba(255, 255, 255, .92);
	border-radius: 6px;
	pointer-events: none;
	z-index: 4;
}
.qualify__inner {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: clamp(28px, 5vw, 80px);
	flex-wrap: wrap;
}
.qualify__left { flex: 1 1 380px; }
.qualify__title { font-size: clamp(24px, 3.4vw, 40px); font-weight: 900; line-height: 1.3; color: var(--ink); }
.qualify__title .accent { color: var(--gold-dark); }
.qualify__badge {
	display: inline-block;
	margin: 18px 0 14px;
	background: var(--gold);
	color: var(--ink);
	font-weight: 800;
	padding: 8px 22px;
	border-radius: 6px;
	font-size: clamp(15px, 2vw, 19px);
	transform: skewX(-10deg);
	box-shadow: 0 8px 18px -10px rgba(243,163,0,.7);
}
.qualify__badge,
.qualify__list li { will-change: transform; }
.qualify__desc { color: var(--muted); font-size: 15px; line-height: 1.9; }

/* チェックリスト：斜めのピルを段違いに配置 */
.qualify__list { display: grid; gap: 12px; flex: 0 1 auto; }
.qualify__list li {
	display: flex;
	align-items: center;
	gap: 12px;
	width: fit-content;
	font-weight: 700;
	font-size: clamp(14px, 1.6vw, 17px);
	background: rgba(255,255,255,.92);
	border: 1px solid var(--line);
	border-left: 4px solid var(--gold);
	padding: 12px 24px 12px 18px;
	border-radius: 4px;
	box-shadow: var(--shadow-sm);
	transform: skewX(-12deg);
}
/* 段違い：上ほど右、下が一番左 */
.qualify__list li:nth-child(1) { margin-left: clamp(48px, 8vw, 112px); }
.qualify__list li:nth-child(2) { margin-left: clamp(24px, 4vw, 56px); }
.qualify__list li:nth-child(3) { margin-left: 0; }
.qualify__list .check {
	display: grid; place-items: center;
	width: 24px; height: 24px;
	background: var(--gold);
	color: var(--ink);
	border-radius: 5px;
	font-size: 13px; font-weight: 900;
	flex-shrink: 0;
	transform: skewX(12deg);
}
.qualify__txt { display: inline-block; transform: skewX(12deg); }

/* ==================================================================
   BOTTOM (COMPANY + NEWS)
   ================================================================== */
.bottom { background: var(--bg); }
.bottom__grid {
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	gap: clamp(34px, 5vw, 70px);
}
/* Company */
.company__card {
	display: grid;
	grid-template-columns: minmax(130px, 0.55fr) 1.45fr;
	gap: clamp(18px, 2.5vw, 34px);
	align-items: center;
}
.company__media {
	aspect-ratio: 16 / 9;
	border-radius: var(--radius);
	background-color: #aab3bf;
	background-image: url(../images/bg-company.png);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}
.company__links { display: grid; gap: 2px; align-content: center; }
.company__links a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 4px;
	border-bottom: 1px solid var(--line);
	font-weight: 700;
	font-size: clamp(15px, 1.6vw, 17px);
	color: var(--ink);
	transition: color .25s var(--ease), padding .25s var(--ease);
}
.company__links a .arrow { margin-left: 0; }
.company__links a:hover { color: var(--gold-dark); padding-left: 10px; }

/* News list */
.news__more { font-weight: 700; font-size: 14px; color: var(--ink); white-space: nowrap; }
.news__more:hover { color: var(--gold-dark); }
.news__list { border-top: 1px solid var(--line); }
.news__item { border-bottom: 1px solid var(--line); }
.news__item a {
	display: flex;
	align-items: baseline;
	gap: 22px;
	padding: 20px 6px;
	transition: background .25s var(--ease), padding .25s var(--ease);
}
.news__item a:hover { background: var(--bg-soft); padding-left: 16px; }
.news__date { font-family: var(--font-en); color: var(--gold-dark); font-weight: 600; letter-spacing: .04em; flex-shrink: 0; }
.news__title { font-weight: 500; color: var(--text); }
.news__item a:hover .news__title { color: var(--ink); }
.news__list--page .news__item a { padding-block: 22px; }

/* Pagination */
.pagination { margin-top: 40px; }
.pagination .nav-links { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.pagination a, .pagination .current {
	display: grid; place-items: center;
	min-width: 44px; height: 44px;
	padding: 0 12px;
	border-radius: 8px;
	border: 1px solid var(--line);
	font-weight: 700;
}
.pagination .current { background: var(--ink); color: #fff; border-color: var(--ink); }
.no-posts { color: var(--muted); }

/* ==================================================================
   FOOTER
   ================================================================== */
.site-footer { background: var(--ink); color: #fff; }
.site-footer__inner {
	display: flex;
	align-items: center;
	gap: clamp(20px, 3vw, 40px);
	flex-wrap: wrap;
	padding-block: clamp(36px, 5vw, 60px);
}
.site-footer__nav { margin-inline: auto; }
.site-footer__list { display: flex; flex-wrap: wrap; gap: 8px 26px; }
.site-footer__list a { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.82); }
.site-footer__list a:hover { color: var(--gold); }
.site-footer__copy {
	border-top: 1px solid rgba(255,255,255,.1);
	padding: 18px var(--gutter);
	text-align: center;
}
.site-footer__copy p { font-size: 12px; color: rgba(255,255,255,.55); letter-spacing: .04em; }

/* To-top */
.to-top {
	position: fixed;
	right: 22px; bottom: 22px;
	z-index: 900;
	width: 50px; height: 50px;
	border-radius: 12px;
	background: var(--gold);
	color: var(--ink);
	font-size: 20px; font-weight: 900;
	box-shadow: var(--shadow-sm);
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s, background .25s;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--gold-light); transform: translateY(-3px); }

/* ==================================================================
   REVEAL ANIMATION
   ================================================================== */
[data-reveal] {
	opacity: 0;
	transform: translateY(34px);
	transition: opacity .7s var(--ease), transform .7s var(--ease);
	transition-delay: var(--reveal-delay, 0ms);
	will-change: opacity, transform;
}
[data-reveal].is-revealed { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
	* { animation: none !important; scroll-behavior: auto !important; }
	[data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ==================================================================
   RESPONSIVE
   ================================================================== */

/* ---- Tablet / 小型デスクトップ ---- */
@media (max-width: 1024px) {
	:root { --header-h: 72px; }

	/* backdrop-filter は固定子要素（ドロワー / CTA）の包含ブロックを
	   生成してしまうため、ドロワーを使うモバイルでは無効化する */
	.site-header {
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
		background: rgba(255,255,255,.96);
	}

	.site-nav,
	.site-header__cta { /* ヘッダー内ナビ・CTAをドロワーへ */
		display: none;
	}
	.nav-toggle { display: flex; }

	/* ドロワー */
	.site-nav {
		display: block;
		position: fixed;
		inset: var(--header-h) 0 0 auto;
		width: min(340px, 86vw);
		margin: 0;
		padding: 30px 26px calc(30px + env(safe-area-inset-bottom));
		background: #fff;
		box-shadow: -20px 0 50px -20px rgba(20,25,35,.4);
		transform: translateX(105%);
		transition: transform .38s var(--ease);
		overflow-y: auto;
		z-index: 1001;
	}
	body.nav-open .site-nav { transform: translateX(0); }
	.site-nav__list { flex-direction: column; align-items: stretch; gap: 4px; }
	.site-nav__list > .menu-item > a {
		flex-direction: row;
		align-items: baseline;
		gap: 12px;
		justify-content: flex-start;
		padding: 16px 6px;
		border-bottom: 1px solid var(--line);
	}
	.site-nav__list > .menu-item > a::after { display: none; }
	.menu-ja { font-size: 18px; }
	.menu-en { margin-top: 0; font-size: 11px; }

	/* ドロワー内に表示するCTA */
	.site-header__cta {
		display: block;
		position: fixed;
		inset: auto 0 0 auto;
		width: min(340px, 86vw);
		padding: 0 26px calc(26px + env(safe-area-inset-bottom));
		z-index: 1002;
		transform: translateX(105%);
		transition: transform .38s var(--ease);
		pointer-events: none;
	}
	body.nav-open .site-header__cta { transform: translateX(0); pointer-events: auto; }
	.site-header__cta .btn-contact { width: 100%; justify-content: center; padding: 16px; }

	/* オーバーレイ背景（ヘッダー / ドロワーより下に敷く） */
	body.nav-open::after {
		content: "";
		position: fixed; inset: 0;
		background: rgba(20,25,35,.45);
		z-index: 999;
		animation: railix-fade .3s var(--ease);
	}
	@keyframes railix-fade { from { opacity: 0 } to { opacity: 1 } }

	body.nav-open { overflow: hidden; }

	.service__grid { grid-template-columns: repeat(2, 1fr); }
	.reason__grid { grid-template-columns: repeat(2, 1fr); }
	.bottom__grid { grid-template-columns: 1fr; }
}

/* ---- スマートフォン ---- */
@media (max-width: 680px) {
	body { font-size: 15px; }

	.hero { min-height: 78vh; text-align: left; }
	.hero__inner { align-items: flex-start; padding-top: 30px; }
	.hero__title { font-size: clamp(38px, 13vw, 58px); }
	.hero__desc br { display: none; }
	.hero__badge { display: none; }

	.hero__news-inner { flex-wrap: wrap; gap: 8px 14px; padding: 14px 16px; }
	.hero__news-title { white-space: normal; flex-basis: 100%; order: 3; }
	.hero__news-more { margin-left: auto; }

	.service__grid { grid-template-columns: 1fr; }
	.service-card { max-width: 460px; margin-inline: auto; width: 100%; }

	.reason__grid { grid-template-columns: 1fr; }
	.reason-card {
		display: grid;
		grid-template-columns: 64px 1fr;
		grid-template-areas: "icon title" "icon desc";
		align-items: center;
		column-gap: 18px;
		row-gap: 4px;
		text-align: left;
		padding: 20px 22px;
	}
	.reason-card::before { transform: none; }
	.reason-card__icon { grid-area: icon; align-self: center; margin-bottom: 0; }
	.reason-card__title { grid-area: title; align-self: end; margin-bottom: 0; }
	.reason-card__desc  { grid-area: desc; align-self: start; }

	.qualify__inner { flex-direction: column; align-items: stretch; }
	.qualify__left { flex: 0 1 auto; }
	.qualify__list { flex: 0 1 auto; }
	/* モバイルでは斜め・段違いを解除して読みやすく */
	.qualify__list li { transform: none; width: auto; }
	.qualify__list li:nth-child(1),
	.qualify__list li:nth-child(2),
	.qualify__list li:nth-child(3) { margin-left: 0; }
	.qualify__list .check,
	.qualify__txt { transform: none; }
	/* モバイルでは列車を非表示にして文字を最優先（明るいグレー1色） */
	.qualify__overlay { display: none; }

	.company__card { grid-template-columns: 1fr; gap: 18px; }
	.company__media { order: -1; }

	.section-head--row { flex-direction: column; align-items: flex-start; gap: 8px; }

	.news__item a { flex-direction: column; gap: 4px; padding: 16px 6px; }

	.site-footer__inner { flex-direction: column; text-align: center; }
	.site-footer__list { justify-content: center; }

	.to-top { right: 14px; bottom: 14px; width: 46px; height: 46px; }
}

/* ---- 極小デバイス ---- */
@media (max-width: 380px) {
	.brand__name { font-size: 22px; }
	.hero__title { font-size: 40px; }
}

/* ==================================================================
   PAGE: TRAIN WATCHMAN（列車見張員）
   ================================================================== */
.accent { color: var(--gold-dark); }

/* セクション見出し（番号 + EN + JA） */
.tw-head { display: flex; align-items: center; gap: clamp(10px, 1.6vw, 20px); margin-bottom: clamp(28px, 4vw, 48px); }
.tw-head__num {
	font-family: var(--font-en); font-weight: 700; line-height: .78;
	font-size: clamp(54px, 8vw, 100px);
	color: rgba(22, 25, 31, .08);
	letter-spacing: -.02em;
}
.tw-head__en { display: block; font-family: var(--font-en); font-weight: 600; letter-spacing: .2em; color: var(--gold-dark); font-size: 13px; }
.tw-head__ja { font-size: clamp(26px, 4vw, 40px); font-weight: 900; color: var(--ink); line-height: 1.25; margin-top: 4px; }
.tw-head--light .tw-head__num { color: rgba(255, 255, 255, .14); }
.tw-head--light .tw-head__en { color: var(--gold-light); }
.tw-head--light .tw-head__ja { color: #fff; }
.tw-head--center { flex-direction: column; align-items: center; text-align: center; gap: 2px; margin-bottom: clamp(14px, 2vw, 22px); }

/* セクション地色 */
.tw-sec { background: var(--bg); }
.tw-sec--alt { background: var(--bg-alt); }

/* 汎用カード */
.tw-grid { display: grid; gap: clamp(16px, 2vw, 26px); }
.tw-grid--3 { grid-template-columns: repeat(3, 1fr); }
.tw-grid--4 { grid-template-columns: repeat(4, 1fr); }
.tw-grid--6 { grid-template-columns: repeat(3, 1fr); }
.tw-card {
	background: #fff; border: 1px solid var(--line); border-radius: 10px;
	padding: clamp(24px, 3vw, 34px) clamp(18px, 2vw, 26px);
	text-align: center; box-shadow: var(--shadow-sm);
	transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.tw-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(243, 163, 0, .5); }
.tw-card__icon { display: inline-flex; margin-bottom: 16px; }
.tw-ico { width: clamp(40px, 4vw, 48px); height: auto; }
.tw-card__title { font-size: clamp(15px, 1.7vw, 19px); font-weight: 800; color: var(--ink); margin-bottom: 10px; line-height: 1.4; }
.tw-card__desc { font-size: 13px; color: var(--muted); line-height: 1.85; }

/* 01 HERO */
.tw-hero {
	position: relative; overflow: hidden; color: var(--ink);
	padding-top: calc(var(--header-h) + clamp(40px, 6vw, 80px));
	padding-bottom: clamp(50px, 7vw, 96px);
}
.tw-hero__bg {
	position: absolute; inset: 0;
	background-color: #e9edf2;
	background-image: url(../images/hero.png);
	background-size: cover; background-position: center right; background-repeat: no-repeat;
}
.tw-hero__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,.93) 0%, rgba(255,255,255,.6) 46%, rgba(255,255,255,0) 76%); }
.tw-hero__inner { position: relative; z-index: 2; }
.tw-hero__title { font-size: clamp(28px, 4.6vw, 50px); font-weight: 900; line-height: 1.3; margin: 8px 0 20px; text-shadow: 0 2px 14px rgba(255,255,255,.5); }
.tw-hero__desc { max-width: 600px; font-size: clamp(13px, 1.4vw, 15px); line-height: 2; color: var(--text); font-weight: 500; }

/* SPLIT（資格 / ライセンス） */
.tw-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 60px); align-items: center; margin-bottom: clamp(34px, 5vw, 60px); }
.tw-split__media img { width: 100%; height: auto; display: block; }
.tw-split__title { font-size: clamp(20px, 2.6vw, 30px); font-weight: 900; color: var(--ink); line-height: 1.4; margin-bottom: 16px; }
.tw-split__desc { font-size: 14px; color: var(--muted); line-height: 1.9; margin-bottom: 10px; }

/* ライセンスカード フォールバック */
.tw-license {
	aspect-ratio: 16 / 10; border-radius: 14px; padding: clamp(20px, 3vw, 30px);
	background: linear-gradient(135deg, #fdfdfd, #e7ebef);
	border: 1px solid var(--line); box-shadow: var(--shadow);
	display: flex; flex-direction: column;
}
.tw-license__logo { font-family: var(--font-en); font-weight: 700; font-size: clamp(15px, 2vw, 20px); letter-spacing: .04em; color: var(--ink); }
.tw-license__logo em { color: var(--gold-dark); }
.tw-license__name { font-size: clamp(18px, 2.4vw, 26px); font-weight: 900; color: var(--ink); margin-top: auto; }
.tw-license__en { font-family: var(--font-en); font-size: 11px; letter-spacing: .12em; color: var(--muted); margin-top: 4px; line-height: 1.4; }
.tw-license__foot { display: flex; align-items: baseline; gap: 10px; margin-top: 14px; border-top: 1px dashed var(--line); padding-top: 10px; }
.tw-license__label { font-size: 11px; color: var(--muted); }
.tw-license__date { font-family: var(--font-en); font-weight: 700; color: var(--ink); font-size: clamp(15px, 2vw, 19px); margin-left: auto; }

/* BAND（03 列車 / 05 人物） */
.tw-band { position: relative; overflow: hidden; padding-block: clamp(50px, 7vw, 96px); }
.tw-band__bg { position: absolute; inset: 0; background-size: cover; background-repeat: no-repeat; }
.tw-band--train { color: var(--ink); }
.tw-band--train .tw-band__bg {
	background-color: #e9edf2;
	background-image:
		linear-gradient(95deg, rgba(238,241,244,.96) 0%, rgba(238,241,244,.8) 38%, rgba(238,241,244,.25) 60%, rgba(238,241,244,0) 80%),
		url(../images/bg-license.png);
	background-position: center, right center;
}
.tw-band--people { color: #fff; }
.tw-band--people .tw-band__bg {
	background-color: var(--ink);
	background-image: url(../images/bg-recruit.png);
	background-position: center;
}
.tw-band__scrim { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(20,25,31,.92) 0%, rgba(20,25,31,.66) 50%, rgba(20,25,31,.5) 100%); }
.tw-band__inner { position: relative; z-index: 2; }
.tw-band__title { font-size: clamp(24px, 3.6vw, 42px); font-weight: 900; line-height: 1.3; margin: 6px 0 16px; }
.tw-band__desc { font-size: clamp(13px, 1.5vw, 16px); line-height: 1.95; color: var(--text); }
.tw-band__desc--light { color: rgba(255,255,255,.85); max-width: 640px; }
.tw-band__cards { position: relative; z-index: 2; margin-top: clamp(28px, 4vw, 44px); }
.tw-band--people .accent { color: var(--gold); }

/* STEPS */
.tw-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 28px); list-style: none; margin: 0; padding: 0; }
.tw-step {
	position: relative; background: #fff; border: 1px solid var(--line); border-radius: 10px;
	padding: clamp(26px, 3vw, 34px) clamp(18px, 2vw, 24px); text-align: center; box-shadow: var(--shadow-sm);
}
.tw-step__no { display: inline-block; font-family: var(--font-en); font-weight: 700; letter-spacing: .1em; color: var(--gold-dark); font-size: 14px; margin-bottom: 12px; }
.tw-step .tw-card__icon { display: block; }
.tw-step__title { font-size: clamp(16px, 1.8vw, 19px); font-weight: 800; color: var(--ink); margin: 6px 0 10px; }
.tw-step:not(:last-child)::after {
	content: ""; position: absolute; top: 50%; right: -16px; width: 11px; height: 11px;
	border-top: 2px solid var(--gold); border-right: 2px solid var(--gold);
	transform: translateY(-50%) rotate(45deg); z-index: 3;
}

/* SUPPORT バナー */
.tw-support { background: linear-gradient(100deg, var(--ink), var(--ink-soft)); color: #fff; padding-block: clamp(26px, 4vw, 42px); }
.tw-support__inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: clamp(18px, 4vw, 50px); }
.tw-support__title { font-size: clamp(20px, 3vw, 32px); font-weight: 900; }
.tw-support .accent { color: var(--gold); }
.tw-support__list { display: flex; flex-wrap: wrap; gap: clamp(16px, 2.5vw, 34px); }
.tw-support__list li { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: clamp(14px, 1.6vw, 17px); }
.tw-support__list .tw-ico { width: 28px; }

/* INTRO（見出し + 説明 2カラム） */
.tw-intro { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 50px); align-items: end; margin-bottom: clamp(30px, 4vw, 50px); }
.tw-intro .tw-head { margin-bottom: 0; }
.tw-intro__desc { font-size: 14px; color: var(--muted); line-height: 1.95; }

/* FAQ */
.tw-faq__lead { text-align: center; color: var(--muted); font-size: 14px; margin-bottom: clamp(24px, 3vw, 38px); }
.tw-faq__outro { text-align: center; color: var(--muted); font-size: 14px; margin-top: clamp(20px, 3vw, 30px); }
.tw-faq__list { max-width: 860px; margin-inline: auto; display: grid; gap: 14px; }
.tw-faq__item { background: #fff; border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow-sm); overflow: hidden; }
.tw-faq__q { display: flex; align-items: center; gap: 12px; padding: 18px 22px; font-weight: 700; color: var(--ink); cursor: pointer; list-style: none; }
.tw-faq__q::-webkit-details-marker { display: none; }
.tw-faq__mark { font-family: var(--font-en); font-weight: 700; color: var(--gold-dark); font-size: 18px; flex-shrink: 0; }
.tw-faq__mark--a { color: var(--ink); }
.tw-faq__toggle { margin-left: auto; width: 11px; height: 11px; border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted); transform: rotate(45deg); transition: transform .3s var(--ease); flex-shrink: 0; }
.tw-faq__item[open] .tw-faq__toggle { transform: rotate(-135deg); }
.tw-faq__a { display: flex; gap: 12px; padding: 0 22px 20px; color: var(--muted); font-size: 14px; line-height: 1.9; }

/* TRAIN WATCHMAN レスポンシブ */
@media (max-width: 1024px) {
	.tw-grid--4 { grid-template-columns: repeat(2, 1fr); }
	.tw-grid--6 { grid-template-columns: repeat(2, 1fr); }
	.tw-steps { grid-template-columns: repeat(2, 1fr); }
	.tw-step:not(:last-child)::after { display: none; }
}
@media (max-width: 680px) {
	.tw-grid--3, .tw-grid--4, .tw-grid--6, .tw-steps { grid-template-columns: 1fr; }
	.tw-split { grid-template-columns: 1fr; }
	.tw-split__media { max-width: 420px; margin-inline: auto; }
	.tw-intro { grid-template-columns: 1fr; align-items: start; gap: 14px; }
	.tw-head__num { font-size: clamp(46px, 15vw, 70px); }
	.tw-support__inner { flex-direction: column; text-align: center; }
	.tw-support__list { justify-content: center; }
	/* モバイルは画像を薄くして本文を読みやすく */
	.tw-hero__overlay { background: linear-gradient(180deg, rgba(255,255,255,.88) 0%, rgba(255,255,255,.74) 100%); }
}

/* ==================================================================
   PAGE: RECRUITS（採用情報）
   ================================================================== */
/* ページヘッダー帯 */
.rec-pagehead {
	position: relative; overflow: hidden;
	background: linear-gradient(100deg, var(--ink), var(--ink-soft));
	color: #fff;
	padding-top: calc(var(--header-h) + clamp(26px, 4vw, 48px));
	padding-bottom: clamp(26px, 4vw, 48px);
}
.rec-pagehead__ghost {
	position: absolute; right: 1%; top: 50%; transform: translateY(-38%);
	font-family: var(--font-en); font-weight: 700; line-height: .8;
	font-size: clamp(90px, 17vw, 210px);
	color: rgba(255, 255, 255, .05);
	letter-spacing: .02em; white-space: nowrap; pointer-events: none;
}
.rec-pagehead .container { position: relative; z-index: 2; }
.rec-pagehead__heading { position: relative; padding-left: 18px; }
.rec-pagehead__heading::before { content: ""; position: absolute; left: 0; top: 4px; bottom: 4px; width: 4px; background: var(--gold); border-radius: 3px; }
.rec-pagehead__en { display: block; font-family: var(--font-en); font-weight: 600; letter-spacing: .2em; color: var(--gold-light); font-size: 13px; }
.rec-pagehead__ja { font-size: clamp(28px, 4vw, 42px); font-weight: 900; color: #fff; margin-top: 2px; line-height: 1.2; }
.rec-breadcrumb { margin-top: 12px; font-size: 12px; color: rgba(255, 255, 255, .6); }
.rec-breadcrumb a { color: rgba(255, 255, 255, .6); }
.rec-breadcrumb a:hover { color: var(--gold); }
.rec-breadcrumb .sep { margin: 0 8px; }

/* 募集職種 アコーディオン */
.rec-jobs { display: grid; gap: clamp(16px, 2vw, 22px); }
.rec-job { background: #fff; border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow-sm); overflow: hidden; }
.rec-job__head { display: flex; align-items: center; gap: clamp(12px, 1.6vw, 18px); padding: 18px clamp(18px, 2.5vw, 28px); cursor: pointer; list-style: none; }
.rec-job__head::-webkit-details-marker { display: none; }
.rec-job__no { display: grid; place-items: center; width: 42px; height: 32px; background: var(--gold); color: var(--ink); font-family: var(--font-en); font-weight: 700; font-size: 16px; border-radius: 5px; flex-shrink: 0; }
.rec-job__title { font-size: clamp(17px, 2vw, 22px); font-weight: 800; color: var(--ink); }
.rec-job__toggle { margin-left: auto; width: 12px; height: 12px; border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted); transform: rotate(45deg); transition: transform .3s var(--ease); flex-shrink: 0; }
.rec-job[open] .rec-job__toggle { transform: rotate(-135deg); }

/* 詳細テーブル */
.rec-table { margin: 0; border-top: 1px solid var(--line); }
.rec-table__row { display: grid; grid-template-columns: 180px 1fr; border-bottom: 1px solid var(--line); }
.rec-table__row:last-child { border-bottom: 0; }
.rec-table__row dt { padding: 15px clamp(18px, 2.5vw, 28px); font-weight: 700; color: var(--ink); background: var(--bg-soft); font-size: 14px; }
.rec-table__row dd { padding: 15px clamp(18px, 2.5vw, 28px); margin: 0; color: var(--text); font-size: 14px; line-height: 1.85; }
.rec-note { text-align: center; color: var(--muted); font-size: 13px; margin-top: clamp(24px, 3vw, 36px); }

@media (max-width: 680px) {
	.rec-table__row { grid-template-columns: 1fr; }
	.rec-table__row dt { padding-bottom: 4px; }
	.rec-table__row dd { padding-top: 4px; }
	.rec-pagehead__ghost { font-size: clamp(70px, 26vw, 130px); }
}

/* ==================================================================
   PAGE: COMPANY（会社概要）
   ================================================================== */
.co-greeting { display: grid; grid-template-columns: minmax(250px, 310px) 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.co-greeting__media { display: grid; gap: 22px; }
.co-figure { margin: 0; }
.co-photo {
	border-radius: 10px; overflow: hidden; box-shadow: var(--shadow-sm);
	background-color: #dfe3e8; background-size: cover; background-position: center; background-repeat: no-repeat;
}
.co-photo--ceo { aspect-ratio: 3 / 4; }
.co-photo--office { aspect-ratio: 4 / 3; }
.co-photo--ph { display: grid; place-items: center; color: #aeb6c0; }
.co-figure figcaption { text-align: center; margin-top: 10px; font-size: 13px; color: var(--muted); }
.co-figure figcaption strong { display: block; color: var(--ink); font-size: 16px; font-weight: 800; margin-top: 2px; }

.co-quote {
	position: relative; background: var(--bg-soft);
	border-left: 4px solid var(--gold); border-radius: 0 8px 8px 0;
	padding: clamp(22px, 3vw, 30px) clamp(24px, 3vw, 34px);
	margin-bottom: clamp(22px, 3vw, 32px);
}
.co-quote__mark { position: absolute; top: 2px; left: 14px; font-family: var(--font-en); font-size: 64px; line-height: 1; color: rgba(243, 163, 0, .3); font-weight: 700; }
.co-quote p { position: relative; font-size: clamp(17px, 2.2vw, 23px); font-weight: 800; color: var(--ink); line-height: 1.6; }
.co-greeting__text p { color: var(--text); font-size: 15px; line-height: 2; margin-bottom: 18px; }
.co-sign { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--line); font-weight: 700; color: var(--ink); line-height: 1.9; }

/* 会社概要テーブル（rec-table を流用） */
.co-table .rec-table__row { grid-template-columns: 200px 1fr; }
.co-table { border: 1px solid var(--line); border-radius: 10px; overflow: hidden; box-shadow: var(--shadow-sm); }
.co-link { color: var(--gold-dark); font-weight: 700; text-decoration: underline; }
.co-link:hover { color: var(--gold); }

@media (max-width: 680px) {
	.co-greeting { grid-template-columns: 1fr; }
	.co-greeting__media { grid-template-columns: 1fr 1fr; }
	.co-table .rec-table__row { grid-template-columns: 1fr; }
}
