﻿/* content pattern 1: vertical label + stacked body */
.content-pattern-1 {
	display: flex;
	align-items: flex-start;
	gap: 28px;
}

/* Blue overlay for jarallax sections */
.overlay-blue {
	position: relative;
}

.overlay-blue::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 80, 180, 0.45);
	mix-blend-mode: multiply;
	pointer-events: none;
	z-index: 1;
}

.overlay-blue > .container,
.overlay-blue > .container-fluid {
	position: relative;
	z-index: 2;
}

.content-pattern-1__label {
	writing-mode: vertical-rl;
	text-orientation: mixed;
	letter-spacing: 0.7em;
	transform: rotate(180deg);
	display: inline-flex;
	align-items: flex-start;
	justify-content: center;
	min-height: 180px;
	font-size: var(--h3-font-size);
	line-height: var(--lh-1-8);
	font-family: var(--heading-font);
	font-weight: var(--heading-font-weight);
}

.content-pattern-1__label .accent {
	color: var(--secondary-color);
}

/* first-letter utility (override color/size via inline CSS vars per word) */
.catch-001 {
	--first-letter-color: var(--color-gold-500);
}
.catch-002 {
	--first-letter-color: var(--color-green-500);
}
.catch-003 {
	--first-letter-color: var(--color-orange-500);
}
.catch-004 {
	--first-letter-color: var(--tertiary-color);
}
.catch-001-about {
	color: var(--color-gold-500);
	font-weight: bold;
}
.catch-002-about {
	color: var(--color-green-500);
	font-weight: bold;
}
.catch-003-about {
	color: var(--color-orange-500);
	font-weight: bold
}
.catch-004-about {
	color: var(--tertiary-color);
	font-weight: bold;
}

.catch-001::first-letter,
.catch-002::first-letter,
.catch-003::first-letter,
.catch-004::first-letter {
	color: var(--first-letter-color);
	font-size: var(--first-letter-size);
}

.content-pattern-1__body {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

/* simple vertical divider for headings */
.heading-line-vertical {
	width: 2px;
	height: 50px;
	background-color: currentColor;
	margin: 16px auto 32px;
	opacity: 0.85;
	border-radius: 1px;
}

@media (max-width: 991px) {
	.content-pattern-1 {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 16px;
	}

	.content-pattern-1__label {
		writing-mode: vertical-rl;
		text-orientation: mixed;
		letter-spacing: 0.7em;
		transform: rotate(180deg);
		min-height: 180px;
	}

	.content-pattern-1__body {
		align-items: center;
	}
}

/* crossfade between paired hero images */
.fade-loop-imgs {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 9;
}

.fade-loop-imgs img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	animation: fadeLoop 12s ease-in-out infinite;
}

.fade-loop-imgs img:nth-child(2) {
	animation-delay: 6s;
}

.fade-loop-imgs img:first-child {
	opacity: 1;
}

@keyframes fadeLoop {
	0%,
	40% { opacity: 1; }
	50%,
	90% { opacity: 0; }
	100% { opacity: 1; }
}

/* Inline white background sized to text only */
.text-bg-inline {
	display: inline-block;
	background: #fff;
	padding: 4px 10px;
	border-radius: 6px;
}

/* Darker chip-style background for subtitles */
.subtitle-bg {
	display: inline-block;
	background: rgba(0, 0, 0, 0.55);
	color: #fff;
	padding: 6px 14px;
	border-radius: 10px;
}



/*========= news =========*/

.topnews {
	float: left;
	margin: 0;
	padding: 0;
	display: block;
}
.topnews dl {
	width: 100%;
	border-bottom: 1px #000 dotted;
	line-height: 180%;
	margin: 5px 0;
	padding: 10px 0;
	float: left;
	display: block;
}
.topnews dt {
	width: 20%;
	float: left;
	margin: 0;
	padding: 0;
	display: block;
	text-align: left;
}
.topnews dt a {
	text-decoration: none;
}
.topnews dd {
	width: 79%;
	float: right;
	margin: 0;
	padding: 0 0 0 15px;
	display: block;
	text-align: left;
}
.topnews dd a {
	text-decoration: none;
}
@media(max-width: 768px){
.topnews dt {
	width: 100%;
	float: left;
	margin: 0;
	padding: 0;
	display: block;
}
.topnews dd {
	width: 109%;
	float: left;
	margin: 0;
	padding: 0;
	display: block;
}
}

/* about/company table */
.hdg3 {
	position: relative;
	display: inline-block;
	padding: 0 3em 0 0;
	margin: 2rem 0 1rem;
	text-align: left;
	font-size: 1.2rem;
	font-weight: bold;
}

.hdg3::before {
	display: none;
}

.hdg3::after {
	content: '';
	background: #4c9ac0;
	width: 2em;
	height: 3px;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}

/* business/service8 link cards: desktop 8 cols (12.5%), tablet 4 cols, mobile 2 cols */
.business-links-grid {
	--grid-gap: 16px;
	display: flex;
	flex-wrap: wrap;
	gap: var(--grid-gap);
	padding-inline: 1%;
	box-sizing: border-box;
}

.business-links-grid__item {
	flex: 0 0 calc((100% - (var(--grid-gap) * 7)) / 8);
	max-width: calc((100% - (var(--grid-gap) * 7)) / 8);
}

.business-link-card {
	display: block;
	height: 100%;
	text-decoration: none;
	color: inherit;
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.12);
	transition: transform .2s ease, box-shadow .2s ease;
}

.business-link-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 0.375rem 1rem rgba(0, 0, 0, 0.16);
}

.business-link-card img {
	display: block;
	width: 100%;
	height: 170px;
	object-fit: cover;
}

.business-link-card__body {
	padding: 12px 10px;
}

.business-link-card__title {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	font-weight: 700;
}

@media (max-width: 1024px) {
	.business-links-grid__item {
		flex: 0 0 calc((100% - (var(--grid-gap) * 3)) / 4);
		max-width: calc((100% - (var(--grid-gap) * 3)) / 4);
	}
}

@media (max-width: 767px) {
	.business-links-grid {
		--grid-gap: 12px;
	}

	.business-links-grid__item {
		flex: 0 0 calc((100% - var(--grid-gap)) / 2);
		max-width: calc((100% - var(--grid-gap)) / 2);
	}

	.business-link-card img {
		height: 150px;
	}
}


/* business manufacturer cards (common) */
.manufacturer-logo-wrap {
	height: 120px;
	background: #fff;
}

.manufacturer-logo {
	width: 100%;
	max-width: 220px;
	height: 80px;
	object-fit: contain;
}

.manufacturer-site-btn,
.manufacturer-site-btn:hover,
.manufacturer-site-btn:focus,
.manufacturer-site-btn:active,
.manufacturer-site-btn:focus-visible,
.manufacturer-site-btn:visited {
	height: 44px;
	min-height: 44px;
	max-height: 44px;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	flex: 0 0 auto;
	white-space: nowrap;
	box-sizing: border-box;
	border-width: 1px;
	line-height: 1;
	padding-top: 0;
	padding-bottom: 0;
	padding-left: 0.75rem;
	padding-right: 0.75rem;
	text-align: center !important;
}

a.manufacturer-site-btn::before {
	content: none !important;
}

.manufacturer-logo-wrap + .card-body > h4 {
	min-height: calc(1.4em * 2);
	line-height: 1.4;
	white-space: normal;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.manufacturer-logo-wrap + .card-body > p {
	min-height: calc(1.6em * 2);
	line-height: 1.6;
	white-space: normal;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.hdg4 {
	margin: 1.5rem 0 .5rem;
	font-size: 1.05rem;
	font-weight: bold;
	border-bottom: 3px solid var(--color-gold-500, #f6c344);
	padding: 0.3em;
	position: relative;
}

.hdg4::before,
.hdg4::after {
	content: '';
	background-color: #4c9ac0;
	width: 3px;
	height: 20px;
	transform: rotate(30deg);
	position: absolute;
	bottom: -10px;
}

.hdg4::before {
	right: 2.5em;
}

.hdg4::after {
	right: 2em;
}

.tb01 {
	border-collapse: collapse;
	width: 100%;
}

.tb01 th,
.tb01 td {
	padding: 10px;
	border: solid 1px #d1d6df;
	text-align: left;
	box-sizing: border-box;
}

.tb01 th {
	background: var(--color-gray-150, #f4f4f4);
	color: #222;
}

@media screen and (max-width: 640px) {
	.tb01 {
		width: 100%;
	}

	table.tb01 th,
	table.tb01 td {
		display: block;
		width: 100%;
		border-bottom: none;
	}

	.tb01 tr:last-child {
		border-bottom: solid 1px #ccc;
	}
}

/* permits/registrations table */
.tb02 {
	border-collapse: collapse;
	width: 100%;
}

.tb02 th,
.tb02 td {
	padding: 10px;
	border: solid 1px #d1d6df;
	text-align: left;
	box-sizing: border-box;
}

.tb02 th {
	background: var(--color-gray-150, #f4f4f4);
	color: #222;
}

.tb02 th[scope="row"] {
	width: 32%;
	white-space: nowrap;
	background: #cfe6fb;
	color: #1c3a4f;
}

@media screen and (max-width: 640px) {
	.tb02 {
		width: 100%;
	}

	.tb02 th,
	.tb02 td {
		display: block;
		width: 100%;
		border-bottom: none;
	}

	.tb02 tr:last-child {
		border-bottom: solid 1px #ccc;
	}
}
.new-pdf {
	display:inline-block;
	background: var(--color-gray-750);
	padding:10px 30px;
	text-align:center;
	color: var(--tertiary-color);
	margin:5px;
	border:1px solid;
	cursor:pointer;
    font-weight: 600;
    font-size: 1.25em;
    border: none;
    border-radius: 5px;
	line-height: 200%;
	width: 150px;
}
.new-pdf span {
	line-height: 180%;
    font-size: 1em;
}
.new-pdf a:hover {
    background-color: var(--color-gray-750);
    color: var(--color-black);
}
.new-link {
	display:inline-block;
	background: var(--color-gray-750);
	padding:10px 30px;
	text-align:center;
	color: var(--tertiary-color);
	margin:5px;
	border:1px solid;
	cursor:pointer;
    font-weight: 600;
    font-size: 1.25em;
    border: none;
    border-radius: 5px;
	line-height: 200%;
	width: 150px;
}
.new-link span {
	line-height: 180%;
    font-size: 1em;
}
.new-link:hover {
    background-color: var(--color-gray-750);
    color: var(--color-black);
}

/* business cards */
.business-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 36px;
	align-items: stretch;
}

.business-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: #fff;
	border: 1px solid var(--color-gray-200, #f2f2f2);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.business-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.business-card__image {
	width: 100%;
	height: 180px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.business-card__body {
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex: 1;
}

.business-card__body h3 {
	margin: 0;
	font-size: 1.15rem;
}

.business-card__body p {
	margin: 0;
	line-height: 1.6;
	color: var(--color-gray-700, #4a4a4a);
}

.business-card__btn {
	margin-top: auto;
	display: inline-block;
	padding: 10px 16px;
	border-radius: 999px;
	text-decoration: none;
	background: var(--primary-color, #48b1fb);
	color: #fff;
	font-weight: 600;
	text-align: center;
	transition: background 0.2s ease, transform 0.2s ease;
}

.business-card__btn:hover {
	background: var(--tertiary-color, #436ba4);
	transform: translateY(-1px);
}

/* steel use case cards spacing */
.business-use-cards {
	--bs-gutter-x: 3rem;
	--bs-gutter-y: 3rem;
}



    /* Vertical pill links matching the provided sample */
    .info-pill-wrap {
        display: flex;
        gap: 24px;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }

	/* Keep two columns on tablets (768-1024px) */
	@media (max-width: 1024px) and (min-width: 768px) {
		.info-pill-wrap {
			flex-wrap: nowrap;
		}
		.info-pill {
			width: 200px;
			height: 340px;
			border-radius: 100px;
		}
	}

    .info-pill {
        width: 220px;
        height: 380px;
        border-radius: 110px;
		background: #d8d8d8;
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		position: relative;
		overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        text-decoration: none;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
		box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    }

	.info-pill:hover {
		transform: scale(1.02);
		box-shadow: 0 16px 28px rgba(0, 0, 0, 0.16);
	}

    @media (max-width: 576px) {
        .info-pill {
            width: 180px;
            height: 300px;
            border-radius: 90px;
        }
    }

	/* Background assignments */
	.info-pill.info-pill-faq {
		background-image:
			linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)),
			url("../images/index/picup-01.png");
	}

	.info-pill.info-pill-csr {
		background-image:
			linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)),
			url("../images/index/picup-02.png");
	}

	/* Info pill text */
	.info-pill__label {
		position: relative;
		color: #0b0b0b;
		font-size: 23px; /* PC */
		font-weight: 600;
		letter-spacing: 0.1em;
		writing-mode: vertical-rl;
		text-orientation: upright;
		text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
		background-color: rgba(255, 255, 255, 0.6);
		padding: 10px;
		border-radius: 10px;
	}

	@media (max-width: 1024px) and (min-width: 768px) { /* Tablet */
		.info-pill__label {
			font-size: 20px;
		}
	}

	@media (max-width: 767px) { /* Phone */
		.info-pill__label {
			font-size: 18px;
		}
	}

/* Swap to dark logo when header shrinks on scroll */
header.header-light .logo-scroll {
	display: none;
}

header.header-light.smaller .logo-main {
	display: none;
}

header.header-light.smaller .logo-scroll {
	display: inline-block;
}


/* Page Title */
.heading-28 {
    color: #333333;
    font-weight: 700;
    font-size: 2.2rem;
    letter-spacing: .04em;
    text-align: center;
	font-family: var(--heading-font);
}

.heading-28::before {
    display: block;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.9;
    letter-spacing: .02em;
    content: attr(data-label);
	margin-bottom: 15px;;
}

.heading-28 span {
	display: inline-flex;
	align-items: center;
	margin-left: 15px;
    font-size: 1.2rem;
}

.heading-28 span::before {
	content: "-";
	margin-right: 10px;
}

.heading-28 span::after {
	content: "-";
	margin-left: 10px;
}

/* About section menu tiles */
.about-menu-bar {background:#cfe6fb; border-radius:18px; padding:14px 10px; width:100%; margin:0 auto;}
.about-menu-rail {gap:12px; width:100%;}
.about-menu-tile {flex:1 1 0; min-width:120px; padding:14px; border:1px solid #b7d5f5; border-radius:12px; background:rgba(255,255,255,0.5); color:#4f6074; text-align:center; text-decoration:none; display:flex; align-items:center; justify-content:center; height:90px;}
.about-menu-tile:hover {box-shadow:0 10px 24px rgba(0,0,0,0.08); transform:translateY(-2px); transition:all .2s ease;}
.about-menu-active {background:#e8f3ff; border-color:#d6e6fb; box-shadow:0 8px 20px rgba(0,0,0,0.06);}
.about-menu-label {background:transparent; border-color:transparent; box-shadow:none; cursor:default;}
.about-menu-label:hover {box-shadow:none; transform:none;}

/* Bottom navigation (mobile) */
.bottom-nav {position:fixed; bottom:0; left:0; right:0; height:64px; background:#ffffff; box-shadow:0 -6px 18px rgba(0,0,0,0.08); display:none; z-index:1100; border-top:1px solid #e3e7ed;}
.bottom-nav .nav-item {flex:1; text-align:center; text-decoration:none; color:#4f6074; font-size:12px; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:4px; padding:18px 4px 8px;}
.bottom-nav .nav-item .icon {font-size:20px; line-height:1;}
.bottom-nav .nav-item.active, .bottom-nav .nav-item:hover {color:#0b74de;}

/* Footer background overlay */
.footer-bg {position:relative; background:url('../images/footer-back.webp') center center/cover no-repeat; color:#ffffff;}
.footer-bg::before {content:""; position:absolute; inset:0; background:rgba(0,0,0,0.55);}
.footer-bg .container, .footer-bg .subfooter {position:relative; z-index:1;}

/* Subheader light overlay for readability */
#subheader.overlay-light {position:relative;}
#subheader.overlay-light::before {content:""; position:absolute; inset:0; background:rgba(255,255,255,0.55);}
#subheader.overlay-light .container {position:relative; z-index:1;}

@media (max-width: 991px){
	.about-menu-tile{min-width:110px; height:100px;}
	.bottom-nav{display:flex;}
	body{padding-bottom:calc(92px + env(safe-area-inset-bottom));}
	footer.section-dark{display:none;}
	body.jobs-page footer.section-dark{display:block;}
}

@media (max-width: 575px){
	.about-menu-bar{padding:12px 10px;}
	.about-menu-tile{min-width:100px; height:96px; padding:12px;}
}

/* President message spacing */
.president-message p {
	margin-bottom: 1em;
}

.company-name-philosophy {
	margin: 1.5em 0;
}

.company-name {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: .5em;
}

.philosophy-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.philosophy-list li {
	margin-bottom: .3em;
}

/* Timeline table for history page */
.timeline-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	border: 1px solid #d6dbe5;
	border-radius: 12px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 12px 32px rgba(12, 46, 87, 0.08);
}

.timeline-table col.timeline-year-col {
	width: 28%;
}

.timeline-table thead th {
	background: #f3f7fb;
	color: #2c3a4b;
	padding: 14px 16px;
	font-weight: 700;
	letter-spacing: .02em;
	border-bottom: 1px solid #d6dbe5;
}

/* Jobs page anchor markers */
.job-detail section[id] {
	scroll-margin-top: 120px;
}

.job-anchor-mark {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 14px;
	padding: 6px 14px;
	border-radius: 999px;
	background: rgba(189, 160, 97, 0.12);
	border: 1px solid rgba(189, 160, 97, 0.35);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .04em;
}

.job-anchor-mark a {
	color: inherit;
	text-decoration: none;
}

.timeline-table tbody th,
.timeline-table tbody td {
	padding: 14px 16px;
	vertical-align: top;
	border-bottom: 1px solid #e6ebf2;
}

.timeline-table tbody tr:nth-child(odd) {
	background: #fbfdff;
}

.timeline-table tbody tr:last-child th,
.timeline-table tbody tr:last-child td {
	border-bottom: none;
}

.timeline-table th[scope="row"] {
	font-weight: 700;
	color: #1e3a56;
	white-space: nowrap;
}

.timeline-badge {
	display: inline-flex;
	gap: 8px;
	align-items: baseline;
}

.timeline-era {
	font-size: 0.98rem;
	font-weight: 700;
}

.timeline-month {
	font-size: 0.9rem;
	color: #47668c;
}

.timeline-table td {
	color: #2f3e51;
	line-height: 1.7;
}

@media (max-width: 640px) {
	.timeline-table col.timeline-year-col {
		width: 36%;
	}

	.timeline-table tbody th,
	.timeline-table tbody td {
		display: block;
		width: 100%;
		border-bottom: none;
	}

	.timeline-table tbody tr {
		display: block;
		border-bottom: 1px solid #e6ebf2;
	}

	.timeline-table tbody tr:last-child {
		border-bottom: none;
	}

	.timeline-table tbody td {
		padding-top: 0;
	}
}

/* CSR page base spacing */

.linkRow {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 12px 0 4px;
}

.facts {
	list-style: none;
	padding: 0;
	margin: 0 0 1rem;
}

.facts li {
	padding: 6px 0;
	border-bottom: 1px solid #e8ecf2;
}

.facts li:last-child {
	border-bottom: none;
}

.photoGrid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 16px;
	margin: 12px 0 4px;
}

.photoGrid figure {
	margin: 0;
	background: #f8fafc;
	border: 1px solid #e3e8ef;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.photoGrid img {
	display: block;
	width: 100%;
	height: auto;
}

.photoGrid figcaption {
	padding: 10px 12px;
	font-size: 0.95rem;
	color: #435167;
}

.sdgsGrid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 12px;
	margin-top: 12px;
}

.sdgsGrid img {
	width: 100%;
	height: auto;
	border: 1px solid #e1e6ed;
	border-radius: 8px;
	box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
	background: #fff;
}

.framed-list {
	list-style: decimal inside;
	padding: 14px 18px;
	margin: 12px auto 0;
	width: 500px;
	max-width: 100%;
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
	border: 2px solid #d7dbe5;
	border-radius: 12px;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.framed-list li {
	margin: 0 0 8px 0;
	font-weight: 600;
	color: #2f3e51;
}

.framed-list li:last-child {
	margin-bottom: 0;
}

/* 蜈ｱ騾夲ｼ壹Μ繝ｳ繧ｯ繝懊ち繝ｳ・医す繝・け・・*/
.btnLink {
	display: inline-flex;
	align-items: center;
	gap: .45rem;
	padding: 4px 0;
	border: none;
	background: transparent;
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 4px;
	font-weight: 600;
	letter-spacing: .02em;
	transition: color .12s ease;
}

.btnLink:hover {
	color: var(--primary-color, #0b74de);
}

.btnLink:focus {
	outline: 2px solid rgba(12, 104, 171, .35);
	outline-offset: 3px;
}

.btnLink .ico {
	width: 1rem;
	height: 1rem;
	flex: 0 0 auto;
	display: inline-block;
	color: #6b7380;
}

.btnLink.-dark {
	color: inherit;
}

/* business-tags.css */

/* Utility: fixed-height cover images for cards */
.img-cover-220 {
	height: 220px;
	object-fit: cover;
}

.business-use-cards .card-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.business-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.4rem;
  margin-top: 0.5rem;
}

.business-tag {
  display: inline-block;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  font-size: 0.82rem;
  line-height: 1.2;
  background: #f2f6ff;
  color: #0c2d66;
  border: 1px solid #d7e2ff;
  white-space: nowrap;
}

.business-tag:hover {
  background: #e8f0ff;
  border-color: #c6d6ff;
}

/* 繧ｫ繝ｼ繝峨′隧ｰ縺ｾ繧翫☆縺弱ｋ蝣ｴ蜷医・隱ｿ謨ｴ */
@media (max-width: 576px) {
  .business-tag {
    font-size: 0.78rem;
    padding: 0.22rem 0.5rem;
  }
}

/* Manufacturer note styling across business detail pages */
.business-use-cards .btn.btn-primary {
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease !important;
}

.business-use-cards .btn.btn-primary:hover,
.business-use-cards .btn.btn-primary:focus,
.business-use-cards .btn.btn-primary:active,
.business-use-cards .btn-check:focus + .btn-primary,
.business-use-cards .btn-primary.active,
.business-use-cards .show > .btn-primary.dropdown-toggle {
	transform: none !important;
	box-shadow: none !important;
}

.business-use-cards + .small.text-muted.text-center {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	max-width: 960px;
	margin: 100px auto 0 !important;
	padding: 14px 18px;
	background: linear-gradient(135deg, #f9fbff 0%, #f2f6ff 100%);
	border: 1px solid #d9e4ff;
	border-radius: 14px;
	color: #2f3e51;
	box-shadow: 0 10px 24px rgba(12, 46, 87, 0.08);
	line-height: 1.6;
}

@media (max-width: 576px) {
	.business-use-cards + .small.text-muted.text-center {
		flex-direction: column;
		text-align: center;
		gap: 6px;
		padding: 12px 14px;
		margin-top: 28px;
	}
}

/* ================================================== */
/* 工事実績ページ専用スタイル */
/* ================================================== */

/* 実績カードメタ情報 */
.works-meta dt { 
  white-space: nowrap; 
}

.works-meta dd { 
  word-break: break-word; 
}

/* 工事実績一覧テーブル */
.works-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 auto;
  max-width: 100%;
}

table.works-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  margin: 0 auto;
}

table.works-table th,
table.works-table td {
  padding: 0.75rem;
  vertical-align: top;
  white-space: nowrap;
}

table.works-table thead th {
  font-weight: 600;
  white-space: nowrap;
  background-color: #f8f9fa;
  border-bottom: 2px solid #dee2e6;
  text-align: center;
}

table.works-table tbody td {
  text-align: left;
}

/* ストライプ効果 */
table.works-table.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.02);
}

.works-year {
  display: inline-block;
  margin-right: 0.4rem;
  font-weight: 600;
  white-space: nowrap;
}

/* 実績カード画像の高さ統一 */
.img-cover-220 {
  height: 220px;
  object-fit: cover;
  object-position: center;
}

/* 実績カードのスタイル調整 */
.works-cards .card {
  overflow: hidden;
}

.works-cards .card-body {
  padding: 1.25rem;
}

.works-meta {
  background-color: #f8f9fa;
  padding: 0.75rem;
  border-radius: 6px;
  margin-bottom: 0;
}

.works-meta .d-flex {
  padding: 0.25rem 0;
}

.works-meta dt {
  color: #6c757d;
  font-size: 0.875rem;
}

.works-meta dd {
  font-size: 0.9rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .img-cover-220 {
    height: 180px;
  }
  
  .works-cards .card-body {
    padding: 1rem;
  }
  
  .works-meta {
    padding: 0.6rem;
  }
  
  .works-meta .d-flex {
    gap: 1rem !important;
  }
}

@media (max-width: 576px) {
  /* スマホでは写真を縦並びにする */
  .works-cards .card .row.g-0 .col-6 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }
  
  .img-cover-220 {
    height: 200px;
  }
  
  .works-cards .card-body {
    padding: 1rem;
  }
  
  .works-cards .card {
    margin-bottom: 1.5rem;
  }
  
  .works-meta {
    padding: 0.75rem;
    font-size: 0.875rem;
  }
  
  .works-meta dt {
    min-width: 4em !important;
    font-size: 0.8rem;
  }
  
  .works-meta dd {
    font-size: 0.85rem;
  }
  
  .works-cards .h5 {
    font-size: 1rem;
    line-height: 1.4;
  }
}

/* ================================================== */
/* 募集要項ページ専用スタイル */
/* ================================================== */

/* タブナビゲーション */
.recruit-tabs {
  display: flex;
  justify-content: center;
  border-bottom: 2px solid #e3e8ef;
  margin-bottom: 0;
  gap: 8px;
}

.recruit-tabs .nav-item {
  margin-bottom: -2px;
}

.recruit-tabs .nav-link {
  min-width: 140px;
  padding: 14px 28px;
  border: none;
  border-radius: 10px 10px 0 0;
  background: #f4f6f9;
  color: #5a6472;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.2s ease;
  text-align: center;
}

.recruit-tabs .nav-link:hover {
  background: #e8ecf2;
  color: #2f3e51;
}

.recruit-tabs .nav-link.active {
  background: #fff;
  color: var(--primary-color, #0b74de);
  border-bottom: 3px solid var(--primary-color, #0b74de);
}

@media (max-width: 576px) {
  .recruit-tabs .nav-link {
    min-width: 100px;
    padding: 12px 18px;
    font-size: 0.95rem;
  }
}

/* タブコンテンツ */
.recruit-tab-content {
  background: #fff;
  padding: 0;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

/* 募集詳細セクション */
.recruit-detail-section {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #f9fbfc;
  border: 1px solid #e3e8ef;
  border-radius: 16px;
}

.recruit-detail-section h4 {
  margin-top: 0;
}

.recruit-detail-section ul {
  margin: 0;
  padding-left: 1.5rem;
}

.recruit-detail-section ul li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.recruit-detail-section p {
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.recruit-detail-section p:last-child {
  margin-bottom: 0;
}

/* 募集していない表示 */
.recruit-not-hiring {
  text-align: center;
  padding: 80px 20px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recruit-not-hiring p {
  font-size: 1.5rem;
  font-weight: 600;
  color: #6b7380;
  margin: 0;
  padding: 24px 40px;
  background: #f8f9fa;
  border: 2px solid #e3e8ef;
  border-radius: 12px;
}

@media (max-width: 576px) {
  .recruit-not-hiring {
    padding: 60px 20px;
  }
  
  .recruit-not-hiring p {
    font-size: 1.2rem;
    padding: 20px 30px;
  }
}

/* ================================================== */
/* 職種別の仕事内容ページ専用スタイル */
/* ================================================== */

.job-detail {
	overflow: visible;
}

body.jobs-page #content,
body.jobs-page #wrapper,
body.jobs-page .job-detail,
body.jobs-page .job-detail section,
body.jobs-page .job-accordion,
body.jobs-page .job-accordion-content,
body.jobs-page .job-accordion-inner,
body.jobs-page .collapse.show {
	height: auto !important;
	max-height: none !important;
	min-height: 0 !important;
	overflow: visible !important;
}

body.jobs-page .job-accordion-content.collapsing {
	height: auto !important;
	overflow: visible !important;
}

body.jobs-page .bg-color-3,
body.jobs-page footer.section-dark {
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
}

body.jobs-page footer.section-dark {
	display: block !important;
}

/* 職種セクション */
.job-section {
  background: #fff;
}

.job-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2f3e51;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--primary-color, #0b74de);
  display: flex;
  align-items: center;
  gap: 12px;
}

.job-icon {
  font-size: 2.2rem;
  color: var(--primary-color, #0b74de);
}

/* 業務風景画像 */
.job-image-wrap {
  position: relative;
  margin-bottom: 2rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.job-image {
  width: 100%;
  height: auto;
  display: block;
}

/* 職種説明 */
.job-description {
  background: #f9fbfc;
  padding: 2rem;
  border-radius: 16px;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.job-description p {
  margin: 0;
  font-size: 1.05rem;
  color: #2f3e51;
}

/* アコーディオン */
.job-accordion {
  margin-bottom: 2rem;
}

.job-accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
  color: #fff;
  border: none;
  border-radius: 16px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(74, 144, 226, 0.3);
}

.job-accordion-trigger:hover {
  background: linear-gradient(135deg, #357abd 0%, #2a5f99 100%);
  box-shadow: 0 8px 24px rgba(74, 144, 226, 0.4);
  transform: translateY(-2px);
}

.job-accordion-label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.job-accordion-label i {
  font-size: 1.4rem;
}

.job-accordion-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.job-accordion-trigger[aria-expanded="true"] .job-accordion-icon {
  transform: rotate(180deg);
}

.job-accordion-content {
  margin-top: 1rem;
}

.job-accordion-inner {
  background: #fff;
  border: 2px solid #e3e8ef;
  border-radius: 16px;
  padding: 2rem;
}

/* アコーディオン内見出し */
.job-sub-heading {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2f3e51;
  margin: 2rem 0 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.job-sub-heading:first-child {
  margin-top: 0;
}

.job-sub-heading i {
  font-size: 1.5rem;
  color: var(--primary-color, #0b74de);
}

/* 各リストスタイル */
.job-flow-list,
.job-fit-list,
.job-reward-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.job-flow-list li,
.job-fit-list li,
.job-reward-list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid #e8ecf2;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.6;
}

.job-flow-list li:last-child,
.job-fit-list li:last-child,
.job-reward-list li:last-child {
  border-bottom: none;
}

.job-flow-list li i,
.job-fit-list li i,
.job-reward-list li i {
  font-size: 1.3rem;
  color: var(--primary-color, #0b74de);
  flex-shrink: 0;
  margin-top: 2px;
}

/* 先輩の声リンク */
.job-voice-link {
  text-align: center;
  margin-top: 3rem;
}

.job-voice-link .btn-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 1.1rem;
}

.job-voice-link .btn-main i {
  font-size: 1.3rem;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .job-section-title {
    font-size: 1.4rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .job-icon {
    font-size: 1.8rem;
  }

  .job-description {
    padding: 1.5rem;
  }

  .job-accordion-trigger {
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
  }

  .job-accordion-inner {
    padding: 1.5rem;
  }

  .job-sub-heading {
    font-size: 1.1rem;
  }

  .job-flow-list li,
  .job-fit-list li,
  .job-reward-list li {
    font-size: 0.95rem;
  }
}

/* ================================================== */
/* 先輩の声ページ専用スタイル */
/* ================================================== */

.voices-page .voices-page__lead {
	margin: 0;
	line-height: 1.8;
}

.voices-page .voices-page__cards {
	row-gap: 1.5rem;
}

.voices-page .voices-page__card {
	display: block;
	height: 100%;
	text-decoration: none;
	color: inherit;
	background: var(--color-white);
	border: 1px solid var(--primary-color);
}

.voices-page .voices-page__card-image {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	display: block;
}

.voices-page .voices-page__card-body {
	padding: 1.25rem;
}

.voices-page .voices-page__dept {
	margin: 0 0 0.4rem;
	font-weight: 700;
}

.voices-page .voices-page__nickname {
	margin: 0;
	font-size: 1.15rem;
}

.voices-page .voices-page__detail-heading {
	margin-bottom: 1.5rem;
}

.voices-page .voices-page__detail {
	padding: 1.25rem;
	margin-bottom: 1.5rem;
	background: var(--color-white);
	border: 1px solid var(--primary-color);
	scroll-margin-top: 110px;
}

.voices-page .voices-page__detail-image {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	display: block;
}

.voices-page .voices-page__detail-title {
	margin-bottom: 1rem;
}

.voices-page .voices-page__meta {
	margin: 0 0 1rem;
}

.voices-page .voices-page__meta > div {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 0.4rem;
}

.voices-page .voices-page__meta dt {
	min-width: 7em;
	margin: 0;
	font-weight: 700;
}

.voices-page .voices-page__meta dd {
	margin: 0;
}

.voices-page .voices-page__comment {
	margin: 0;
	line-height: 1.9;
}

.voices-page .voices-page__links {
	margin-top: 1rem;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.voices-page .voices-page__links a {
	text-decoration: underline;
}

@media (min-width: 992px) {
	.voices-page .voices-page__cards {
		row-gap: 2rem;
	}

	.voices-page .voices-page__detail {
		padding: 1.5rem;
		margin-bottom: 2rem;
	}
}

/* ================================================== */
/* 福利厚生・資格支援ページ専用スタイル */
/* ================================================== */

.benefits-page .benefits-page__lead {
	margin: 0;
	line-height: 1.9;
}

.benefits-page .benefits-page__section-title {
	margin-bottom: 1rem;
}

.benefits-page .benefits-page__hero-image {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	display: block;
}

.benefits-page .benefits-page__gallery-item {
	margin: 0;
}

.benefits-page .benefits-page__gallery-image {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	display: block;
}

.benefits-page .benefits-page__gallery-item figcaption {
	margin-top: 0.6rem;
	font-size: 0.95rem;
}

.benefits-page .benefits-page__panel,
.benefits-page .impact-list-panel {
	padding: 1rem;
	margin: 0;
}

.benefits-page .benefits-page__panel h3 {
	margin-bottom: 0.75rem;
}

.benefits-page .benefits-page__panel p {
	margin: 0;
	line-height: 1.8;
}

.benefits-page .impact-list-panel {
	list-style: none;
	padding-left: 1rem;
}

.benefits-page ul.panel.impact-list-panel {
	background: var(--color-white);
	border: 1px solid var(--primary-color) !important;
	border-radius: 12px;
	padding: 1rem 1rem 1rem 1.2rem;
	margin: 0;
}

.benefits-page .impact-list-panel li {
	position: relative;
	padding: 0.55rem 0;
	line-height: 1.7;
	border-bottom: 1px solid var(--color-gray-200, #e5e9f0);
}

.benefits-page .impact-list-panel li:last-child {
	border-bottom: none;
}

.benefits-page .impact-list-panel li::before {
	content: "";
	position: absolute;
	left: -0.9rem;
	top: 1.2rem;
	width: 0.35rem;
	height: 0.35rem;
	border-radius: 50%;
	background: var(--primary-color);
}

.benefits-page .benefits-page__panel-list--plain {
	padding-left: 1rem;
}

.benefits-page ul.panel.impact-list-panel.benefits-page__panel-list--plain {
	border: none !important;
}

.benefits-page .benefits-page__message {
	padding: 1.25rem;
	background: var(--color-white);
	border: 1px solid var(--primary-color);
	line-height: 1.9;
}

.benefits-page .benefits-page__message p {
	margin: 0;
}

.benefits-page .benefits-page__cta {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.8rem;
}

.benefits-page .benefits-page__cta .btn-main {
	text-align: center;
}

@media (min-width: 992px) {
	.benefits-page .benefits-page__panel,
	.benefits-page .impact-list-panel,
	.benefits-page .benefits-page__message {
		padding: 1.5rem;
	}

	.benefits-page .benefits-page__cta {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 1rem;
	}
}

/* ================================================== */
/* test.html - impact list */
/* ================================================== */

section.impact-list-panel {
	--text: var(--text-color, #2f3e51);
	--muted: #5a6472;
	--accent-1: var(--primary-color, #0b74de);
	--accent-2: var(--secondary-color, #4c9ac0);
	--accent-3: var(--primary-color, #0b74de);
	width: min(880px, 100%);
	background: none;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 24px;
	padding: 2rem;
	backdrop-filter: blur(4px);
}

section.impact-list-panel .impact-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.9rem;
}

section.impact-list-panel .impact-list li {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 0.9rem;
	padding: 0.9rem 1rem;
	border-radius: 14px;
	background: linear-gradient(120deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
	border: 1px solid rgba(255, 255, 255, 0.09);
	position: relative;
	overflow: hidden;
	transform: translateZ(0);
	transition: transform 0.25s ease, border-color 0.25s ease;
}

/* Reusable large CTA button: visually about 2x taller than default btn-main */
.btn-main.btn-double-height {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 56px;
	padding: 0 28px;
	line-height: 1.2;
}

@media (max-width: 575px) {
	.btn-main.btn-double-height {
		min-height: 50px;
		padding: 0 22px;
	}
}

section.impact-list-panel .impact-list li::before {
	content: "";
	position: absolute;
	inset: -2px;
	background: linear-gradient(100deg, transparent 0%, rgba(110, 243, 255, 0.22) 45%, rgba(255, 79, 216, 0.2) 100%);
	opacity: 0;
	transition: opacity 0.25s ease;
	z-index: 0;
}

section.impact-list-panel .impact-list li:hover {
	transform: translateY(-3px) scale(1.01);
	border-color: rgba(110, 243, 255, 0.45);
}

section.impact-list-panel .impact-list li:hover::before {
	opacity: 1;
}

section.impact-list-panel .rank,
section.impact-list-panel .content,
section.impact-list-panel .tag {
	position: relative;
	z-index: 1;
}

section.impact-list-panel .rank {
	width: 2.2rem;
	aspect-ratio: 1;
	border-radius: 50%;
	display: grid;
	place-items: center;
	font-weight: 800;
	font-size: 0.95rem;
	color: #041427;
	background: linear-gradient(160deg, var(--accent-1), #8fc4ff);
}

section.impact-list-panel .content h2 {
	margin: 0;
	font-size: 1.03rem;
	color: var(--text);
}

/* ================================================== */
/* 採用案内トップページ専用スタイル */
/* ================================================== */

.recruit-top-page .recruit-top-page__lead {
	margin: 0;
	line-height: 1.8;
}

.recruit-top-page .recruit-top-page__card {
	display: block;
	height: 100%;
	padding: 1.25rem;
	text-decoration: none;
	color: var(--text-color, #2f3e51);
	background: var(--color-white);
	border: 1px solid var(--primary-color);
	transition: transform 0.2s ease;
}

.recruit-top-page .recruit-top-page__card:hover {
	transform: translateY(-3px);
}

.recruit-top-page .recruit-top-page__card h3 {
	margin: 0 0 0.65rem;
	font-size: 1.1rem;
	color: var(--primary-color, #0b74de);
}

.recruit-top-page .recruit-top-page__card p {
	margin: 0;
	line-height: 1.7;
	font-size: 0.95rem;
}

.recruit-eto-section .recruit-eto-section__lead {
	margin-bottom: 1rem;
	line-height: 1.8;
}

.recruit-eto-section .eto-xy-chart {
	display: grid;
	grid-template-columns: 34px 1fr;
	gap: 0.55rem;
}

.recruit-eto-section .eto-xy-chart__y-scale {
	position: relative;
	height: 190px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	font-size: 0.78rem;
	font-weight: 700;
	color: #466a98;
	padding-right: 0.25rem;
}

.recruit-eto-section .eto-xy-chart__y-scale::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 2px;
	height: 100%;
	background: #8ca9ce;
	border-radius: 2px;
}

.recruit-eto-section .eto-xy-chart__bars {
	list-style: none;
	margin: 0;
	padding: 0 0 0 0.55rem;
	display: flex;
	align-items: flex-end;
	gap: 0.5rem;
	height: 190px;
	border-bottom: 2px solid #8ca9ce;
	background-image: repeating-linear-gradient(to top, rgba(140, 169, 206, 0.2) 0 1px, transparent 1px 47px);
	overflow-x: auto;
}

.recruit-eto-section .eto-xy-chart__bars li {
	flex: 0 0 54px;
	display: grid;
	grid-template-rows: 1fr auto auto auto;
	justify-items: center;
	align-items: end;
	gap: 0.28rem;
	min-height: 100%;
}

.recruit-eto-section .eto-xy-chart__bar {
	display: block;
	width: 20px;
	height: calc((var(--value, 0) / 4) * 140px);
	min-height: 0;
	border-radius: 10px 10px 0 0;
	background: linear-gradient(180deg, var(--primary-color), var(--tertiary-color));
	box-shadow: 0 3px 10px rgba(67, 107, 164, 0.35);
}

.recruit-eto-section .eto-xy-chart__bars img {
	width: 34px;
	height: 34px;
	object-fit: cover;
	border-radius: 7px;
	border: 1px solid rgba(67, 107, 164, 0.28);
}

.recruit-eto-section .eto-xy-chart__name {
	font-weight: 700;
	line-height: 1;
	color: var(--tertiary-color);
}

.recruit-eto-section .eto-xy-chart__count {
	font-size: 0.82rem;
	font-weight: 700;
	line-height: 1;
	color: #23456f;
}

.recruit-eto-section .eto-chart {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.55rem;
}

.recruit-eto-section .eto-chart__item {
	display: grid;
	grid-template-columns: 42px 2em 1fr auto;
	align-items: center;
	gap: 0.55rem;
	padding: 0.35rem 0.5rem;
	border: 1px solid rgba(67, 107, 164, 0.2);
	border-radius: 10px;
	background: var(--color-white);
}

.recruit-eto-section .eto-chart__item img {
	width: 42px;
	height: 42px;
	object-fit: cover;
	border-radius: 8px;
	border: 1px solid rgba(67, 107, 164, 0.25);
}

.recruit-eto-section .eto-chart__label {
	font-weight: 700;
	color: var(--tertiary-color);
	text-align: center;
}

.recruit-eto-section .eto-chart__bar-wrap {
	height: 11px;
	background: #e9eef7;
	border-radius: 999px;
	overflow: hidden;
}

.recruit-eto-section .eto-chart__bar {
	display: block;
	height: 100%;
	width: var(--ratio, 0%);
	background: linear-gradient(90deg, var(--primary-color), var(--tertiary-color));
	border-radius: 999px;
}

.recruit-eto-section .eto-chart__value {
	font-weight: 700;
	color: #23456f;
	min-width: 2.8em;
	text-align: right;
}

.recruit-eto-section .recruit-eto-message {
	position: relative;
	margin: 0;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.recruit-eto-section .recruit-eto-message__bubble {
	position: absolute;
	right: 12px;
	bottom: 12px;
	max-width: 72%;
	padding: 0.75rem 0.95rem;
	background: rgba(255, 255, 255, 0.93);
	border: 1px solid rgba(67, 107, 164, 0.35);
	border-radius: 12px;
	font-weight: 700;
	line-height: 1.55;
	color: #1b2f4a;
}

@media (max-width: 767px) {
	.recruit-eto-section .eto-xy-chart {
		grid-template-columns: 28px 1fr;
	}

	.recruit-eto-section .eto-xy-chart__y-scale {
		height: 165px;
		font-size: 0.72rem;
	}

	.recruit-eto-section .eto-xy-chart__bars {
		height: 165px;
		gap: 0.45rem;
		padding-left: 0.45rem;
		background-image: repeating-linear-gradient(to top, rgba(140, 169, 206, 0.18) 0 1px, transparent 1px 41px);
	}

	.recruit-eto-section .eto-xy-chart__bars li {
		flex-basis: 48px;
	}

	.recruit-eto-section .eto-xy-chart__bar {
		width: 17px;
		height: calc((var(--value, 0) / 4) * 118px);
	}

	.recruit-eto-section .eto-xy-chart__bars img {
		width: 30px;
		height: 30px;
	}

	.recruit-eto-section .eto-xy-chart__count {
		font-size: 0.76rem;
	}

	.recruit-eto-section .eto-chart__item {
		grid-template-columns: 38px 1.6em 1fr auto;
		gap: 0.45rem;
	}

	.recruit-eto-section .eto-chart__item img {
		width: 38px;
		height: 38px;
	}

	.recruit-eto-section .recruit-eto-message__bubble {
		position: static;
		max-width: 100%;
		border-radius: 0 0 12px 12px;
		border-top: none;
	}
}

/* ================================================== */
/* 採用案内トップ: 先輩の声誘導セクション */
/* ================================================== */

.recruit-voice-teaser {
	position: relative;
	background:
		radial-gradient(600px 300px at 85% 20%, rgba(254, 231, 74, 0.25), transparent 65%),
		radial-gradient(540px 280px at 15% 80%, rgba(72, 177, 251, 0.2), transparent 70%),
		linear-gradient(140deg, #11233a 0%, #0a1629 100%);
}

.recruit-voice-teaser .subtitle {
	color: var(--secondary-color);
}

.recruit-voice-teaser p {
	line-height: 1.9;
	opacity: 0.95;
}

.recruit-voice-teaser__grid {
	row-gap: 1rem;
}

.recruit-voice-teaser__person {
	position: relative;
	display: block;
	border-radius: 14px;
	overflow: hidden;
	text-decoration: none;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.recruit-voice-teaser__person:hover {
	transform: translateY(-5px);
	border-color: rgba(254, 231, 74, 0.6);
	box-shadow: 0 14px 26px rgba(0, 0, 0, 0.35);
}

.recruit-voice-teaser__img {
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	filter: grayscale(1) contrast(1.55) brightness(0.33);
	transform: scale(1.02);
	transition: filter 0.3s ease, transform 0.3s ease;
}

.recruit-voice-teaser__person:hover .recruit-voice-teaser__img {
	filter: grayscale(1) contrast(1.45) brightness(0.4);
	transform: scale(1.06);
}

.recruit-voice-teaser__nickname {
	position: absolute;
	left: 10px;
	bottom: 10px;
	padding: 0.3rem 0.6rem;
	font-size: 0.88rem;
	font-weight: 700;
	color: #081120;
	background: var(--secondary-color);
	border-radius: 999px;
	letter-spacing: 0.05em;
}

.recruit-voice-teaser__hint {
	position: absolute;
	top: 10px;
	right: 10px;
	padding: 0.2rem 0.55rem;
	font-size: 0.72rem;
	font-weight: 700;
	color: var(--color-white);
	border: 1px solid rgba(255, 255, 255, 0.45);
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.24);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

@media (max-width: 991px) {
	.recruit-voice-teaser {
		background:
			radial-gradient(320px 220px at 85% 15%, rgba(254, 231, 74, 0.22), transparent 70%),
			linear-gradient(140deg, #11233a 0%, #0a1629 100%);
	}
}



/* News Section - Cleaned */

/* ========================================
	News Top - 新規作成
	======================================== */
.news-top {
  width: 100%;
  height: 220px;
  overflow: auto;
  overflow-x: hidden;
}

.news-top dl {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
	gap: 10px;
  border-bottom: 1px solid var(--tertiary-color);
  padding: 15px 0;
  margin: 0;
}

.news-top dl:last-child {
  border-bottom: none;
}

.news-top dt {
  flex: 0 0 25%;
  width: 25%;
  font-weight: bold;
  margin: 0;
  padding: 0;
}

.news-top dd {
  flex: 1;
  margin: 0;
  padding: 0;
}

.news-top dt a,
.news-top dd a {
  text-decoration: none;
  color: inherit;
}

/* タブレット以下 */
@media (max-width: 768px) {
  .news-top dl {
    flex-direction: column;
    gap: 8px;
  }
  
  .news-top dt {
    width: 100%;
  }
  
  .news-top dd {
    width: 100%;
  }
}
