/* リセット・ベーススタイル */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	font-size: 62.5%;
}

body {
	font-family: "Hiragino Kaku Gothic Pro", "Hiragino Sans", "Meiryo", "MS PGothic", sans-serif;
	font-size: 1.6rem;
	line-height: 1.6;
	color: #111111;
	background-color: #F2F2F2;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

h1, h2 {
	font-family: "Zen Kaku Gothic New", sans-serif;
}

/* PC/SP出し分け */
.pc-only {
	display: block !important;
}

.sp-only {
	display: none !important;
}

.mb0-sp{
	margin-bottom: 0 !important;
}

/* 画像プレースホルダー */
img[src=""],
img:not([src]) {
	background-color: #989898;
	min-height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
}

img[src=""]::before,
img:not([src])::before {
	content: "画像";
	color: #999999;
	font-size: 1.4rem;
}

a {
	text-decoration: none;
	color: inherit;
}

a:hover img {
	opacity: 0.7;
}

ul {
	list-style: none;
}

.container {
	width: 1200px;
	margin: 0 auto;
	padding: 0;
}
section {
	min-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ボタンスタイル */
.btn {
	display: inline-block;
	padding: 12px 32px;
	border-radius: 4px;
	font-size: 1.4rem;
	font-weight: bold;
	text-align: center;
	cursor: pointer;
	border: none;
}

.btn-primary {
	background-image: linear-gradient(90deg, #e51f41, #810104);
	color: #ffffff;
}

.btn-primary:hover {
	background: #7E0002;
}

.btn-outline {
	background-color: transparent;
	border: 1px solid #0041B1;
	color: #0041B1;
}

.btn-outline:hover {
	background-color: #0041B1;
	color: #ffffff;
}

.btn-search {
	background-color: #0041B1;
	color: #ffffff;
	padding: 12px 48px;
}

.btn-search:hover {
	background-color: #00286C;
}

/* セクションタイトル */
.section-title {
	font-size: 2.2rem;
	font-weight: bold;
	color: #111111;
	margin-bottom: 24px;
}

.section-title.line {
	font-size: 2.2rem;
	border-left: 4px solid #0041B1;
	padding-left: 18px;
	margin-bottom: 20px;
}

.section-title img {
	vertical-align: middle;
	margin-right: 10px;
	display: inline-block;
	margin-top: -5px;
}

.section-subtitle {
	font-size: 1.8rem;
	color: #333333;
	text-align: center;
	margin-bottom: 16px;
}

/* ヘッダー */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background-color: #ffffff;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	transition: background-color 0.3s, box-shadow 0.3s;
	backdrop-filter: blur(32px);
  	-webkit-backdrop-filter: blur(32px); /* Safari用 */}

.header-inner {
	min-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.header-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 0;
}

.logo a {
	font-size: 1.8rem;
	font-weight: bold;
	color: #0041B1;
}

.logo img {
	height: auto;
	width: 253px;
}

.header-nav-top {
	display: flex;
	gap: 10px;
	justify-content: end;
}

.header-nav-top .nav-link {
	font-size: 1.4rem;
	color: #fff;
	font-weight: bold;
	background: #0041B1;
	padding: 10px 24px;
	border-radius: 0 0 10px 10px;

}

.header-nav-top .nav-link img {
	display: inline-block;
	vertical-align: middle;
	margin-right: 4px;
	width: 24px;
}

.header-nav-top .nav-link.toplink01 {
	background: none;
	background-image: linear-gradient(90deg, #e51f41, #810104);
}

.header-nav-top .nav-link:hover {
	background:#00286C;
}

.header-nav-top .nav-link.toplink01:hover {
	background:#7E0002;
}


.header-nav-main {
	position: relative;
}

.nav-list {
	display: flex;
	align-items: center;
	gap: 32px;
	padding: 20px 0 0;
}

.nav-list > li {
	position: relative;
}

.nav-list > li > a {
	font-size: 1.6rem;
	color: #151515;
	padding: 2px 0 12px;
	display: block;
	transition: color 0.3s;
	font-weight: bold;
	cursor: pointer;
}

.nav-list > li.cur > a::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #0041B1;
}

.nav-list > li.has-mega-menu > a::after {
	content: "";
	background: url("/common/img/icon_drop.svg") no-repeat center;
	background-size: contain;
	display: inline-block;
	vertical-align: middle;
	margin-left: 6px;
	width: 16px;
	height: 16px;
}

.nav-list > li.has-mega-menu.open {
	position: relative;
}

.nav-list > li.has-mega-menu.open::after {
	position: absolute;
	content: "";
	background: #DCDCDC;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 4px;
}

.nav-list > li.has-mega-menu.open > a::after {
	background: url("/common/img/icon_up.svg") no-repeat center;
	background-size: contain;
	width: 16px;
	height: 16px;
}

.nav-list > li > a:hover {
	color: #0041B1;
}

/* メガドロップダウン */
.has-mega-menu {
	position: static;
}

.mega-menu {
	position: fixed;
	top: 104px;
	left: 0;
	width: 100vw;
	min-width: 1200px;
	background-color: #ffffff;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	display: none;
	padding: 0;
	z-index: 100;
}

.has-mega-menu.open .mega-menu {
	display: block;
	background: #F2F2F2;
}

.has-mega-menu.open .mega-menu .close-btn {
	position: absolute;
	top: 20px;
	right: 40px;
	background: none;
	border: none;
	font-size: 1.4rem;
	cursor: pointer;
	text-align: center;
	z-index: 2;
}

.has-mega-menu.open .mega-menu .close-btn img {
	display: block;
	text-align: center;
	margin: 0 auto 4px;
}

.mega-menu-content {
	display: flex;
	width: 100%;
	margin: 0 auto;
	height: 400px;
}

/* ===== 左：画像 ===== */
.mega-menu-image {
	width: 540px;
	overflow: hidden;
}

.mega-menu-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ===== 右：リンク群 ===== */
.mega-menu-columns {
	width: calc(100% - 540px);
	padding: 60px;
	position: relative;
}

/* タイトル */
.mega-menu-title {
	font-size: 2.4rem;
	font-weight: bold;
	margin: 0 0 24px;
}

/* カラム（既存クラス流用） */
.mega-menu-column ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	gap: 10px;
}

.mega-menu-column ul li {
	width: calc(50% - 20px);
}

/* 横幅いっぱい */
.mega-menu-column.full ul li {
	margin-top: 10px;
}

/* リンクボックス化 */
.mega-menu-column a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #fff;
	padding: 13px 20px;
	text-decoration: none;
	color: #000;
	border-radius: 4px;
	font-size: 1.6rem;
	font-weight: bold;
	position: relative;
	transition: 0.2s;
}

.mega-menu-column a:hover {
	opacity: 0.8;
}

/* 右矢印 */
.mega-menu-column a::after {
	content: "";
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	background: url("../common/img/icon_arrow.svg") no-repeat;
	background-size: 100% auto;
	width: 20px;
	height: 20px;
	display: block;
	vertical-align: middle;
}

/* ハンバーガーメニュー（SP用） */
.hamburger-menu {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	text-align: center;
}

.hamburger-menu span {
	width: 24px;
	height: 2px;
	background-color: #111111;
	transition: all 0.3s;
}

.hamburger-menu.active span:nth-child(1) {
	transform: rotate(45deg) translate(3px, 3px);
}

.hamburger-menu.active span:nth-child(2) {
	opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background-color: #F2F2F2;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	max-height: 0;
	padding: 0 20px;
	overflow: hidden;
	transition: max-height 0.3s;
}

.mobile-menu.active {
	max-height: 100vh;
		padding: 10px 20px 100px;
	overflow-y: scroll;
}

/* ヒーローセクション */
.hero {
	margin-top: 103px;
	background-color: #F5F5F5;
	background-image: url("../img/top_kv.jpg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding: 54px 0 220px;
	/* 下にクイック検索の重なり分を確保 */
	position: relative;
}

.hero-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 48px;
	position: relative;
	z-index: 1;
}

.hero-content {
	flex: 1;
	max-width: 560px;
}

.hero-title {
	margin-bottom: 18px;
}

.hero-title-main {
	display: block;
	font-size: 3.6rem;
	font-weight: 800;
	color: #111111;
	margin-bottom: 8px;
	letter-spacing: 0.02em;
	line-height: 1.2;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	padding: 10px 14px;
	border: 1px solid #0041B1;
	color: #0041B1;
	border-radius: 4px;
	font-size: 3.4rem;
	font-weight: bold;
	line-height: 1;
	margin-right: 10px;
}

.hero-title-sub {
	display: block;
	font-size: 6.6rem;
	font-weight: 900;
	color: #111111;
	line-height: 1.5;
	letter-spacing: 0.01em;
}

.hero-description {
	font-size: 1.8rem;
	color: #111;
	margin-bottom: 32px;
	line-height: 2;
	font-weight: bold;
}

.btn-hero {
	font-size: 2rem;
	padding: 15px 60px;
	border-radius: 60px;
}

.btn-hero::before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 32px;
	height: 32px;
	background: url("/common/img/icon_cvt.svg") no-repeat;
	background-size: 100% auto;
	margin-right: 10px;
}

/* クイックお仕事検索 */
.quick-search {
	padding: 0 0 220px;
	background-color: transparent;
	position: relative;
	z-index: 2;
	margin-top: -158px;
	/* KVに少し重ねる */
}

.quick-search-layout {
	display: flex;
	gap: 24px;
	align-items: stretch;
}

.quick-search-panel {
	flex: 0 0 520px;
	background-color: #ffffff;
	border-radius: 4px;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
	padding: 20px;
	border-top: 3px solid #111111;
}

.quick-search-title {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1.8rem;
	font-weight: 800;
	color: #111111;
	margin-bottom: 16px;
}

.quick-search-title-icon {
	width: 20px;
	height: 20px;
}

.job-type-select{
	color: #111;
}

/*.job-type-select:valid {
	color: #111;
}*/

select.job-type-select {
  background-color: #fff;
}

.search-form {
	margin-bottom: 0;
	display: flex;
	gap: 8px;
	align-items: flex-end;
}

.search-filters {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	margin-bottom: 0;
	flex: 1;
}

.filter-group {
	display: flex;
}

.filter-group-region {
	grid-column: 1 / -1;
}

.filter-group label {
	display: block;
	font-size: 1.6rem;
	font-weight: bold;
	margin-bottom: 12px;
	color: #111111;
	width: 45px;
	margin-top: 16px;
}

.filter-group.filter-group-region label {
	margin-top: 6px;
}

.region-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	width: calc(100% - 50px);
}

.region-btn {
	padding: 6px 10px;
	background-color: #ffffff;
	border: 1px solid #BCBCBC;
	border-radius: 4px;
	font-size: 1.4rem;
	color: #111111;
	cursor: pointer;
	transition: all 0.3s;
	display: inline-block;
}

.region-btn input[type="checkbox"] {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	width: 0 !important;
	height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	border: none !important;
	display: none !important;
	visibility: hidden !important;
	position: absolute !important;
	pointer-events: none !important;
}

label.region-btn {
	width: auto !important;
	font-size: 1.4rem !important;
	font-weight: normal !important;
	margin: 0 !important;
}

.region-btn:hover {
	background-color: #f1f5fb;
}

label.region-btn:has(input[type="checkbox"]:checked) {
	background-color: #EAF2FF;
	color: #0041B1;
	font-weight: bold;
	border-color: #0041B1;
}

.job-type-select,
.keyword-input {
	width: 310px;
	padding: 6px 10px;
	border: 1px solid #CCCCCC;
	border-radius: 4px;
	font-size: 1.6rem;
	margin-top: 10px;
}

.btn-search {
	padding: 8px 20px;
	border-radius: 4px;
	white-space: nowrap;
	margin-top: 10px;
	margin-left: 16px;
	font-size: 1.6rem;
}

.featured-jobs {
	flex: 1;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.featured-job-card {
	background-color: #ffffff;
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: 0.2s;
	display: block;
	position: relative;
	padding-top: 44px;
	/* タイトル帯分 */
	border-top: 3px solid #111111;
}

.featured-job-card:hover h3{
	text-decoration: underline;
}

.featured-job-card::after {
	content: "";
	position: absolute;
	top: 30px;
	right: 16px;
	width: 18px;
	height: 18px;
	background: url("/common/img/icon_arrow.svg") no-repeat center / contain;
}

.featured-job-card img {
	width: 100%;
	height: 180px;
	object-fit: cover;
}

.featured-job-card h3 {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	padding: 12px 44px 12px 16px;
	font-size: 1.6rem;
	font-weight: bold;
	color: #111111;
	background: rgba(255, 255, 255, 0.96);
}

.featured-job-card--red h3 strong {
	color: #E60012;
}

.featured-job-card--green h3 strong {
	color: #0E7A2D;
}

.featured-job-card--blue h3 strong {
	color: #0041B1;
}

/* 新着お仕事情報 */
.new-jobs {
	padding: 60px 0 10px;
	background-color: #fff;
	position: relative;
}

.new-jobs.gray-wrap {
	padding: 0;
	position: relative;
}

.new-jobs .container {
	position: relative;
	margin-top: -220px;
}

.new-jobs.gray-wrap .container {
	margin-top: 0;
	top: -150px;
}

.job-listings {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.job-card {
	position: relative;
	z-index: 2;
	background-color: #ffffff;
	padding: 0;
	border-radius: 4px;
	border-top: 1px solid #111111;
}


.job-card:hover {
	background-color: #EAF2FF;
}

.job-card a {
	display: block;
	padding: 20px 24px;
	text-decoration: none;
}

.job-badge {
	display: inline-block;
	padding: 4px 12px;
	border-radius: 4px;
	font-size: 1.2rem;
	font-weight: bold;
	margin-bottom: 12px;
}

.job-title {
	font-size: 1.6rem;
	font-weight: bold;
	color: #111111;
	margin-bottom: 12px;
	line-height: 1.5;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.job-card:hover .job-title {
	text-decoration: underline;
}

.job-salary {
	font-size: 1.4rem;
	color: #111;
	margin-bottom: 8px;
}

.job-salary::before {
	content: "";
	background: url("/common/img/icon_yen.svg") no-repeat;
	background-size: 100% auto;
	width: 16px;
	height: 16px;
	display: inline-block;
	vertical-align: middle;
	margin-top: -4px;
	margin-right: 6px;
}

.job-location {
	font-size: 1.4rem;
	color: #111;
	margin-bottom: 8px;
}

.job-location::before {
	content: "";
	background: url("/common/img/icon_map.svg") no-repeat;
	background-size: 100% auto;
	width: 16px;
	height: 16px;
	display: inline-block;
	vertical-align: middle;
	margin-top: -4px;
	margin-right: 6px;
}

.job-tag {
	font-size: 1.2rem;
	color: #fff;
	background: #505050;
	font-weight: bold;
	display: inline-block;
	padding: 2px 6px;
	border-radius: 4px;
	margin: 0 !important;
}

.job-card .btn-outline {
	width: 114px;
	position: absolute;
	bottom: 15px;
	right: 24px;
	text-align: center;
	font-size: 1.4rem;
	padding: 5px 8px;
	border-radius: 20px;
	background: transparent;
	color: #0041B1;
	justify-content: center;
}

.job-card .btn-outline::after {
	content: "";
	background: url("/common/img/icon_arrow.svg") no-repeat;
	background-size: 100% auto;
	width: 16px !important;
	height: 18px;
	display: inline-block;
	vertical-align: middle;
	margin-left: 2px;
	position: inherit;
	right: 6px;
	top: 50%;
	transform: translateY(-50%);
}

.job-card:hover .btn-outline {
	background: none;
	color: #0041B1;
	opacity: 0.8;
}

/* 無料ITスクール開校 */
.it-school {
	padding: 0;
	background-color: #fff;
	color: #ffffff;
}

.it-school.mt-set {
	margin-top: -140px;
	position: relative;
	z-index: 3;
	padding-bottom: 100px;
}

.it-school-image img {
	width: 100%;
	border-radius: 8px;
}

/* お知らせ・キャンペーン */
.news-campaign {
	padding: 80px 0 80px;
	background-color: #ffffff;
}

.news-campaign-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
}

.news-list {
	display: flex;
	flex-direction: column;
}


.news-item {
	display: block;
	border-bottom: 1px dotted #989898;
}

.news-item a:hover .news-title-text{
    text-decoration: underline;
}

.news-item:first-child {
	border-top: 1px dotted #989898;
}

.news-item:first-child a {
	padding-top: 20px;
}

.news-item a,.news-item span.is-nolink {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	padding: 20px 0;
	position: relative;
}

.news-item span.is-nolink {
	padding-right: 40px;
}

.news-item a::after {
	content: "";
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	background: url("/common/img/icon_arrow.svg") no-repeat;
	background-size: 100% auto;
	width: 24px;
	height: 24px;
	display: block;
	vertical-align: middle;
}

.news-item.pdf a::after {
	content: "";
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	background: url("/common/img/icon_pdf.svg") no-repeat;
	background-size: 100% auto;
	width: 24px;
	height: 24px;
	display: block;
	vertical-align: middle;
}

.news-item.blank a::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: url("/common/img/icon_blank.svg") no-repeat;
    background-size: 100% auto;
    width: 24px;
    height: 24px;
    display: block;
}

.news-date {
	font-size: 1.6rem;
	color: #111;
	white-space: nowrap;
	margin-right: 12px;
}

.news-category {
	font-size: 1.2rem;
	color: #111;
	background: #D9E7FF;
	padding: 2px 26px;
	font-weight: bold;
	white-space: nowrap;
	max-width: 100px;
	display: flex;
    align-items: center;
    justify-content: center;
	border-radius: 4px;
}

.news-title-text {
	font-size: 1.6rem;
	color: #111111;
	width: calc(100% - 50px);
}

.link-more {
	display: inline-block;
	margin-top: 16px;
	font-size: 1.6rem;
	color: #000000;
}

.link-more:hover {
	text-decoration: underline;
}

.link-more::after {
	content: "";
	background: url("/common/img/icon_arrow.svg") no-repeat;
	background-size: 100% auto;
	width: 16px;
	height: 16px;
	display: inline-block;
	vertical-align: middle;
	margin-left: 6px;
}

.campaign-card a {
	display: flex;
	align-items: center;
	gap: 24px;
	background: #fff;
	padding: 20px 0;
	position: relative;
	border-top: 1px dotted #989898;
	border-bottom: 1px dotted #989898;
}


.campaign-card a::after {
	content: "";
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	background: url("/common/img/icon_arrow.svg") no-repeat;
	background-size: 100% auto;
	width: 24px;
	height: 24px;
	display: block;
	vertical-align: middle;
}

.campaign-card a:hover .campaign-content span.lv3{
    text-decoration: underline;
	font-size: 2rem;
    font-weight: 700;
    margin: 0 0 8px;
    line-height: 1.4;
}

/* 左画像 */
.campaign-card img {
	width: 180px;
	height: 120px;
	object-fit: cover;
	border-radius: 4px;
	flex-shrink: 0;
}

/* 右コンテンツ */
.campaign-content {
	flex: 1;
}

.campaign-content a {
	display: block;
	color: #000;
	text-decoration: none;
	position: relative;
	padding-right: 32px;
	/* 矢印分 */
}

/* タイトル */
.campaign-content span.lv3 {
	font-size: 2rem;
	font-weight: 700;
	margin: 0 0 8px;
	line-height: 1.4;
	display: block;
}

/* 説明文 */
.campaign-content span.text {
	font-size: 1.4rem;
	line-height: 1.6;
	margin: 0 0 10px;
	display: block;
}

/* 強調 */
.campaign-content strong {
	font-weight: 700;
}

.campaign-content .red {
	color: #e60000;
}

/* 期限 */
.campaign-content .date {
	display: inline-block;
	border: 1px solid #505050;
	padding: 2px 6px;
	font-size: 1.3rem;

}


/* hover */
.campaign-content a:hover {
	opacity: 0.85;
}

/* CMSで働くメリット */
.benefits {
	padding: 80px 0;
	background-color: #E8F0F5;
	position: relative;
	overflow: hidden;
	background: url("../img/top_merit_bg.jpg") no-repeat center;
	background-size: cover;
}

.benefits-inner {
	width: 1200px;
	margin: 0 auto;
	padding: 0;
	display: block;
	gap: 0;
	align-items: stretch;
	position: relative;
	z-index: 1;
}

.benefits-content {
	position: relative;
	width: 760px;
}

.benefits-label {
	display: inline-block;
	padding: 5px 12px;
	border: 1px solid #111111;
	border-radius: 4px;
	font-size: 1.6rem;
	font-weight: bold;
	color: #111111;
	margin-bottom: 20px;
}

.benefits-headline {
	font-size: 3rem;
	font-weight: bold;
	color: #111111;
	margin-bottom: 10px;
	line-height: 1.3;
}

.benefits-description {
	font-size: 1.8rem;
	color: #111111;
	margin-bottom: 20px;
	line-height: 2;
	font-weight: 400;
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	margin-bottom: 32px;
}

.benefit-item {
	display: flex;
	flex-wrap: wrap;
	background-color: #ffffff;
	padding: 20px 18px;
	border-radius: 4px;
	border-left: 2px solid #0041B1;
	text-align: left;
}

.benefit-item.full {
	grid-column: 1 / -1;
	padding-bottom: 10px;
}

.benefit-icon {
	width: 48px;
	height: 48px;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.benefit-item.full .benefit-icon {
	width: 100px;
	height: 100px;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.benefit-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.benefit-text {
	width: calc(100% - 70px);
	margin-left: 20px;
}

.benefit-item.full .benefit-text {
	width: calc(100% - 120px);
}

.benefit-item h3 {
	font-size: 1.8rem;
	font-weight: bold;
	color: #111111;
	margin-bottom: 8px;
	line-height: 1.4;
}

.benefit-description {
	font-size: 1.4rem;
	color: #333333;
	line-height: 1.7;
	margin: 0;
}

.benefit-item--sp-only {
	display: none;
}

.btn-benefits {
	background-color: #111111;
	color: #ffffff;
	padding: 13px 30px 13px 28px;
	border: #111 1px solid;
	border-radius: 60px;
	font-size: 1.6rem;
	font-weight: bold;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: background-color 0.3s;
	position: relative;
	padding-right: 48px;
}

.btn-benefits::after {
	content: "";
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	background: url("/common/img/icon_arrow-white.svg") no-repeat;
	background-size: 100% auto;
	width: 24px;
	height: 24px;
	display: block;
	vertical-align: middle;
}

.btn-benefits:hover {
	background-color: #fff;
	border: #111 1px solid;
	color: #111;
}

.btn-benefits:hover::after {
	background: url("/common/img/icon_arrow-black.svg") no-repeat;
}

.benefits-image-area {
	flex: 1;
	background-image: url("../img/top_merit_bg.jpg");
	background-repeat: no-repeat;
	background-position: center right;
	background-size: cover;
	min-height: 600px;
}

/* CMSの働き方について */
.how-to-work {
	background: #fff;
	padding: 60px 0 100px;
}

.how-to-work-grid {
	display: flex;
	gap: 60px;
	justify-content: center;
}

.how-to-work-content,
.career-support {
	width: 100%;
}

.how-to-work-content {
	max-width: 570px;
}

.career-support {
	max-width: 570px;
	background: #f5f5f5;
	padding: 32px 40px;
	border-radius: 10px;
}

/* ===== セクションタイトル ===== */
.section-title {
	font-size: 2.2rem;
	font-weight: bold;
	margin: 0 0 15px;
}

.container-inn{
    width: 1200px;
    margin: 0 auto;
}

.section-title-big {
	font-size: 3rem;
	font-weight: bold;
	margin: 0 0 8px;
}

/* 説明文 */
.work-desicription {
	font-size: 1.8rem;
	color: #111;
	margin: 0 0 24px;
}

.work-links a {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 26px 8px;
	text-decoration: none;
	color: #000;
	position: relative;
}

.work-links a::after {
	content: "";
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	background: url("/common/img/icon_arrow.svg") no-repeat;
	background-size: 100% auto;
	width: 24px;
	height: 24px;
	display: block;
	vertical-align: middle;
}

/* ===== 左：リンクリスト ===== */
.work-links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.work-links li {
	border-top: 1px dotted #989898;
}

.work-links li:last-child {
	border-bottom: 1px dotted #989898;
}

.work-links li:hover .work-link-title {
    color: #0041B1;
	text-decoration: underline;
}

.work-links li:hover .work-link-subtitle {
	text-decoration: underline;
}


/* アイコン */
.work-links .text img {
	width: 44px;
	height: 44px;
}

/* テキストブロック */
.text-block {
	display: flex;
	flex-direction: column;
}

/* タイトル */
.work-link-title {
	font-size: 1.8rem;
	font-weight: bold;
	margin-bottom: 6px;
}

/* サブタイトル */
.work-link-subtitle {
	font-size: 1.4rem;
	color: #111;
	line-height: 1.8;
}

/* hover */
.work-links a:hover {

}

/* ===== 右：キャリア支援 ===== */
.career-cards {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 20px;
}

/* カード */
.career-card {
	cursor: pointer;
}

.career-card a {
	background: #fff;
	border-radius: 4px;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 16px;
	cursor: pointer;
	position: relative;
}

.career-card a:hover h3{
    color: #0041B1;
    text-decoration: underline;
}

.career-card a::after {
	content: "";
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	background: url("/common/img/icon_arrow.svg") no-repeat;
	background-size: 100% auto;
	width: 24px;
	height: 24px;
	display: block;
	vertical-align: middle;
}

/* 画像 */
.career-card img {
	width: 140px;
	height: 100px;
	object-fit: cover;
	border-radius: 4px 0px 0px 4px;
}

/* カードタイトル */
.career-card h3 {
	font-size: 1.8rem;
	font-weight: bold;
	margin: 0;
}

/* hover */
.career-card:hover {
	background: #f0f0f0;
}

/* 派遣の知識 */
.dispatch-knowledge {
	padding: 80px 0;
	background-image: url("../img/top_know_bg.jpg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: relative;
}

.knowledge-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0;
	display: flex;
	gap: 60px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.knowledge-left {
	flex: 0 0 245px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}

.knowledge-icon {
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.knowledge-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

.knowledge-title {
	font-size: 2.8rem;
	font-weight: bold;
	color: #ffffff;
	margin: 0;
	line-height: 1.2;
}

.btn-knowledge {
	background-color: transparent;
	color: #ffffff;
	border: 1px solid #ffffff;
	padding: 12px 32px;
	border-radius: 999px;
	font-size: 1.6rem;
	font-weight: bold;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	position: relative;
	padding-right: 48px;
    margin-top: 5px;
}

.btn-knowledge::after {
	content: "";
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	background: url("/common/img/icon_arrow-white.svg") no-repeat;
	background-size: 100% auto;
	width: 24px;
	height: 24px;
	display: block;
	vertical-align: middle;
}

.btn-knowledge:hover {
	background-color: #fff;
	border-color: #ffffff;
    color: #111;
}

.btn-knowledge:hover::after {
	background: url("/common/img/icon_arrow-black.svg") no-repeat;
	background-size: 100% auto;
    right: 20px;
}

.knowledge-right {
	flex: 1;
}

.knowledge-links {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin: 0;
}

.knowledge-links li {
	margin: 0;
}

.knowledge-links li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 1.8rem;
	font-weight: bold;
	color: #111111;
	padding: 16px 20px;
	background-color: #ffffff;
	border-radius: 4px;
	margin-bottom: 8px;
	position: relative;
	padding-right: 48px;
	border-left: 2px solid #111;
}

.knowledge-links li a:hover {
    opacity: 0.7;
}

.knowledge-links li a::after {
	content: "";
	position: absolute;
	right: 24px;
	top: 50%;
	transform: translateY(-50%);
	background: url("/common/img/icon_arrow.svg") no-repeat;
	background-size: 100% auto;
	width: 24px;
	height: 24px;
	display: block;
	vertical-align: middle;
}

.knowledge-links li a:hover {
	background-color: #F5F5F5;
}

/* 企業様へ */
.for-companies {
	padding: 80px 0;
	background-color: #fff;
	position: relative;
}

.companies-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px 20px 15px 40px;
	position: relative;
	min-height: 400px;
	display: flex;
	align-items: center;
	background-image: url("../img/top_bnr_companies.jpg");
	background-repeat: no-repeat;
	background-position: center right;
	background-size: cover;
	border-radius: 10px;
}

.companies-overlay {
	padding: 48px 40px;
	border-radius: 8px;
	max-width: 560px;
	position: relative;
	z-index: 1;
}

.companies-title {
	font-size: 3rem;
	font-weight: 900;
	color: #111111;
	margin-bottom: 16px;
	line-height: 1.3;
}

.companies-description {
	font-size: 1.8rem;
	color: #111111;
	line-height: 1.8;
	margin-bottom: 32px;
	font-weight: 400;
}

.btn-companies {
	color: #111;
	border: 1px solid #111;
	padding: 12px 30px;
	border-radius: 60px;
	font-size: 1.6rem;
	font-weight: bold;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	position: relative;
	padding-right: 48px;
}

.btn-companies::after{
	content: "";
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	background: url("/common/img/icon_arrow.svg") no-repeat;
	background-size: 100% auto;
	width: 24px;
	height: 24px;
	display: block;
	vertical-align: middle;
}

.btn-companies:hover {
	background-color: #111;
	border-color: #111;
    color: #fff;
}

.btn-companies:hover::after {
	background: url("/common/img/icon_arrow-white.svg") no-repeat;
	background-size: 100% auto;
}


/* お仕事を探す（カテゴリー別） */
.job-categories {
	padding: 0 0 100px;
	background-color: #fff;
}

.job-categories .container {
	max-width: 1200px;
	margin: 0 auto;
}

/* ===== タイトル ===== */
.job-categories-title {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 2.4rem;
	font-weight: 700;
	margin: 0 0 24px;
}

.job-categories-title-icon {
	width: 20px;
	height: 20px;
}

/* ===== 中身全体 ===== */
.categories-content {
	border-top: 1px dotted #bbb;
}

/* ===== 各カテゴリ行 ===== */
.category-section {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	padding: 30px 0;
	border-bottom: 1px dotted #bbb;
}

.category-sub {
	width: calc(100% - 100px);
}

.category-subsection {
	width: 100%;
	display: flex;
	gap: 12px;
	margin-bottom: 10px;
}

.category-subsection:last-child {
	margin-bottom: 0;
}

.category-subsection .category-links-list {
	width: 100%;
	display: flex;
	gap: 8px 20px;
}

/* 左見出し（地域／職種／言語） */
.category-header {
	font-size: 1.6rem;
	font-weight: 700;
	color: #000;
	white-space: nowrap;
}

/* ===== 地域・言語（横並びリンク） ===== */
.category-links-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 20px;
}

.category-link {
	position: relative;
	padding-left: 16px;
	font-size: 1.6rem;
	color: #000;
	text-decoration: none;
}

.category-link::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background: url("/common/img/icon_arrow.svg") no-repeat;
	background-size: 100% auto;
	width: 16px;
	height: 16px;
	display: block;
	vertical-align: middle;
}

/* hover */
.category-link:hover {
	text-decoration: underline;
}

/* ===== 職種 ===== */
.category-subheader {
	font-size: 1.4rem;
	font-weight: 700;
	margin-bottom: 8px;
	background: #f2f2f2;
	display: inline-block;
	padding: 4px 8px;
	width: 64px;
}

/* リスト */
.category-links-list {
	list-style: none;
	margin: 0 0 8px;
	padding: 0;
}

.category-links-list li {
	margin-bottom: 6px;
}

.category-link-list {
	position: relative;
	padding-left: 16px;
	font-size: 1.6rem;
	color: #111;
	text-decoration: none;
}

/* 青い > マーク */
.category-link-list::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background: url("/common/img/icon_arrow.svg") no-repeat;
	background-size: 100% auto;
	width: 16px;
	height: 16px;
	display: block;
	vertical-align: middle;
}

.category-link-list:hover {
	text-decoration: underline;
}

/* フッター */
.footer {
	background-color: #F2F2F2;
	color: #ffffff;
	padding: 80px 0 0;
}

.footer a:hover {
	text-decoration: underline;
}

.footer-top {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 60px;
}

.footer-logo{
    width: 250px;
    margin-right: 80px;
}

.footer-logo h2 {
	font-size: 1.8rem;
	font-weight: bold;
	margin-bottom: 16px;
	color: #0041B1;
}

.footer-nav{
    display: flex;
    flex-wrap: wrap;
}

.footer-nav .footer-nav-column{
    width: 220px;
    margin-right: 60px;
}

.footer-nav .footer-nav-column:first-child{
    width: 100px;
}

.footer-certifications {
	display: flex;
	gap: 30px;
	margin-top: 30px;
	margin-bottom: 30px;
}

.footer-certifications img {
	height: 75px;
	width: auto;
}

.footer-school-banner img {
	max-width: 250px;
}


.footer-nav-column h3 {
	font-size: 1.6rem;
	font-weight: bold;
	margin-bottom: 16px;
	color: #111111;
}

.footer-nav-column ul {
	display: flex;
	flex-direction: column;
	gap: 11px;
}

.footer-nav-column ul li a {
	font-size: 1.4rem;
	color: #111111;
	transition: color 0.3s;
}

.footer-contact {
	display: flex;
	flex-direction: column;
	gap: 30px;
    width: 144px;
}

.footer-link {
	font-size: 1.6rem;
	color: #111111;
	font-weight: bold;
}

.footer-bottom {
	border-top: 1px dotted #333333;
	padding-top: 30px;
	text-align: center;
}

.footer-links {
	display: flex;
	justify-content: center;
	gap: 29px;
	margin-bottom: 30px;
	flex-wrap: wrap;
}

.footer-links li a {
	font-size: 1.4rem;
	color: #111;
	padding-left: 24px;
}

.footer-links li {
	border-left: 1px solid #7E7E7E;
}

.footer-links li:last-child {
	border-right: 1px solid #7E7E7E;
	padding-right: 29px;
}

.footer-copy {
	background: #111111;
	padding: 25px 0;
	text-align: center;
    min-width: 1200px;
}

.copyright {
	font-size: 1.2rem;
	color: #fff;
}

/* レスポンシブデザイン（768px以下） */
@media screen and (max-width: 768px) {
	.pc-only {
		display: none !important;
	}

	.sp-only {
		display: block !important;
	}

    .container {
        width: auto;
        padding: 0 15px;
    }
    section {
        min-width: 0;
        padding: 0 15px;
    }

	/* ヘッダー */
	.header-top {
		flex-wrap: wrap;
		padding: 0;
		margin-top: -9px;
	}

	.header-nav-top {
		display: none;
	}

	.nav-list {
		display: none;
	}

	.hamburger-menu {
		display: flex;
		align-items: center;
		padding: 15px 0;
		margin-left: 15px;
	}

	.hamburger-menu small {
		font-size: 1.1rem;
        color: #111;
	}

	.hamburger-menu small {
		visibility: hidden;
		position: relative;
	}

	.hamburger-menu small::after {
		content: "メニュー";
		visibility: visible;
		position: absolute;
		left: 0;
		top: 0;
	}

	.hamburger-menu.active small::after {
		content: "閉じる";
		left: 4px;
	}

	.mobile-menu {
		display: block;
	}

	.mobile-nav ul {
		list-style: none;
		margin: 0;
		padding: 0;
	}

	/* ---------- 共通 ---------- */
	.mobile-nav > ul > li {
		border-bottom: 1px solid #989898;
	}

	.mobile-nav a {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 22px 16px;
		text-decoration: none;
		color: #000;
		font-size: 1.6rem;
		font-weight: 600;
	}

	/* 右矢印 */
	.mobile-nav > ul > li > a::after {
		content: "›";
		font-size: 3rem;
		line-height: 0.5;
		color: #0046cc;
	}

	/* ---------- サブメニュー ---------- */
	.mobile-submenu > a {
		position: relative;
	}

	/* 開いている状態（JSで .is-open を付与する想定） */
	.mobile-submenu.active > a {
		font-weight: 700;
		padding-bottom: 10px;
	}

    .mobile-submenu > a::after {
	content: "";
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(-50%);
	background: url("/common/img/icon_plus.svg") no-repeat;
	background-size: 100% auto;
	width: 24px;
	height: 24px;
	display: block;
	vertical-align: middle;
}

	.mobile-submenu.active > a::after {
	content: "";
	position: absolute;
	right: 14px;
	top: 60%;
	transform: translateY(-50%);
	background: url("/common/img/icon_minus.svg") no-repeat;
	background-size: 100% auto;
	width: 24px;
	height: 24px;
	display: block;
	vertical-align: middle;
}

	/* 左の青ライン */
	.mobile-submenu.active > a::before {
		content: "";
		position: absolute;
		left: 0;
		top: 64%;
		width: 4px;
		height: 24px;
		background: #0046cc;
		transform: translateY(-50%);
	}

	/* 閉じている時の + */
	.mobile-submenu:not(.active) > a::after {
		content: "";
	}

	/* ---------- サブメニューリスト ---------- */
	.mobile-submenu-list {
		display: none;
		padding: 8px 0 16px;
	}

	.mobile-submenu.active .mobile-submenu-list {
		display: block;
		padding-bottom: 10px;
	}

	.mobile-submenu-list li {
		border: none;
	}

	.mobile-submenu-list a {
		padding: 10px 16px 10px 32px;
		font-size: 1.4rem;
		font-weight: 400;
		color: #000;
		justify-content: flex-start;
	}

	.mobile-submenu-list a::after {
		content: none;
	}

	/* 強調リンク（青） */
	.mobile-submenu-list a.active,
	.mobile-submenu-list a:hover {
		color: #0046cc;
	}

    .header{
		max-height: 60px;
	}

	.header-nav-sp {
		display: flex;
		gap: 10px;
		justify-content: center;
		padding: 30px 0;
	}

	.header-nav-sp .nav-link {
		font-size: 1.3rem;
		color: #fff;
		font-weight: bold;
		background: #0041B1;
		padding: 10px 18px;
		border-radius: 40px;
		transition: 0.3s;
	}

	.header-nav-sp .nav-link img {
		display: inline-block;
		vertical-align: middle;
		margin-right: 4px;
		width: 24px;
	}

	.header-nav-sp .nav-link.toplink01 {
		background: none;
		background-image: linear-gradient(90deg, #e51f41, #bc0003);
	}

	.mobile-nav .close-btn {
		background: none;
		border: none;
		font-size: 1.4rem;
		cursor: pointer;
		text-align: center;
		z-index: 2;
		margin: 0 auto;
		display: block !important;
		padding-bottom: 20px;
        color: #111 !important;
	}

	.mobile-nav .close-btn img {
		display: block;
		text-align: center;
		margin: 0 auto 4px;
	}

	.header-inner {
		min-width: 100%;
	}

	.logo img {
		width: 140px;
		height: auto;
	}

	.sp-head-btn {
		margin: 8px 0 1px auto;
	}

	.sp-head-btn a {
		display: block;
		background-image: linear-gradient(90deg, #e51f41, #bc0003);
		color: #ffffff;
		font-size: 1.2rem;
		padding: 5px 15px 5px 40px;
        font-weight: bold;
        border-radius: 30px;
        position: relative;
		line-height: 1.3;
	}

	.sp-head-btn a::before {
		content: "";
		display: inline-block;
		vertical-align: middle;
		width: 20px;
		height: 20px;
		background: url("/common/img/icon_cvt.svg") no-repeat;
		background-size: 100% auto;
		margin-right: 5px;
		position: absolute;
        left: 14px;
        top: 11px;
	}

	/* ヒーローセクション */
	.hero {
		margin-top: 60px;
		padding: 22px 22px 30px;
		background: url("../img/top_kv-sp.jpg") no-repeat;
		background-size: cover;
		background-position: bottom;
	}

	.hero-inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.hero-title-main {
		font-size: 2rem;
	}

	.hero-title-sub {
		font-size: 3.4rem;
	}

	.hero-description {
		font-size: 1.4rem;
		margin-bottom: 5px;
	}

	.hero-badge {
		font-size: 2.2rem;
		padding: 5px 8px 7px;
		margin-right: 6px;
	}

	.btn-hero {
		font-size: 1.6rem;
		padding: 8px 20px;
	}

	/* クイックお仕事検索 */
	.quick-search {
		padding: 0 0 210px;
		margin-top: 0;
		/* SPは重ねない */
	}

	.search-form {
		padding: 0 0 10px;
		flex-direction: row;
		align-items: flex-end;
	}

	.search-filters {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.region-buttons {
		justify-content: flex-start;
		gap: 4px;
	}

	.region-btn {
		font-size: 1.4rem;
		padding: 6px 10px;
	}

	.quick-search-title{
		font-size: 1.6rem;
	}

	.job-type-select, .keyword-input {
		width: calc(100% - 156px);
		font-size: 1.4rem;
	}

	.filter-group label {
		font-size: 1.4rem;
		margin-bottom: 8px;
	}

	.featured-jobs {
		grid-template-columns: 1fr;
		gap: 5px;
		margin: 0 -12px;
	}

	.quick-search-layout {
		flex-direction: column;
		gap: 20px;
	}

	.quick-search-panel {
		flex: none;
		padding: 16px;
		margin: 0 -15px;
		border-radius: 0;
		box-shadow: none;
	}

	.featured-job-card {
		padding-top: 0;
		display: flex;
		align-items: center;
		gap: 12px;
		min-height: 0;
		border: none;
		border-radius: 4px;
	}

	.featured-job-card::after {
		top: 50%;
		transform: translateY(-50%);
	}

	.featured-job-card img {
		width: 95px;
		height: auto;
		flex: 0 0 84px;
		border-radius: 0;
		margin-left: 0;
	}

	.featured-job-card h3 {
		position: static;
		padding: 12px 44px 12px 0;
		background: transparent;
		font-size: 1.5rem;
		line-height: 1.4;
		flex: 1;
	}

    .btn.btn-search{
        font-size: 1.4rem;
    }

	/* 新着お仕事情報 */
	.new-jobs {
		padding: 40px 0;
	}

	.new-jobs .container {
		margin-top: -200px;
		overflow: hidden;
        z-index: 3;
	}

	.new-jobs.gray-wrap {
		padding: 0;
		position: relative;
	}


	.new-jobs.gray-wrap .container {
		margin-top: 0;
		top: -135px;
	}

	.news-item.pdf a::after{
		right: 8px;
	}

    .new-jobs .section-title{
        text-align: center;
        font-size: 2rem;
    }

    .news-date{
        font-size: 1.6rem;
    }

	.news-title-text{
		width: 100%;
	}

	.job-listings {
		grid-template-columns: 1fr;
	}

    .job-card .btn-outline{
        width: 112px;
		bottom: 20px;
    }

	/* 無料ITスクール開校 */
	.it-school {
		padding: 20px 0 50px;
	}

	.it-school.mt-set{
		margin-top: -120px;
		padding-bottom: 80px;
	}

	.it-school-content {
		flex-direction: column;
	}

	.it-school-title {
		font-size: 2.4rem;
	}

	.it-school-subtitle {
		font-size: 1.8rem;
	}

	/* お知らせ・キャンペーン */
	.news-item a {
		padding-right: 50px;
	}

    .news-item a::after{
        right: 8px;
    }

	.news-item.blank a::after{
        right: 8px;
    }

	.news-campaign {
		padding: 0 0 50px;
	}

	.news-campaign-grid {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.campaign-card {
		align-items: start;
		gap: 12px;
	}

	.campaign-card img {
		width: 100px;
		height: auto;
	}

	.campaign-card a:hover .campaign-content span.lv3{
		text-decoration: underline;
		font-size: 1.6rem;
		margin: 0 0 6px;
		font-weight: 700;
		line-height: 1.4;
	}

	/* タイトル */
	.campaign-content span.lv3 {
		font-size: 1.6rem;
		margin: 0 0 6px;
	}

	/* 説明文 */
	.campaign-content span.text {
		font-size: 1.3rem;
        line-height: 2;
        margin-bottom: 10px;
        margin-right: 25px;
	}

	.campaign-content .date {
		font-size: 1.2rem;
		padding: 3px 8px;
		border-radius: 0;
	}

    .campaign-content a::after{
        right: 0;
    }

	/* CMSで働くメリット */
	.benefits {
		padding: 50px 0 280px;
		background: url("../img/top_merit_bg-sp.jpg") #D9E7FF no-repeat;
		background-size: 100% auto;
		background-position: center bottom;
	}

	.benefits-inner {
		flex-direction: column;
		padding: 0 15px;
		width: auto;
	}

	.benefits-content {
		flex: none;
		width: auto;
	}

	.benefits-label {
		font-size: 1.6rem;
		padding: 4px 10px;
		margin-bottom: 16px;
	}

	.benefits-headline {
		font-size: 2.4rem;
		margin-bottom: 6px;
        line-height: 1.6;
	}

	.benefits-description {
		font-size: 1.6rem;
		margin-bottom: 15px;
	}

	.benefits-grid {
		grid-template-columns: 1fr;
		gap: 12px;
		margin-bottom: 24px;
	}

	.benefit-item {
		padding: 16px 12px;
		display: flex;
		align-items: flex-start;
		gap: 12px;
	}

	.benefit-item.full .benefit-icon {
		width: 70px;
		height: 70px;
		flex: 0 0 70px;
	}

	.benefit-icon img {
		width: 100%;
		height: auto;
		object-fit: contain;
	}

	.benefit-text {
		width: ;
		margin-left: 0;
	}

	.benefit-item.full .benefit-text {
		width: calc(100% - 90px);
		margin-left: 0;
	}

	.benefit-item--sp-only {
		display: flex;
	}

	.benefit-icon {
		width: 40px;
		height: 40px;
		flex: 0 0 40px;
		margin-bottom: 0;
	}

	.benefit-item h3 {
		font-size: 1.6rem;
		margin-bottom: 6px;
	}

	.benefit-description {
		font-size: 1.4rem;
	}

	.benefits-image-area {
		display: none;
	}

	.btn-benefits {
		width: auto;
		justify-content: center;
		padding: 12px 50px 12px 25px;
		margin: 0 auto;
		display: table;
	}

	.section-title-big {
		font-size: 2.4rem;
	}

	.work-desicription {
		font-size: 1.6rem;
        margin-bottom: 16px;
	}

	/* CMSの働き方について */
	.how-to-work {
		padding: 50px 0;
	}

    .container-inn{
        width: auto;
        margin: 0;
    }

	.how-to-work-grid {
		display: block;
	}

	.career-support {
		padding: 20px;
        margin-top: 40px;
	}

	.work-links a {
		padding: 20px 0;
	}

    .work-links a::after{
        right: 5px;
    }

    .work-links .text-block{
        max-width: calc(100% - 80px);
    }

    .work-link-subtitle{
        font-size: 1.4rem;
    }

	.work-link-title {
		font-size: 1.6rem;
	}

	.career-cards {
		margin-top: 15px;
	}

	.career-card h3{
		font-size: 1.6rem;
	}

	.career-card img {
		width: 100px;
		height: auto;
	}

	/* 派遣の知識 */
	.dispatch-knowledge {
		padding: 50px 0;
		background: url("../img/top_know_bg.jpg") no-repeat;
		background-size: auto;
	}

	.dispatch-knowledge::before {
		background: rgba(0, 0, 0, 0.5);
	}

	.knowledge-inner {
		flex-direction: column;
		gap: 16px;
		padding: 0 15px;
	}

	.knowledge-left {
		display: flex;
		width: 100%;
		align-items: center;
		text-align: center;
		padding: 0;
		flex-direction: row;
		flex: 0;
        gap: 10px;
	}

	.knowledge-icon {
		width: 60px;
		height: 41px;
		margin: 0;
	}

	.knowledge-title {
		font-size: 2.2rem;
		text-align: center;
	}

	.btn-knowledge {
		margin: -4px auto 0 !important;
	}

	.knowledge-right {
		width: 100%;
	}

	.knowledge-links li a {
		padding: 14px 18px;
		font-size: 1.6rem;
		padding-right: 44px;
		border-top: none;
		border-right: none;
		border-bottom: none;
	}

	.knowledge-links li a::after {
		right: 10px;
	}

	/* 企業様へ */
	.for-companies {
		padding: 0;
		background: #fff;
		min-height: 300px;
	}

	.companies-inner {
		padding: 50px 15px;
		background: #fff;
		min-height: 300px;
	}

	.companies-overlay {
		padding: 32px 24px 235px;
		background: url("../img/top_bnr_companies-sp.jpg") no-repeat #D9E7FF;
		background-position: center bottom;
		background-size: 100% auto;
		max-width: 100%;
	}

	.companies-title {
		font-size: 2.2rem;
		margin-bottom: 16px;
	}

	.companies-description {
		font-size: 1.6rem;
		margin-bottom: 12px;
	}

	.campaign-card a{
		gap: 12px;
		align-items: start;
	}

	.link-more::after {
		margin-top: -2px;
	}

	.campaign-card a::after{
		right: 0;
	}

	.btn-companies {
		font-size: 1.5rem;
		padding: 10px 28px;
		padding-right: 44px;
        margin-top: 0 !important;
	}

	.btn-companies::after {
		right: 16px;
	}

	/* お仕事を探す（カテゴリー別） */
	.job-categories {
		padding: 0 0 70px;
	}

	.job-categories-title {
		font-size: 2.2rem;
		margin-bottom: 10px;
	}

	.job-categories-title-icon {
		width: 20px;
		height: 20px;
	}

	.categories-content {
		border: none;
	}

	.category-section {
		display: block;
		padding: 10px 0;
		border: none;
	}

	.category-sub {
		width: 100%;
	}

	.category-header {
		display: block;
		font-size: 1.6rem;
		padding: 8px 14px;
		margin-bottom: 14px;
		background: #F2F2F2;
	}

	.category-subheader {
		font-size: 1.6rem;
		margin: 12px 0 6px 0;
		padding-left: 0;
	}

	.category-subsection {
		display: block;
	}

	.category-subheader {
		background: none;
		margin-top: 0;
	}

	.category-subsection .category-links-list {
		display: block;
	}

	.category-links-list li {
		margin-bottom: 8px;
	}

	.category-links-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px 12px;
	}

	.category-link {
		font-size: 1.6rem;
	}

	.category-link-list {
		font-size: 1.6rem;
	}

	/* フッター */
	.footer {
		padding: 50px 0 0;
	}

	.footer-logo {
		display: flex;
		flex-wrap: wrap;
		gap: 12px;
        justify-content: space-between;
        width: auto;
        margin: 0;
	}

    .footer-certifications{
        gap: 20px;
    }

    .footer-school-banner{
        margin-top: 28px;
    }

    .footer-school-banner img{
        max-width: 250px;
    }

    .footer-nav {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .footer-copy {
        min-width: 0;
    }

    .footer-certifications img{
        height: 54px;
        width: auto;
    }


	.footer-nav-column ul {
		flex-direction: row;
		flex-wrap: wrap;
        gap: 8px 20px;
	}

	.footer-nav-column ul li {
		width: calc(50% - 12px);
		margin-bottom: 8px;
	}

    .footer-nav .footer-nav-column:first-child{
        width: 100%;
    }

    .footer-nav .footer-nav-column{
        width: 100%;
        margin: 0;
    }

    .footer-certifications{
        margin: 0;
    }

	.footer-logo-link {
		width: 180px;
	}

	.footer-contact {
		gap: 22px;
        width: 100%;
		margin-top: 10px;
	}

	.footer-top {
		grid-template-columns: 1fr;
		gap: 40px;
		margin-bottom: 40px;
	}

	.footer-nav {
		grid-template-columns: 1fr;
	}

	.footer-links {
		flex-direction: row;
		gap: 10px;
	}

    .footer-links li:nth-child(2){
        border-right: 1px solid #7E7E7E;
        padding-right: 14px;
    }


	.footer-links li a {
		padding-left: 14px;
	}

    .footer-links li:last-child{
        padding-right: 14px;
    }

	.section-title {
		font-size: 1.8rem;
		margin-bottom: 20px;
	}

	.section-title.line {
		font-size: 1.8rem;
		padding-left: 10px;
	}
}

@media screen and (max-width: 768px) {
	.new-jobs {
		padding: 24px 0;
	}

	.job-listings {
		margin: 0 -16px;
	}

	.job-card {
		background: #fff;
		border-radius: 4px;
		padding: 16px;
		margin: 0 8px;
		box-shadow: none;
	}

	.job-title {
		font-size: 1.6rem;
		font-weight: 700;
		margin-bottom: 8px;
	}

	.job-salary {
		font-size: 1.4rem;
		margin-bottom: 4px;
	}

	.job-location {
		font-size: 1.3rem;
		margin-bottom: 6px;
	}

	.job-tag {
		font-size: 1.2rem;
		display: inline-block;
		margin-bottom: 8px;
	}

	.btn {
		display: inline-block;
		margin-top: 8px;
		font-size: 1.6rem;
	}
    .btn.btn-benefits{
        display: table;
        margin: 15px auto 0;
        font-size: 1.6rem;
    }

	/* ---------- 矢印 ---------- */
	.slick-prev,
	.slick-next {
		width: 32px;
		height: 32px;
		z-index: 5;
	}

	.slick-prev::before,
	.slick-next::before {
		font-size: 2.4rem;
		color: #000;
	}

	/* ---------- ドット ---------- */
	.slick-dots {
		bottom: -24px;
	}

    .slick-dots li:last-child{
        margin-right: 0;
    }

	.slick-dots li button::before {
		font-size: 1rem;
		color: #999;
	}

	.slick-dots li.slick-active button::before {
		color: #000;
	}
}

@media screen and (max-width: 768px) {

	/* ドット全体の位置 */
	.slick-dots {
		bottom: -32px;
	}

	/* 各ドット */
	.slick-dots li {
		width: 16px;
		height: 16px;
		margin: 0 6px;
	}

	/* ボタン本体 */
	.slick-dots li button {
		width: 16px;
		height: 16px;
		padding: 0;
	}

	/* 疑似要素を〇に */
	.slick-dots li button::before {
		content: '';
		width: 16px;
		height: 16px;
		border-radius: 50%;
		background: #fff;
		opacity: 1;
		display: block;
	}

	/* アクティブ時 */
	.slick-dots li.slick-active button::before {
		background: #0041B1;
        border: 1px solid #0041B1;
	}

	.slick-dots li button:before {
		width: 14px !important;
		height: 14px !important;
		content: "" !important;
		border: 1px solid #000;
	}

	.job-card a {
		padding: 2px 0 0 0;
	}
}

@media screen and (max-width: 768px) {
  .job-slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
  }

  /* ページャー */
  .job-slider-dots {
    display: flex;
    align-items: center;
  }

    .slick-dotted.slick-slider{
        margin-bottom: 20px !important;
    }

  .job-slider-dots .slick-dots {
    position: static;
    margin-top: -4px;
  }

  /* 矢印 */
  .job-slider-prev,
  .job-slider-next {
    width: 10px;
    height: 17px;
    border: none;
    background: transparent;
    position: relative;
    flex-shrink: 0;
  }

  .job-slider-prev::before,
  .job-slider-next::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-top: 1px solid #111;
    border-right: 1px solid #111;
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .job-slider-prev::before {
    transform: translate(-50%, -50%) rotate(-135deg);
  }
}