@charset "UTF-8";

/* ---- Hero slider ---- */
.hero-slider {
	position: relative;
	min-height: 440px;
	overflow: hidden;
	background: #DCEEF4;
}
.hero-slider_track { position: relative; height: 440px; }
.hero-slider_slide {
	position: absolute; inset: 0;
	opacity: 0;
	transition: opacity .8s ease;
}
.hero-slider_slide.is-active { opacity: 1; }
.hero-slider_slide img { width: 100%; height: 100%; object-fit: cover; }

.hero-slider_dots {
	position: absolute; left: 50%; bottom: 20px; transform: translateX(-50%);
	display: flex; gap: 8px; z-index: 2;
}
.hero-slider_dot {
	width: 8px; height: 8px; border-radius: 50%;
	background: rgba(255, 255, 255, 0.5); border: none; padding: 0; cursor: pointer;
}
.hero-slider_dot.is-active { background: #fff; }

.hero-slider_ttl {
	position: absolute; left: 0; right: 0; bottom: 40px; z-index: 2;
	max-width: 1080px; margin: 0 auto; padding: 0 32px;
}
.hero-slider_ttl h2 {
	font-size: 1.9rem; color: #fff; margin: 0;
	text-shadow: 0 2px 14px rgba(0, 0, 0, .25);
}

/* ---- Mobile-only quick links ---- */
.employ_sp, .news_sp { display: none; }
@media (max-width: 767px) {
	.employ_sp { display: flex; flex-wrap: wrap; gap: 1px; background: var(--line); }
	.employ_sp_list { display: contents; }
	.employ_sp_list li { flex: 1 1 45%; background: #fff; }
	.employ_sp_list a { display: block; padding: 14px; text-align: center; font-size: .82rem; }
	.news_sp { background: #fff; border-top: 1px solid var(--line); }
	.news_sp a { display: block; padding: 14px; text-align: center; font-size: .82rem; }
}

.section-pad { padding: 64px 32px; }

/* ---- MISSION / VISION / VALUE ---- */
.mmv { padding: 64px 32px; max-width: 1080px; margin: 0 auto; }
.mmv_heading { text-align: center; margin-bottom: 2.6rem; }
.mmv_heading h3 { font-size: 1.4rem; letter-spacing: .02em; margin: 0; }
.mmv_heading p { font-size: .86rem; color: var(--ink-soft); margin-top: .4rem; }

.mmv_item { display: flex; gap: 2.4rem; align-items: center; padding: 2.4rem 0; border-top: 1px solid var(--line); }
.mmv_item:first-of-type { border-top: none; }
.mmv_item.even { flex-direction: row-reverse; }
.mmv_item_pic { flex: 0 0 280px; }
.mmv_item_pic img { border-radius: 10px; width: 100%; }
.mmv_item_catch h4 { font-size: 1.1rem; letter-spacing: .06em; color: var(--green-800); margin: 0; }
.mmv_item_catch p { font-size: .82rem; color: var(--ink-soft); margin: .3rem 0 1rem; }
.mmv_item_text p { font-size: .86rem; color: var(--ink-soft); margin: 0 0 .8rem; }

@media (max-width: 767px) {
	.mmv_item, .mmv_item.even { flex-direction: column; }
	.mmv_item_pic { flex: none; width: 100%; }
}

/* ---- CTA (job entry points) ---- */
.cta-jobs { padding: 56px 32px 64px; max-width: 1080px; margin: 0 auto; }
.cta-jobs_heading { text-align: center; margin-bottom: 2.2rem; }
.cta-jobs_heading h3 { font-size: 1.4rem; margin: 0; }
.cta-jobs_heading p { font-size: .86rem; color: var(--ink-soft); margin-top: .4rem; }
.cta-jobs_grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.cta-jobs_btn {
	flex: 0 0 300px; display: flex; align-items: center; justify-content: center; gap: 6px;
	padding: 1rem 1.4rem; border-radius: 8px; border: 2px solid var(--green-600);
	background: #fff; color: var(--green-800); font-size: .92rem; font-weight: 700;
	text-align: center; transition: background .15s, color .15s;
}
.cta-jobs_btn:hover { background: var(--green-600); color: #fff; }
.cta-jobs_btn .external-icon { width: 11px; height: 11px; opacity: .7; }
.cta-jobs_btn:hover .external-icon { filter: brightness(0) invert(1); opacity: .9; }

@media (max-width: 767px) {
	.cta-jobs_btn { flex: 0 0 100%; }
}

/* ---- MESSAGE ---- */
.message { background: var(--stone); padding: 64px 32px; }
.message_heading { text-align: center; margin-bottom: 2.2rem; max-width: 1080px; margin-left: auto; margin-right: auto; }
.message_heading h3 { font-size: 1.4rem; margin: 0; }
.message_heading p { font-size: .86rem; color: var(--ink-soft); margin-top: .4rem; }
.message_layout { max-width: 760px; margin: 0 auto; }
.message_catch { text-align: center; }
.message_catch h4 { font-size: 1.15rem; margin: 0 0 1rem; }
.message_text p { font-size: .88rem; color: var(--ink-soft); margin: 0 0 1rem; }

/* ---- MESSAGE artwork banner ---- */
.message-artwork { background: var(--stone); line-height: 0; }
.message-artwork img { width: 100%; height: auto; display: block; }

/* ---- DATA ---- */
.data { padding: 64px 32px; max-width: 1080px; margin: 0 auto; }
.data_heading { text-align: center; margin-bottom: .6rem; }
.data_heading h3 { font-size: 1.4rem; margin: 0; }
.data_heading p { font-size: .86rem; color: var(--ink-soft); margin-top: .4rem; }
.data_intro { text-align: center; margin-bottom: 2.4rem; font-size: .86rem; color: var(--ink-soft); }

.data_grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.data_item { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 1.2rem 1.3rem; }
.data_item-wide { grid-column: span 2; }
.data_item_hd { font-size: .78rem; color: var(--ink-soft); margin-bottom: .6rem; font-weight: 700; }
.data_item_figure img { width: 100%; border-radius: 6px; }
.data_item_note { font-size: .78rem; color: var(--ink-soft); margin: .6rem 0; }
.data_item_note span { font-weight: 700; color: var(--green-800); }
.data_item_value {
	font-family: var(--sans); font-size: 1.55rem; font-weight: 700;
	color: var(--green-800); font-variant-numeric: tabular-nums; margin: .4rem 0 0;
}
.data_item_value .unit { font-size: .8rem; font-weight: 500; color: var(--ink-soft); margin-left: .15rem; }
.data_item_caption { font-size: .7rem; color: #999; margin-top: .4rem; }
.data_item_row { display: flex; gap: .8rem; margin-top: .6rem; }
.data_item_col { flex: 1; text-align: center; }
.data_item_col img { width: 32px; height: 32px; margin: 0 auto .4rem; }
.data_item_col_name { font-size: .74rem; color: var(--ink-soft); margin: 0; }
.data_item_col_value { font-size: 1.1rem; font-weight: 700; color: var(--green-800); margin: .2rem 0 0; }
.data_item_col_value .unit { font-size: .7rem; font-weight: 500; color: var(--ink-soft); }

@media (max-width: 900px) {
	.data_grid { grid-template-columns: repeat(2, 1fr); }
	.data_item-wide { grid-column: span 2; }
}
@media (max-width: 520px) {
	.data_grid { grid-template-columns: 1fr; }
	.data_item-wide { grid-column: span 1; }
}

/* ---- MORE ---- */
.more { text-align: center; padding: 56px 32px 72px; }
.more_catch { font-size: .94rem; color: var(--ink-soft); margin-bottom: 1.2rem; }
.more_link {
	display: inline-block; padding: .85rem 2.2rem; border-radius: 100px;
	background: var(--green-600); color: #fff; font-size: .86rem; font-weight: 700;
	transition: background .15s;
}
.more_link:hover { background: var(--green-800); }
