@charset "utf-8";
/* *************************************
// スタイル
************************************* */

:root {
	--orange01: #ff7700;
	--green01: #00ca56;
	--yellow01: #ffe048;

	--blue01: #0076fa;
	--blue02: #00c1ff;
	--blue03: #ccf3ff;

	--blue-grad01: linear-gradient(to right, var(--blue02) 0%, var(--blue01) 100%); 
	--blue-grad02: linear-gradient(135deg, var(--blue02) 0%, var(--blue01) 100%); 
	--blue-grad03: linear-gradient(to bottom, var(--blue02) 0%, var(--blue01) 100%); 
	--blue-grad04: linear-gradient(to top, var(--blue02) 0%, var(--blue01) 100%); 

	--gray01: #a1b4bd;
	--gray02: #7c8896;
	--gray03: #d7dbdf;
	--gray04: #e7f2fd;

	--black01: #212733;
	--text-color: var(--black01);

	--line-color: #4cc764;

	--link-color: var(--blue01);

    --white-filter: invert(100%) sepia(0%) saturate(6023%) hue-rotate(136deg) brightness(112%) contrast(101%);
}

body {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 400;
}


.btn01 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 1em 0;
}

.btn01 > a,
.btn01 > input {
	background: var(--blue-grad01);
	color: #fff;
	border-radius: 5px;
	position: relative;
	z-index: 0;
	text-align: center;
	display: flex;
	align-items: center;
	min-width: 300px;
	width: 300px;
	padding: 15px;
	justify-content: center;
	font-weight: 500;
	gap: 0 1em;
	z-index: 0;
	box-shadow: 5px 5px 0px var(--gray03);
	font-size: 20px;
	max-width: 100%;
	cursor: pointer;
}
.btn01 > a:after {
	content: "";
	display: block;
	width: 0.5em;
	height:0.5em;
	background: #fff;
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

@media (max-width: 767px) {

	.btn01 > a,
	.btn01 > input {
		width: 250px;
		min-width: 0;
		max-width: 100%;
		font-size: 16px;
	}

}


.hl001 {
	background: var(--blue03);
	color: #555;
	text-align: left;
	background: transparent;
    padding: 3.5em 5vw;
}
.hl001:before {
	opacity: 1;
    background-image: url(../images/common/h1_bg.webp);
    background-size: cover;
    background-position: center;
	width: 80%;
	height: 100%;
	top: 0px;
	left: auto;
	right: 0;
	z-index: 0;
	opacity: 0.3;
}
.hl001:after {
	content: "";
	display: block;
    opacity: 0.3;
    width: 80%;
    height: 100%;
	position: absolute;
    top: 0px;
    left: auto;
    right: 0;
    z-index: 1;
	background: rgba(0,193,255,0.45);
}
.hl001 h1 {
	position: relative;
	z-index: 2;
}

@media (max-width: 1029px) {
	.hl001 {
		padding: 2em 5vw;
	}
	.hl001 > *:nth-child(2):last-child {
		margin-top: 10px;
		font-size: 20px;
	}
}
@media (max-width: 767px) {

	.hl001 {
		font-size: 25px;
	}

}



.breadcrumbs ul {
    display: flex;
    flex-wrap: wrap;
    font-size: 12px;
}
.breadcrumbs ul > li:not(:last-child):after {
    content: "";
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    transform: rotate(45deg);
    margin: 0 0.5em;
}

.breadcrumbs ul > li a {
	color: var(--text-color);
}
.breadcrumbs ul > li a:hover {
	text-decoration: underline;
	color: var(--blue02);
}
.breadcrumbs ul > li a > img {
	margin-right: 0.5em;
}


a.pdf {
	text-decoration: none;
	display: inline-block;
}
a.pdf:before {
	height: 2em;
	width: 1.5em;
	content: "";
	display: inline-block;
	background-image:url(../images/common/icon_pdf.svg);
	background-size: contain;
	background-repeat: no-repeat;
	margin-right: 1em;
	vertical-align: bottom;

}


ul.check {
    margin: 30px 0;
}

ul.check > li {
    position: relative;
    z-index: 0;
    padding-left: 2em;
}
ul.check > li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.2em;
    width: 1.5em;
    height: 1.5em;
    background-color: var(--blue02);
    border-radius: 50%;
    z-index: 1;
}
ul.check > li:after {
    content: '';
    position: absolute;
    left: 0.45em;
    top: 0.4em;
    transform: rotate(45deg);
    height: 0.9em;
    width: 0.6em;
    border-right: 4px solid #fff;
    border-bottom: 4px solid #fff;
    z-index: 2;
}
ul.check > li:not(:last-child) {
    margin-bottom: 15px;
}


/* *************************************
// ヘッダー・メニュー
************************************* */

.h001 {
	position: sticky;
	top: 0;
	left: 0;
	background: #fff;
	z-index: 999;
	width: 100%;
    transition: .3s;
	box-shadow: 0px 0px 5px rgba(0,0,0,0.15);
}
.h001 #inner-header {
	display: flex;
	justify-content: space-between;
	height: 80px;
	padding-left: 30px;
}

.h001 #inner-header .logo {
	align-self: end;
	position: relative;
	z-index: 1;
}
.h001 #inner-header .logo a {
    display: inline-block;
	padding: 10px 0;
}
.h001 #inner-header .logo a img {
	height: 50px;
	width: auto;
	display: block;
}

.h001 #inner-header .header_box {
	display: flex;
	position: relative;
	z-index: 0;
}

.h001 .header_box .menu {
	display: none;
	width: 60px;
	height: 60px;
	align-items: center;
	justify-content: center;
	background: var(--blue-grad01);
}

.h001 .header_box .menu_box {
	display: flex;
	gap: 15px;
	align-items: center;
	padding-right: 15px;
}

.h001 .header_box .menu_box nav {
	display: flex;
}
.h001 .header_box .menu_box nav > ul {
	display: flex;
}
.h001 .header_box .menu_box nav > ul > li {
	display: flex;
	position: relative;
}
.h001 .header_box .menu_box nav > ul > li.hamburger_only {
	display: none;
}

.h001 .header_box .menu_box nav > ul > li > a {
	padding: 15px;
	min-width: 150px;
	display: grid;
	align-content: end;
	text-align: center;
	color: var(--text-color);
	font-weight: bold;
	position: relative;
	white-space: nowrap;
}

.h001 .header_box .menu_box nav > ul > li > a:before {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 15px;
    width: calc(100% - 30px);
    height: 2px;
    background: var(--blue-grad01);
    transition: all .3s;
    transform: scale(0, 1);
    transform-origin: left top;
}
.h001 .header_box .menu_box nav > ul > li > a:hover:before {
    transform: scale(1, 1);
}

.h001 .header_box .menu_box .contact_box {
	display: flex;
	justify-content: center;
	align-items: end;
	color: #fff;
	gap: 0 0.5em;
	width: 180px;
	font-weight: bold;
	padding: 15px 0;
	font-weight: bold;
	transition: opacity 0.3s;
	border-radius: 10px;
}
.h001 .header_box .menu_box .contact_box:hover {
	opacity: 0.7;
}

.h001 .header_box .menu_box .contact_box img {
	height: 1.8em;
	width: auto;
	display: block;
}

.h001 .header_box .menu_box .contact_box.guide {
	background: var(--orange01);
}

.h001 .header_box .menu_box .contact_box.contact {
	background: var(--blue-grad02);
}

@media (max-width: 1199px) {
	.h001 {
		top: 0!important;
	}
	.h001 .header_box .menu {
		display: flex;
	}

	.h001 #inner-header .header_box .menu_box {
		position: fixed;
		width: 100vw;
		height: 100vh;
		top: 0;
		left: 0;
		background: #fff;
		margin: 0;
		padding: 100px 80px 80px;
		z-index: 99;
		overflow-y: hidden;
		opacity: 0;
		visibility: hidden;
		display: none;
		flex-wrap: wrap;
		align-items: flex-start;
		justify-content: center;
		gap: 20px;
	}
	.h001 #inner-header .header_box .menu.open + .menu_box {
		opacity: 1;
		visibility: visible;
		display: flex;
	}
	.h001 .header_box .menu_box nav {
		width: 100%;
	}
	.h001 .header_box .menu_box nav > ul {
		display: flex;
		flex-wrap: wrap;
		width: 100%;
	}
	.h001 .header_box .menu_box nav > ul > li {
		display: block;
		width: 100%;
	}
	.h001 .header_box .menu_box nav > ul > li > a:before {
        content: "";
        display: inline-block;
        width: 0.5em;
        height: 0.8em;
        clip-path: polygon(0 0, 0% 100%, 100% 50%);
        background: var(--blue-grad01);
        transform: none;
        position: relative;
        top: auto;
        bottom: auto;
        left: 0;
        margin-right: 5px;
	}
	.h001 .header_box .menu_box nav > ul > li.menu-item-has-children {
		display: block;
		width: 100%;
	}
	.h001 .header_box .menu_box nav > ul > li.hamburger_only {
		display: block;
	}
	.h001 .header_box .menu_box nav > ul > li > a {
		text-align: left;
		display: inline-block;
	}

	.h001 .header_box .menu_box .contact_box {
		width: 300px;
		max-width: 50%;
		margin-bottom: 80px;
	}
}

@media (max-width: 1029px) {
	.h001 #inner-header {
		padding-left: 10px;
		height: 70px;
	}
	.h001 #inner-header .header_box .menu_box {
		padding-left: 5%;
		padding-right: 5%;
	}
	.h001 #inner-header .logo a {
		padding: 5px 0;
	}
	.h001 #inner-header .logo a img {
		height: 40px;
	}

	.h001.header .menu {
		top: 5px;
		right: 5px;
	}
}

@media (max-width: 767px) {
	.h001 #inner-header {
		padding: 0;
		display: flex;
		align-items: center;
        justify-content: space-between;
	}
	.h001 #inner-header .logo {
		width: calc(100% - 70px);
		height: 70px;
		background: #fff;
		padding-left: 10px;
		align-self: center;
		display: flex;
		align-items: center;
	}
	.h001 #inner-header .logo a {
		display: inline;
	}
	.h001 #inner-header .header_box {
		align-self: start;
	}
	.h001 #inner-header .header_box .menu_box {
		padding-top: 70px;
		gap: 10px;
		overflow-y: auto;
	}

	.h001 .header_box .menu_box nav > ul > li > a {
	        padding: 5px;

	}

	.h001 .header_box .menu_box .contact_box {
		width: calc(50% - 5px);
		padding: 15px 0;
	}
}	




/*サブメニュー*/
.header nav ul.sub-menu {
	background: rgba(255,255,255,0.95);
	overflow: hidden;
    margin-top: 0;
    position: absolute;
    visibility: hidden;
    z-index: 8999;
    width: 220px;
    flex-wrap: wrap;
    transition: all 0.3s;
    opacity: 0;
    display: block;
    top: calc(100% - 10px);
	box-shadow: 0px 3px 5px rgba(0,0,0,0.1);
}
.header nav > ul > li:hover > ul.sub-menu {
    visibility: visible;
    opacity: 1;
}
.header nav ul.sub-menu > li {
    width: 100%;
    position: relative;
}
.header nav ul.sub-menu > li > a {
	color: var(--text-color);
    text-align: left;
    transition: background 0.3s;
    padding: 10px 5px 10px 15px;
    display: block;
    position: relative;
    border: none;
	font-weight: bold;
}

.header nav ul.sub-menu > li > a:hover {
    background: var(--blue-grad02);
	color: #fff;
}
.header nav ul.sub-menu > li > a:before {
    content: '-';
	display: inline;
	margin-right: 0.5em;
	color: var(--blue02);
}
.header nav ul.sub-menu > li > a:hover:before {
	color: #fff;
}

@media (max-width: 1199px) {
    .header nav ul.sub-menu {
        position: static;
        width: auto;
        visibility: inherit;
        opacity: 1;
        box-shadow: none;
        padding-top: 0;
        transition: none;
		display: flex;
		flex-wrap: wrap;
		padding-left: 20px;
    }
	.header nav ul.sub-menu > li {
		width: 33.3333%;
	}
	.header nav ul.sub-menu > li > a:before {
		content: '-';
		display: inline;
		margin-right: 0.5em;
		color: var(--blue01);
	}

	.header nav ul.sub-menu > li > a:hover {
		background: transparent;
		color: var(--text-color);
	}
	.header nav ul.sub-menu > li > a:hover:before {
		color: var(--blue02);
	}
}

@media (max-width: 767px) {

    .header nav ul.sub-menu > li {
        width: 100%;
    }
    .header nav ul.sub-menu > li > a {
        padding: 5px;
        font-size: 14px;
    }
    .header nav ul.sub-menu > li > a:before {
        top: calc(5px + 0.4em);
    }
}
@media (min-width: 768px) {
    .header nav ul.sub-menu {
        display: flex!important;
    }
}




/* *************************************
// 下部お問い合わせ
************************************* */

#bottom_contact {
	background-color: var(--blue03);
	padding: 80px 0;
}
#bottom_contact .two_in_one {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px 60px;
}
#bottom_contact .two_in_one > div {
	width: 100%;
}
#bottom_contact .box {
	background: #fff;
	font-weight: 500;
	text-align: center;
	padding: 40px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	max-width: 500px;
	margin: 0 auto;
}

#bottom_contact .box .icon {
	width: 50px;
	height: 50px;
	background-image: var(--blue-grad01);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 10px;
}
#bottom_contact .box .icon > img {
	width: 30px;
	height: 30px;
	object-fit: contain;
}
#bottom_contact .box .title {
	font-size: 20px;
	line-height: 1.4;
	margin-bottom: 1em;
}
#bottom_contact .box .title br {
	display: none;
}
#bottom_contact .box a.tel_number {
	font-size: 30px;
}
#bottom_contact .box .time {
	font-size: 14px;
}


#bottom_contact .box .btn04 {
	display: flex;
	justify-content: center;
	margin-top: auto;
}
.btn04 > a {
	padding: 10px 15px;
	color: #fff;
	text-align: center;
	background-image: var(--blue-grad01);
	font-size: 20px;
	width: 300px;
	max-width: 100%;
	display: block;
	transition: opacity 0.3s;
}
.btn04 > a:hover {
	opacity: 0.7;
}

@media (max-width: 1029px) {
	#bottom_contact .two_in_one {
		gap: 20px 30px;
	}
	#bottom_contact .box {
		padding: 30px 20px;
	}
	#bottom_contact .box .title {
		margin-bottom: 0.5em;
	}
	#bottom_contact .box .time {
		font-size: 12px;
	}
}

@media (max-width: 767px) {
	#bottom_contact {
		padding: 40px 0;
	}
	#bottom_contact .two_in_one {
		grid-template-columns: 100%;
	}
	#bottom_contact .box .title br {
		display: block;
	}


}


.title05 {
	margin-bottom: 40px;
}
.title05 .en {
    text-align: center;
    font-weight: 500;
    font-size: min(7vw, 60px);
    background: var(--blue-grad01);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: table;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    line-height: 1;
	padding: 0 10px;
}
.title05 .jp {
	text-align: center;
    font-weight: bold;
    font-size: min(3vw, 25px);
    margin-bottom: 15px;
}

@media (max-width: 767px) {

	.title05 .en {
        font-size: 35px;
	}
	.title05 .jp {
        font-size: 20px;
	}

}

/* *************************************
// フッター
************************************* */

.f001 {
	background: #fff;
	color: var(--text-color);
}
.f001 a {
	color: var(--text-color);
}

.f001 #inner-footer {
	display: grid;
	grid-template-columns: 300px 1fr auto;
	gap: 20px 40px;
	align-items: flex-start;
}
.f001 #inner-footer > * {
	margin: 0;
}


.f001 .company_info .logo img {
	width: 250px;
	height: auto;
}
.f001 .company_info .company {
	font-weight: bold;
	font-size: 20px;
}


.f001 nav {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	max-width: 700px;
    justify-self: start;
}
.f001 .nav li a {
    line-height: 2;
}
.f001 ul.nav {
	width: 100%;
	border-right: 1px solid var(--gray01);
	font-size: 14px;
	padding: 0 20px;
}
.f001 ul.nav:first-child {
	border-left: 1px solid var(--gray01);
}
.f001 ul.nav > li {

}
.f001 ul.nav > li > a {
	color: var(--text-color);
	position: relative;
	padding: 0 0 0 15px;
}

.f001 ul.sub-menu > li > a {
	color: var(--text-color);
	padding: 0;
}

.f001 ul.nav > li > a:before {
    content: "";
    display: block;
    width: 0.5em;
    height: 0.8em;
    background: #fff;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: var(--blue-grad01);
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
}

.f001 .nav li ul.sub-menu li,
.f001 .nav li ul.children li {
	padding: 0;
}

.f001 .nav li ul.sub-menu a:before,
.f001 .nav li ul.children a:before {
	color: var(--blue02);
}

.f001 .copyright {
	background: var(--black01);
	color: #fff;
	padding: 15px 5%;
	display: flex;
}
.f001 .copyright a {
	color: #fff;
}
.f001 .copyright a.link_policy {
	margin: 0 2em;
}
.f001 .copyright a.link_policy:before {
    content: "";
    display: inline-block;
    width: 0.5em;
    height: 0.8em;
    background: #fff;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
	margin-right: 0.5em;
}
.f001 .copyright a.link_recruit {
	margin-left: auto;
}
.f001 .copyright a[target="_blank"]:after {
    content: "";
    display: inline-block;
    width: 0.8em;
    height: 0.8em;
    background-image: url(../images/common/icon_outlink.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 1em;
    filter: var(--white-filter);
}


@media (max-width: 1199px) {
	.f001 #inner-footer {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.f001 nav {
		display: none;
	}
}
@media (max-width: 767px) {
	.f001 #inner-footer {
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.f001 #inner-footer > * {
		width: 100%;
		text-align: center;
	}

	.f001 .logo {
		margin-bottom: 15px;
	}
	.f001 .sns_box {
		justify-content: center;
	}

	.f001 .copyright {
		padding-bottom: 70px;
		flex-wrap: wrap;
		gap: 10px 0;
	}
	.f001 .copyright > span {
		width: 100%;
		text-align: center;
	}
	.f001 .copyright a.link_policy {
		margin: 0;
	}
}




.fixed_contact {
	position: fixed;
	top: 150px;
	right: 0;
	z-index: 99;
}

.fixed_contact a {
	color: #fff;
	writing-mode: vertical-lr;
	display: flex;
	align-items: center;
	width: 80px;
	padding: 10px 0 20px;
	border-radius: 20px 0 0 20px;
	transition: opacity 0.3s;
}

.fixed_contact a:hover {
	opacity: 0.7;
}

.fixed_contact a.line {
	background: var(--line-color);

}
.fixed_contact a.entry {
	background: var(--orange01);
	margin-top: 15px;
}
.fixed_contact a img {
	width: 60px;
	height: 60px;
	object-fit: contain;
}
.fixed_contact a.entry img {
	width: 35px;
}
.fixed_contact a > span {
	flex-direction: column;
	font-weight: bold;
	font-size: 20px;
}

@media (max-width: 767px) {

	.fixed_contact {
		top: auto;
		bottom: 0;
		left: 0;
		display: flex;
	}
	.fixed_contact a,
	.fixed_contact a.entry {
		width: 50%;
		border-radius: 20px 20px 0 0;
		writing-mode: horizontal-tb;
		padding: 5px 10px;
		margin: 0;
		justify-content: center;
	}
	.fixed_contact a.entry {
		gap: 0 15px;
	}
	.fixed_contact a.entry img {
		width: 30px;
		height: 40px;
	}
	.fixed_contact a.line img {
    	height: 45px;
		width: 50px;
	}
	.fixed_contact a > span {
		font-size: 16px;
	}

}


/* *************************************
// ページネーション
************************************* */
.pagination ul {
	display: flex;
	justify-content: center;
	margin-top: 30px;
	gap: 10px;
}
.pagination li {
	margin: 0;
	border: none;
}
.pagination li > a,
.pagination li > span {
	padding: 3px 10px;
	border-radius: 5px;
    display: block;
}
.pagination li > a {
	border: 1px solid var(--blue01);
	color: #000;
	background: #fff;
	transition: all 0.3s;
}
.pagination li > .page-numbers.current {
	border: 1px solid var(--blue01);
	color: #fff;
	background: var(--blue01);
}
.pagination li > a:hover,
.pagination li > a:focus {
	background: var(--blue01);
	color: #fff;
}

@media (max-width: 767px) {
	#archive_job_list .pagination ul {
		font-size: 14px;
	}
	.pagination li > span.dots {
		padding: 3px 0;
	}

}

#archive_job_list .pagination ul {
	justify-content: flex-end;
	margin: 15px 0;
}



/* *************************************
// メインビジュアル(main visual)
************************************* */
.mv001 .mv001_slider.slick-dotted.slick-slider {
	margin: 0;
}

.mv001 .mv001_slider .slick-dots {
	bottom: 10px;
}
.mv001 .mv001_slider .slick-dots li {
	margin: 0;
}
.mv001 .mv001_slider .slick-dots li button:before {
	font-size: 14px;
	width: 18px;
	opacity: 1;
	color: #ccc;
}
.mv001 .mv001_slider .slick-dots li.slick-active button:before {
	opacity: 1;
    color: #fff;
}

.mv001 .mv001_slider img {
    aspect-ratio: 5 / 2;
    object-fit: cover;
	width: 100%;
}

@media (max-width: 767px) {

	.mv001 .mv001_slider img {
		aspect-ratio: 2 / 3;
	}


}


/* *************************************
// TOP
************************************* */
section {
	padding: 80px 0;
}

@media (max-width: 767px) {

	section {
		padding: 50px 0;
	}

}

#top_about {
	position: relative;
}
#top_about:after {
	content: "";
	display: block;
	width:100%;
	height: 1px;
	background: var(--blue-grad01);
	position: absolute;
	bottom: 0;
	left: 0;
}

#top_about .text {
	font-size: 20px;
	line-height: 2;
}

@media (max-width: 1029px) {
	#top_about .text {
		font-size: 16px;
		padding: 0 60px;
	}
}

@media (max-width: 767px) {
	#top_about .text {
		padding: 0;
	}
}

.title01 {
	margin-bottom: 15px;
}
.title01 .title {
	text-align: center;
	font-weight: bold;
	font-size: min(5vw, 60px);
	line-height: 1.5;
	background: var(--blue-grad01); 
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: table;
	margin-left: auto;
	margin-right: auto;
	font-family: "Noto Sans JP", sans-serif;
	font-feature-settings: "palt";
}
.title01 .subtitle {
	text-align: center;
	font-weight: bold;
    font-size: min(3vw, 38px);
	font-family: "Noto Sans JP", sans-serif;
	font-feature-settings: "palt";
}

@media (max-width: 767px) {
	.title01 .title {
		font-size: 30px;
	}
	.title01 .subtitle {
		font-size: 18px;
	}
}


.title02 .en {
	text-align: center;
	font-weight: 500;
	font-size: min(7vw, 60px);
	background: var(--blue-grad01); 
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: table;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 10px;
	position: relative;
	padding: 0 0.5em;
	line-height: 1;
}

.title02 .en:before {
    content: "";
    display: block;
    width: 2px;
	height: 80%;
    background: var(--blue-grad03);
    position: absolute;
    left: 0;
    bottom: 0;
    transform: rotate(-20deg);
}
.title02 .en:after {
    content: "";
    display: block;
    width: 2px;
	height: 80%;
    background: var(--blue-grad03); 
    position: absolute;
    right: 0;
    bottom: 0;
    transform: rotate(20deg);
}

.title02 .jp {
	text-align: center;
	font-weight: bold;
    font-size: min(3vw, 25px);
	margin-bottom: 15px;
}

@media (max-width: 767px) {
	.title02 .en {
		font-size: 35px;
	}
	.title02 .jp {
		font-size: 20px;
	}
}


.pickup_job_list {
	padding: 0 100px;
	max-width: 1600px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.pickup_job_list .slide-arrow {
	width: 100px;
	height: 100%;
	position: absolute;
	top: 0;
	cursor: pointer;
}
.pickup_job_list .slide-arrow:before,
.pickup_job_list .slide-arrow:after {
	content: "";
	display: block;
	width: 2px;
	height: 50px;
	position: absolute;
	background: var(--blue-grad03);
}
.pickup_job_list .prev-arrow {
	left: 0;
}
.pickup_job_list .next-arrow {
	right: 0;
}
.pickup_job_list .prev-arrow:before {
	left: 50%;
	top: 50%;
	transform: rotate(-30deg);
	transform-origin: top left;
	background: var(--blue-grad04);
}
.pickup_job_list .prev-arrow:after {
	left: 50%;
	bottom: 50%;
	transform: rotate(30deg);
	transform-origin: bottom left;
}
.pickup_job_list .next-arrow:before {
	right: 50%;
	top: 50%;
	transform: rotate(30deg);
	transform-origin: top left;
	background: var(--blue-grad04);
}
.pickup_job_list .next-arrow:after {
	right: 50%;
	bottom: 50%;
	transform: rotate(-30deg);
	transform-origin: bottom left;
}
.pickup_job_list .slick-track {
    display: flex;
    align-items: stretch;
}


.pickup_job_list .item {
	padding: 10px 20px;
	height: auto;
}
.pickup_job_list .item .box {
	background-image: var(--blue-grad01);
	display: block;
	border-radius: 15px;
	padding: 2px;
	position: relative;
	z-index: 0;
	color: var(--text-color);
	box-shadow: 8px 5px 0px var(--gray03);
	height: 100%;
}
/*
.pickup_job_list .item .box:after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: var(--gray02);
	position: absolute;
	bottom: -8px;
	right: -5px;
	opacity: 0.3;
	border-radius: 15px;
	z-index: -1;
}
*/
.pickup_job_list .item .box > .inner {
	background: #fff;
	display: block;
	border-radius: 15px;
	padding: 20px;
	height: 100%;
}
.pickup_job_list .item .box .cat {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 5px;
	margin-bottom: 10px;
}
.pickup_job_list .item .box .cat > span {
	background-color: var(--blue01);
	color:  #fff;
	display: inline-block;
	padding: 0 1em;
	font-size: min(14px, 1vw);
}
.pickup_job_list .item .box .job_name  {
	font-weight: bold;
	font-size: 18px;
	line-height: 1.5;
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	margin-bottom: 10px;
	max-height: 3em;
}
.pickup_job_list .item .box .image {
	margin-bottom: 10px;
}
.pickup_job_list .item .box .image > img {
    aspect-ratio: 5 / 3;
	object-fit: cover;
	width: 100%;
}
.pickup_job_list .item .box .description  {
	font-size: 16px;
	line-height: 1.5;
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	margin-bottom: 10px;
	height: 3em;
}
.pickup_job_list .item .box .recruit_info {
	font-size: 16px;
	border-collapse: separate;
	border-spacing: 0 10px;
	line-height: 1.5;
}
.pickup_job_list .item .box .recruit_info th {
	background: var(--gray01);
	color: #fff;
	padding: 0 1em;
	border-radius: 5px;
	white-space: nowrap;
    vertical-align: middle;
}
.pickup_job_list .item .box .recruit_info td {
	font-weight: bold;
	padding: 0 10px;
}

@media (max-width: 1029px) {
	.pickup_job_list {
		padding: 0 30px;
	}
	.pickup_job_list .slide-arrow {
		width: 30px;
	}
	.pickup_job_list .slide-arrow:before,
	.pickup_job_list .slide-arrow:after {
		height: 30px;
	}
	.pickup_job_list .prev-arrow:before {
		left: 20%;
	}
	.pickup_job_list .prev-arrow:after {
		left: 20%;
	}
	.pickup_job_list .next-arrow:before {
		right: 20%;
	}
	.pickup_job_list .next-arrow:after {
		right: 20%;
	}

	.pickup_job_list .item {
		padding: 10px;
	}
	.pickup_job_list .item .box .cat > span {
		font-size: 12px;
	}
	.pickup_job_list .item .box .job_name {
		font-size: 16px;
	}
	.pickup_job_list .item .box .description {
		font-size: 14px;
	}
	.pickup_job_list .item .box .recruit_info {
		font-size: 14px;
	}
}

@media (max-width: 767px) {

	.pickup_job_list .item .box .recruit_info {
		font-size: 12px;
	}

}


#recruit_pickup .btn01 {
	margin-top: 50px;
}



#top_job_search {
	background: var(--blue03);
}

#top_job_search .special > .card02 {
	margin-top: 80px;
}
#top_job_search .special > .card02 > .item > img {
    object-position: left 30%;
    aspect-ratio: 3 / 1;
}

.title03 {
	margin-bottom: 30px;

}
.title03 > img {
	display: block;
	margin: 0 auto 10px;
	width: 40px;
	height: auto;
}
.title03 .en {
	text-align: center;
	font-weight: 500;
	font-size: min(7vw, 60px);
	background: var(--blue-grad01); 
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: table;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 10px;
	line-height: 1;
}

.title03 .jp {
	text-align: center;
	font-weight: bold;
    font-size: min(3vw, 25px);
}

@media (max-width: 767px) {
	.title03 .en {
		font-size: 35px;
	}

	.title03 .jp {
		font-size: 20px;
	}

}


.job_search_box {
	width: 96%;
	max-width: 1400px;
	margin: auto;
}

.search_box {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
}

.search_box .free_word {
	width: 100%;
	margin-bottom: 40px;
}

.search_box .free_word input {
	background: #fff;
	border: 1px solid var(--gray01);
	margin: 0 auto;
	width: 600px;
	max-width: 100%;
}
.search_box .free_word input::placeholder {
	text-align: center;
}

.search_box .box {
	width: auto;
	flex: 1;
	border: 1px solid var(--gray01);
	background: #fff;
}

.search_box .box h3 {
	width: 100%;
	background: var(--gray01);
	color: #fff;
	text-align: center;
	padding: 10px;
	font-weight: 500;
	font-size: 20px;
}

.search_box .box .check_list {
	display: flex;
	flex-wrap: wrap;
	padding: 15px 30px;
}

.search_box .box span.checkbox {
	margin-right: 1.5em;
	margin-top: 5px;
	margin-bottom: 5px;
	display: block;
	min-width: calc(33.3333% - 1.5em);
	max-width: calc(100% - 1.5em);
}

.search_box .btn_box {
	width: 100%;
}

.search_box .box input[type="checkbox"] {
	display: none;
}

.search_box .box input[type="checkbox"]+label {
    display: none;
    cursor: pointer;
    display: inline-block;
    position: relative;
    letter-spacing: 0;
    white-space: nowrap;
	line-height: 20px;
	padding: 5px 0 5px 30px;
}

.search_box .box input[type="checkbox"]+label::before{
	content: "";
	position: absolute;
	display: block;
	box-sizing: border-box;
    width: 20px;
    height: 20px;
	left: 0;
	top: 5px;
	border: 2px solid;
	border-color: #999;
	background-color: #fff;
}
.search_box .box input[type="checkbox"]:checked+label::after{
	content: "";
	position: absolute;
	display: block;
	box-sizing: border-box;
	width: 20px;
	height: 12px;
	top: 6px;
	left: 6px;
	transform: rotate(-45deg) translateY(-35%);
	border-bottom: 5px solid;
	border-left: 5px solid;
    border-color: #0070a8;
}

.search_box .btn_box {
	display: flex;
	flex-wrap:wrap;
	justify-content: center;
	margin-bottom: 0;
	margin-top: 50px;
}

.search_box input[type="submit"] {
    background-image: url(../images/common/icon_megane_w.svg), var(--blue-grad01);
	background-size: 1.5em, auto;
	background-position: center left 50px, center;
	background-repeat: no-repeat;
    color: #fff;
    border-radius: 5px;
    position: relative;
    z-index: 0;
	min-width: 300px;
	width: 300px;
    padding: 15px;
    font-weight: 500;
    gap: 0 1em;
    z-index: 0;
    box-shadow: 5px 5px 0px var(--gray03);
	font-size: 20px;
	text-align: center;
	cursor: pointer;
}

.search_box .box.valve span.checkbox {
	min-width: calc(50% - 1.5em);
}
.search_box .box.size span.checkbox {
	width: calc(25% - 0.5em);
	min-width: calc(25% - 0.5em);
    margin-right: 0.5em;
}
.search_box .box.standard span.checkbox {
	min-width: calc(25% - 1.5em);
}

@media (max-width: 1029px) {
	.search_box {
		padding: 0 50px;
	}
	.search_box .box {
		width: 100%;
		display: flex;
		flex: none;
	}
	.search_box .box h3 {
		width: 60px;
		writing-mode: vertical-lr;
	}
	.search_box .box .check_list {
		width: calc(100% - 60px);
	}
	.search_box .two_in_one > div {
		width: 100%;
	}
	.search_box .box.valve span.checkbox {
		min-width: 0;
	}
}

@media (max-width: 767px) {
	.search_box {
		padding: 15px;
	}
	.two_block2 > span {
		font-size: 25px;
	}
	.two_block2 h2 {
		font-size: 22px;
	}
	.search_box .box h3 {
		padding: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 50px;
	}
	.search_box .free_word {
		margin-bottom: 15px;
	}
	.search_box .box .check_list {
		padding: 15px 20px;
	}

	.search_box .box span.checkbox {
		font-size: 14px;
	    line-height: 25px;
	}
	.search_box .box input[type="checkbox"]+label {
		padding-left: 30px;
	}
	.search_box .box.valve span.checkbox {
		min-width: calc(50% - 0.5em);
		margin-right: 0.5em;
	}
	
	.search_box .box.drive span.checkbox {
		min-width: calc(50% - 0.5em);
		margin-right: 0.5em;
	}
	.search_box .box.size span.checkbox {
		min-width: calc(33.3333% - 0.5em);
		margin-right: 0.5em;
	}
	.search_box .box.standard span.checkbox {
		min-width: calc(24% - 0.5em);
		margin-right: 0.5em;
	}

	.search_box .btn_box {
		margin-top: 15px;
	}
	
	.search_box input[type="submit"] {
		padding: 15px;
	}

}



.image01 {
	width: 96%;
	margin: auto;
	max-width: 1400px;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 40px;
}
.image01 > .item {
	width: 100%;
}

.image01 > .item  img {
	width: 100%;
	display: block;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	margin-bottom: 10px;
}

.image01 > .item .catch {
	background: var(--blue-grad01);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
	display: table;
	margin: auto;
	font-weight: bold;
	text-align: center;
	font-size: 25px;
	margin-bottom: 10px;
	line-height: 1.5;
}

.image01 > .item .text {
	font-size: 18px;
}

@media (max-width: 1029px) {
	.image01 {
		grid-template-columns: 100%;
		padding: 0 50px;
	}
	.image01 > .item {
		display: grid;
		gap: 20px 40px;
		grid-template-columns: 40% 1fr;
		align-items: center;
	}
	.image01 > .item .catch {
		display: block;
		text-align: left;
	}
}	

@media (max-width: 767px) {

	.image01 {
		padding: 0;
	}
	.image01 > .item {
		display: block;
	}
	.image01 > .item .catch {
		text-align: center;
		font-size: 20px;
	}
	.image01 > .item .text {
		font-size: 16px;
	}

}


#top_reason .title01 {
	margin-bottom: 30px;
}

#top_reason .btn01 {
	margin-top: 80px;
}
#top_reason .btn01 > a {
	background: var(--orange01);
	position: relative;
}
#top_reason .btn01 > a > span {
	position: absolute;
	background: var(--yellow01);
	display: inline-block;
	border-radius: 10px;
	bottom: calc(100% - 10px);
	left: -10px;
	padding: 10px;
	color: var(--text-color);
	line-height: 1;
	font-size: 14px;
}

#top_reason .btn01 > a > span:before {
    content: "";
    display: block;
    width: 10px;
    height: 5px;
    position: absolute;
	top: 100%;
	left: 50%;
	background: var(--yellow01);
	clip-path: polygon(93% 0, 0 0, 100% 100%);
}

@media (max-width: 767px) {

	#top_reason .btn01 {
		margin-top: 50px;
	}

}


#top_corporation {
	position: relative;
	z-index: 0;
}
#top_corporation > img.bg {
	width: 75%;
	height: 100%;
	display: block;
	object-fit: cover;	
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
#top_corporation:after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(to right,  rgba(204,243,255,0) 0%,rgba(204,243,255,1) 75%,rgba(204,243,255,1) 100%);
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
}


#top_corporation .box {
	background: #fff;
	width: 50%;
	margin-left: auto;
	padding: 50px;
	min-width: 520px;
}
#top_corporation .box .title01 .title {
	font-size: 50px;
	text-align: left;
	margin: 0;
	line-height: 1.4;
	margin-bottom: 30px;
}
#top_corporation .box .title01 .title > span {
	display: block;
}
#top_corporation .box .title01 .title > span:first-child {
	font-size: 30px;
}
#top_corporation .box .title01 .subtitle {
	font-size: 24px;
	text-align: left;
	margin-bottom: 15px;
	line-height: 1.5;
}

#top_corporation .box .text {
}

#top_corporation .box .btn01 {
	margin-top: 40px;
	justify-content: flex-start;
}

#top_corporation .box .btn01 > a {
	background: var(--orange01);
}

@media (max-width: 1029px) {
	#top_corporation .box {
		margin: auto;
	}
	#top_corporation .box .title01 .title {
		font-size: 40px;
	}
}

@media (max-width: 767px) {

	#top_corporation .box {
		width: 90%;
		min-width: 0;
		padding: 30px 20px;
	}
	#top_corporation .box .title01 .title {
		font-size: 30px;
		margin-bottom: 25px;
	}
	#top_corporation .box .title01 .title > span:first-child {
		font-size: 20px;
	}
	#top_corporation .box .title01 .subtitle {
		font-size: 18px;
	}

	#top_corporation .box .btn01 {
		margin-top: 25px;
	}
	#top_corporation .box .btn01 > a {
		margin: auto;
	}

}


section.archive_column > .inner {
	width: 96%;
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
}

.archive_column .pl002 > a {
    background: #fff;
    display: block;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
	border: 1px solid var(--blue01);
	box-shadow: 8px 5px 0px var(--gray03);
}
.archive_column .pl002 > a .image {
	margin-bottom: 15px;
}
.archive_column .pl002 > a .category {
	margin: 15px 0 10px;
}
.archive_column .pl002 > a .category > span {
	background: var(--blue01);
}
.archive_column .pl002 > a .title {
	font-weight: 500;
}

@media (max-width: 1029px) {

	#top_column .pl002 {
		grid-template-columns: 100%;
		max-width: 500px;
		margin: 0 auto 30px;
	}
	#top_column .pl002 > a {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto 1fr;
		gap: 15px 40px;
	}
	#top_column .pl002 > a .image {
		grid-column: 1 / 2;
		grid-row: 1 / 3;
		margin: 0;
	}
	#top_column .pl002 > a .category {
		grid-column: 2 / 3;
		grid-row: 1 / 2;
		margin: 0;
	}
	#top_column .pl002 > a .title {
		grid-column: 2 / 3;
		grid-row: 2 / 3;
	}

	section.archive_column .pl002 {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 767px) {

	#top_column .pl002 > a {
		display: block;
		padding: 30px 20px 20px;
	}
	#top_column .pl002 > a .image {
		margin-bottom: 15px;
	}
	#top_column .pl002 > a .title {
		font-size: 16px;
	}

	section.archive_column .pl002 {
		grid-template-columns: 100%;
	}
}




.cat_list001 > a {
	border: 1px solid var(--blue01);
    color: var(--blue01);
}
.cat_list001 > a.current {
    background: var(--blue01);
}




#top_company_info {
	padding-top: 50px;
}

#top_company_info .link_btn {
	padding: 50px 0;
}

#top_company_info .image02 {
	margin-top: 80px;
}

@media (max-width: 767px) {
	#top_company_info .image02 {
		margin-top: 0px;
	}
}


.link_btn {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0 60px;
}

.link_btn > div {
	width: auto;
}


.title04 {
	position: relative;
	padding-left: 30px;
	margin-bottom: 40px;
}
.title04:before {
	content: "";
	display: block;
	width: 10px;
	height: 100%;
	background-image: var(--blue-grad03);
	position: absolute;
	top: 0;
	left: 0;
}
.title04 .en {
	text-align: center;
    font-weight: 500;
    font-size: min(7vw, 60px);
    line-height: 1;
    background: var(--blue-grad01);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: table;
    margin-left: 0;
    margin-right: auto;
    margin-bottom: 10px;
}
.title04 .jp {
	font-size: min(3vw, 24px);
    text-align: left;
    line-height: 1.5;
	font-weight: 500;
}

@media (max-width: 767px) {

	.title04 .en {
		font-size: 35px;
	}
	.title04 .jp {
		font-size: 20px;
	}
}

.image02 {
	display: grid;
	grid-template-columns: 1fr 50%;
	gap: 20px 60px;
}
.image02 > div {
	width: 100%;
}

.image02 .image > img {
	width: 100%;
	display: block;
}


@media (max-width: 767px) {

	.image02 {
		grid-template-columns: 100%;
	}


}



.btn02 {
	margin-top: 40px;
}
.btn02 > a {
    background: #fff;
    color: var(--text-color);
    border-radius: 0;
    position: relative;
    z-index: 0;
	text-align: center;
    min-width: 250px;
    width: 250px;
    padding: 10px 15px;
    font-weight: 500;
    z-index: 0;
    font-size: 16px;
	display: inline-block;
	border: 1px solid #ccc;
}
.btn02 > a:after {
    content: "";
    display: block;
    width: 0.5em;
    height: 0.8em;
    background: #fff;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: var(--blue-grad01);
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
}

@media (max-width: 767px) {

	.btn02 {
		margin-top: 20px;
	}

}

.top_news {
	display: flex;
	flex-wrap: wrap;
	gap: 0 60px;
	align-items: flex-start;
	margin-top: 80px;
}

.top_news .post_list {
	flex: 1;
}

.top_news .btn03 {
	width: 100%;
}

@media (max-width: 767px) {

	.top_news {
		display: block;
	}

}


.post_list > .post_item {
	border-bottom: 1px solid var(--gray01);
	margin-bottom: 0;
}
.post_list > .post_item:first-child {
	border-top: 1px solid var(--gray01);
}
.post_list > .post_item > a {
	display: grid;
	grid-template-columns: 100px 1fr;
	gap: 5px 0;
	padding: 10px;
	color: var(--text-color);
}

.post_list > .post_item > a .date {
	color: var(--gray01);
}
.post_list > .post_item > a .title {
  overflow: hidden; 
  text-overflow: ellipsis;
  white-space: nowrap;
}

.post_list > .post_item > a .category {
	display: flex;
	flex-wrap: wrap;
	gap: 5px 20px;
	align-items: center;
}
.post_list > .post_item > a .category > span {
	background: #fff;
	border: 1px solid var(--blue01);
	color: var(--blue01);
	font-size: 14px;
	line-height: 1;
	padding: 3px 0.5em;

}
.post_list > .post_item > a .category + .title {
	grid-column: 1 / 3;
	grid-row: 2;
}

@media (max-width: 767px) {

	.post_list > .post_item > a {
		display: block;
	}
	.post_list > .post_item > a .title {
		overflow: visible;
		white-space: normal;
	}
}


.btn03 {
    display: flex;
    justify-content: flex-end;
	margin-top: 15px;
}
.btn03 > a {
	color: var(--text-color);
	font-weight: 500;
}
.btn03 > a:after {
    content: "";
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    border-top: 1px solid var(--blue02);
    border-right: 1px solid var(--blue02);
    transform: rotate(45deg);
    transform-origin: top;
    margin-left: 0.5em;
}






/* *************************************
// 仕事情報
************************************* */


.works_info {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
    align-items: baseline;
	font-weight: 500;
	margin-bottom: 10px;
}

.works_info .number {
	display: flex;
    align-items: baseline;
	gap: 0 0.5em;
}

.works_info .number > span {
	background: var(--gray02);
	color: #fff;
	padding: 0 10px;
	border-radius: 5px;
}

.works_info .date {
	color: var(--text-color);
	margin-left: auto;
}
.works_info .date > span:after {
	content: ":";
	margin: 0.5em;
	display: inline;
}

@media (max-width: 767px) {
	.works_info {
		font-size: 14px;
	}

}

h2.works_title {
	font-size: 30px;
	line-height: 1.5;
	font-weight: bold;
	margin-bottom: 30px;
}

.works_description {
	display: grid;
	grid-template-columns: 1fr 55%;
	gap: 40px;
    align-items: start;
}
.works_description > div {
	width: 100%;
}

.works_description > .right > img {
	display: block;
	width: 100%;
}

.works_description .category {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 30px;
}
.works_description .category > span {
	border: 1px solid var(--blue01);
	background: var(--blue01);
	color:  #fff;
	display: inline-block;
	padding: 0 1em;
	font-size: 16px;
}

.works_description .catch {
	margin-bottom: 30px;
	font-weight: bold;
	font-size: 18px;
}

.works_description table.works_table1 {
	font-size: 18px;
}

.works_description table.works_table1 th {
	padding: 10px;
}
.works_description table.works_table1 th > span {
    background: var(--gray02);
    color: #fff;
    padding: 0 10px;
    border-radius: 5px;
    text-align: center;
	display: flex;
	align-items: center;
	font-size: 16px;
	gap: 0 10px;
	letter-spacing: 1px;
	min-width: 160px;
}

.works_description table.works_table1 th > span img {
	width: 1em;
	height: 1em;
	object-fit: contain;
	filter: invert(99%) sepia(1%) saturate(7500%) hue-rotate(204deg) brightness(121%) contrast(96%);
}

.works_description table.works_table1 td {
	padding: 10px;
	line-height: 1.4;
}

@media (max-width: 1029px) {
	.works_description {
		grid-template-columns: 1fr 1fr;
	}
	.works_description table.works_table1 {
		font-size: 16px;
	}
	.works_description table.works_table1 th > span {
		font-size: 16px;
	}

}

@media (max-width: 767px) {
	h2.works_title {
		font-size: 20px;
		margin-bottom: 15px;
	}
	.works_description {
		display: flex;
		flex-direction: column;
		gap: 20px;
	}
	.works_description .category {
		margin-bottom: 15px;
	}
	.works_description .category > span {
		font-size: 12px;
	}
	.works_description table.works_table1 {
		font-size: 13px;
		width: 100%;
	}
	.works_description table.works_table1 th {
		padding: 5px 0;
	}
	.works_description table.works_table1 th > span {
		font-size: 12px;
		min-width: 105px;
		padding: 0 5px;
		gap: 5px;
	}
	.works_description table.works_table1 td {
		padding: 5px 10px;
	}
}

h3.point_title {
	background: transparent;
	padding: 0;
	color: var(--text-color);
	margin: 15px 0;
	font-size: 20px;
	font-weight: bold;
}
#works_content h3.point_title {
	background: transparent;
	padding: 0;
	margin: 15px 0;
	font-weight: bold;
	color: var(--text-color);
}


.works_point {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 30px;
	font-size: 14px;
}
.works_point > li:before {
	content: "#";
	display: inline;
	margin-right: 0.1em;
}
.works_point > li {
	background: var(--gray04);
	padding: 0px 10px;
	border-radius: 100vmax;
	display: inline-block;
}

#works_content h3 {
	margin: 1.5em 0;
	font-size: 25px;
	font-weight: normal;
    background: var(--gray02);
	padding: 0 20px;
	color: #fff;
}
#works_content table.works_table2 {
	width: 100%;
}
#works_content table.works_table2 th {
	padding: 20px 15px 20px 0px;
	position: relative;
	width: 180px;
	border-bottom: 1px solid #ccc;
	font-weight: bold;
}
#works_content table.works_table2 th span {
    display: block;
	padding-left: 20px;
	border-left: 5px solid var(--blue01);
}

#works_content table.works_table2 td {
	padding: 20px 15px;
	border-bottom: 1px solid #ccc;
}

#works_content table.works_table2 tr:last-child th,
#works_content table.works_table2 tr:last-child td {
	border-bottom: none;
}

@media (max-width: 767px) {

	#works_content h3 {
		font-size: 18px;
	}

	#works_content table.works_table2 th,
	#works_content table.works_table2 td {
		display: block;
		width: 100%;
		border-bottom: none;
	}
	#works_content table.works_table2 th {
		padding: 0 15px 0 0;
	}
	#works_content table.works_table2 td {
		font-size: 14px;
		padding: 15px;
	}

	#works_content table.works_table2 th span {
		padding-left: 10px;
	}

	.free_contents {
		font-size: 14px;
	}

}


.works_list {
	display: grid;
	grid-template-columns: 100%;
	gap: 40px 0;
}

.works_list > .item {
	border: 1px solid var(--blue01);
	background: #fff;
	box-shadow: 8px 5px 0px var(--gray03);
	border-radius: 15px;
	padding: 30px;
	color: var(--text-color);
}
.works_list > .item .works_title {
	font-size: 22px;
	margin-bottom: 15px;
}
.works_list > .item .works_description > div.left {
	grid-column: 2 / 3;
	grid-row: 1;
}
.works_list > .item .works_description > div.right {
	grid-column: 1 / 2;
	grid-row: 1;
	display: flex;
	align-items: center;
}

.works_list > .item .works_description > div.right > img {
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}

.works_list > .item .works_description .category {
	margin-bottom: 15px;
}

.works_list > .item .works_description .catch {
	font-weight: bold;
	line-height: 1.5;
	margin: 0.5em 0 1em;
}

.works_list > .item .works_description table.works_table1 th {
	padding: 5px;
}
.works_list > .item .works_description table.works_table1 td {
	padding: 5px;
}

.works_list > .item .works_point {
	margin: 15px 0 0;
}

@media (max-width: 767px) {
	
	.works_list > .item {
		padding: 30px 15px;
		margin-right: 5px;
	}
	.works_list > .item .works_point {
		font-size: 12px;
	}
	.works_list > .item .works_title {
		font-size: 20px;
	}
	.works_description .catch {
		font-size: 16px;
		margin-bottom: 15px;
	}

	.works_point {
		font-size: 12px;
	}


	#works_content h3.point_title {
		font-size: 18px;
	}
}



.result_text {
	display: flex;
	align-items: baseline;
	margin-bottom: 15px;
}
.result_text h2:after {
	content: ":";
	display: inline;
	margin: 0 0.5em;
}

.result_text .count {
}

.result_text .count > span {
	font-size: 150%;
	font-weight: bold;	
	margin: 0 0.3em;
}



/* *************************************
// エントリーフォーム
************************************* */
table.mail_form tr th.required:after {
	background: var(--orange01);
}
.page_entry a {
	text-decoration: underline;
}


.page_entry form {
	width: 800px;
	max-width: 100%;
	margin: auto;
}

.page_entry form h2 {
    font-size: 25px;
    font-weight: normal;
    background: var(--blue01);
    padding: 0 20px;
    color: #fff;
	margin: 3em 0 1em; 
}

.page_entry table.mail_form {
	width: 100%;
}
.page_entry table.mail_form th {
	width: 200px;
}


.page_entry table.mail_form td .row {
	display: flex;
	gap: 10px 15px;
	flex-wrap:wrap;
	align-items: baseline;
}

.page_entry table.mail_form td.work {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.page_entry table.mail_form input[name="job_id"] {
	width: 200px;
}

.page_entry table.mail_form td.name .row {
	display: grid;
	grid-template-columns: 2em 1fr 2em 1fr;
}


.page_entry table.mail_form td.address {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.page_entry table.mail_form td.address .row.address1,
.page_entry table.mail_form td.address .row.address2,
.page_entry table.mail_form td.address .row.address3 {
	display: grid;
	grid-template-columns: 200px 1fr;
}


.page_entry table.mail_form input[name="inquiry_address1"] {
	width: 200px;
}

.page_entry table.mail_form input[name="birth"] {
	width: 200px;
}

.accept_text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-top: 2em;
}

.wpcf7-form-control {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 1em;
}

.wpcf7-list-item {
	margin: 0;
}

form .btn01 {
    flex-direction: column;
    align-items: center;
	gap: 15px;
}


@media (max-width: 767px) {

	.page_entry form h2 {
		font-size: 20px;
	}

	.page_entry table.mail_form td.address .row.address1,
	.page_entry table.mail_form td.address .row.address2,
	.page_entry table.mail_form td.address .row.address3 {
		grid-template-columns: 100%;
	}


}


/* *************************************
// よくあるご質問
************************************* */
#faq_contents > div > div:last-child {
  margin-bottom: 0;
}

#faq_contents .item {
  container-type: inline-size;
  margin-bottom: 50px;
  --title-size: 20px;
}

#faq_contents .item .question {
  position: relative;
  font-size: var(--title-size);
  color: #333;
  font-weight: bold;
  line-height: 1.5;
  border-bottom: 1px solid #ccc;
  gap: 0.5em;
  padding: 0 0.5em 15px;
  align-items: center;
  padding-left: calc(1.75em + 1em);
  margin-bottom: 25px;
}

#faq_contents .item .question::before {
  content: 'Q';
  position: absolute;
  top: calc(1.5em / 2);
  left: 0.5em;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.75em;
  height: 1.75em;
  background-color: var(--blue01);
  color: #fff;
  border-radius: 5px;
  padding-bottom: 3px;
}

#faq_contents .item .answer {
  position: relative;
  padding-left: calc(var(--title-size) * 1.75 + var(--title-size));
}

#faq_contents .item .answer::after {
  content: 'A';
  position: absolute;
  font-size: var(--title-size);
  top: 0;
  left: 0.5em;
  color: var(--blue01);
  background-color: #fff;
  border: 1px solid var(--blue01);
  width: 1.75em;
  height: 1.75em;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  font-weight: bold;
  padding-bottom: 2px;
}

@media (max-width: 767px) {
  #faq_contents .item {
    --title-size: calc(18 / 360 * 100cqi);
  }

  #faq_contents .item .question {
    margin-bottom: 15px;
  }

  #faq_contents .item .answer {
    font-size: 14px;
  }
}

h2.faq_title {
	font-size: 30px;
	line-height: 1.5;
	font-weight: bold;
	margin-bottom: 50px;
}

.faq_type02 .faq_list {
	margin-bottom: 80px;
}

@media (max-width: 767px) {

	h2.faq_title {
		font-size: 25px;
	}

}

.faq_type02 .faq_list > .item {
    margin-bottom: 10px;
}

.faq_type02 .faq_list > .item .question {
    border: none;
    background: var(--blue03);
    padding: 10px 15px 15px;
    display: flex;
    gap: 0.5em;
    align-items: baseline;
    margin-bottom: 0;
}
.faq_type02 .faq_list > .item .question:before {
    font-family: "Lato", sans-serif;
    color: var(--blue01);
    position: static;
    transform: none;
    font-size: 35px;
    min-width: 1.75em;
    line-height: 1;
    height: auto;
	background: transparent;
}
.faq_type02 .faq_list > .item .answer {
    border: none;
    padding: 15px;
    display: flex;
    align-items: baseline;
    gap: 0.5em;
}
.faq_type02 .faq_list > .item .answer::before {
    content: 'A';
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.75em;
    height: 1.75em;
    min-width: 1.75em;
    min-height: 1.75em;
    font-weight: bold;
    font-family: "Lato", sans-serif;
    color: var(--blue01);
    position: static;
    transform: none;
    font-size: 35px;
}
.faq_type02 .faq_list > .item .answer::after {
    display: none;
}





/* *************************************
// 会社概要
************************************* */
#company_message {
	padding-bottom: 0;
	overflow: hidden;
}


#company_message .two_in_one {
	display: grid;
	grid-template-columns: 1fr 350px;
	align-items: end;
	margin: auto;
	max-width: 1400px;
	width: 96%;
	position: relative;
	z-index: 0;
}

#company_message .two_in_one > div {
	width: 100%;
}
#company_message .two_in_one > div.left {
	padding-bottom: 80px;
}

#company_message .two_in_one > div.left > .inner {
	width: 90%;
    max-width: 800px;
	margin: auto;
}

#company_message .two_in_one > div.right {
	position: relative;
	z-index: 0;
}
#company_message .two_in_one > .right:before {
	content: "";
	display: block;
	width: 1000px;
	aspect-ratio: 1;
	border-radius: 50%;
	position: absolute;
	bottom: 0;
	left: 0;
	transform: translateY(50%);
	background: var(--blue03);
	opacity: 0.5;
	z-index: -1;
}

#company_message .two_in_one > div.right .image {
	width: 100%;
}

#company_message .two_in_one > div.right .image > img {
	border-radius: 0;
	display: block;
	width: 100%;
	aspect-ratio: auto;
}

#company_message .subtitle {
	font-weight: bold;
	font-size: 30px;
	margin-bottom: 1em;
}

#company_message .name {
	text-align: right;
	font-size: 20px;
}

@media (max-width: 1029px) {
	#company_message .two_in_one {
		grid-template-columns: 100%;
	}
	#company_message .two_in_one > div.right .image {
		width: 200px;
		margin: auto;
	}
	#company_message .two_in_one > div.left {
		padding-bottom: 0;
	}
	#company_message .two_in_one > .right:before {
	    bottom: -60px;
    	left: 20%;
	}
}

@media (max-width: 767px) {

	#company_message .subtitle {
		font-size: 20px;
	}

	#company_message .two_in_one > div.left .text {
		font-size: 14px;
	}

	#company_message .two_in_one > div.right .image {
		width: 150px;
	}

}

#company_philosophy {
	position: relative;
	z-index: 0;
}
#company_philosophy:before {
	z-index: 0;
    background: var(--blue-grad02);
	opacity: 0.9;
}
#company_philosophy img.bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	object-fit: cover;
}
#company_philosophy > .inner {
	position: relative;
	z-index: 1;
}

#company_philosophy .title05 .en {
	background: transparent;
	color: #fff;
	-webkit-text-fill-color: unset;
}

#company_philosophy .subtitle {
	font-size: min(40px, 4vw);
	line-height: 1.5;
}

@media (max-width: 767px) {

	#company_philosophy .subtitle {
		font-size: 20px;
	}

}

#company_profile .company_map {
	flex-direction: row-reverse;
	max-width: 1600px;
	margin: 80px auto 0;
}

#company_profile .image > img {
	display: block;
}

#company_profile .googlemap > iframe {
	width: 100%;
	height: 100%;
}
@media (max-width: 767px) {

	#company_profile table tr th,
	#company_profile table tr td {
		border: none;		
	}
	#company_profile table tr th {
	    background: var(--gray01);
		color: #fff;
		font-weight: bold;
	}

	#company_profile .googlemap > iframe {
		aspect-ratio: 3 / 2;
		height: auto;
	}

	#company_history table tr th,
	#company_history table tr td {
		border: none;		
	}
	#company_history table tr th {
	    background: var(--gray01);
		color: #fff;
		font-weight: bold;
	}

}

.title06 {
	font-size: 25px;
	font-weight: bold;
	margin-bottom: 1em;
	padding-left: 20px;
	position: relative;
	line-height: 1.5;
}
.title06:before {
    content: "";
    display: block;
    width: 10px;
    height: 100%;
    background: #fff;
    background: var(--blue-grad02);
    position: absolute;
    top: 0;
    left: 0px;
}

@media (max-width: 767px) {

	.title06 {
		font-size: 20px;
	}

}

#company_various {
    background-image: var(--blue-grad01);
}

#company_various .box {
	background: #fff;
	margin-bottom: 40px;
	padding: 40px;
}

#company_various h3 {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 0.5em;
}

#company_various .two_in_one {
	display: grid;
	grid-template-columns: 1fr 60%;
	gap: 40px;
}
#company_various .two_in_one > div {
	width: 100%;
}

#company_various .mark_wrap {
	display: flex;
	gap: 40px;
}

#company_various a {
	color: var(--text-color);
	text-decoration: underline;
}

@media (max-width: 767px) {
	#company_various .box {
		padding: 30px 20px;
	}
	#company_various .two_in_one {
		grid-template-columns: 100%;
	}

}



/* *************************************
// お仕事をお探しの方
************************************* */

#individual_about > .inner > .title01:first-child {
	margin-top: 0;
}
#individual_about > .inner > .title01 {
	margin: 80px 0 50px;
}

#individual_about .two_in_one {
	align-items: center;
}
#individual_about .two_in_one > div.text > .inner {
	width: 80%;
	margin: auto;
}

#individual_about .two_in_one .title01 .subtitle {
	font-size: 25px;
	text-align: left;
}
#individual_about .two_in_one .title01 .title {
	font-size: 40px;
	text-align: left;
	margin: 0;
}

@media (max-width: 1029px) {
	#individual_about {
		padding-bottom: 0;
	}
	#individual_about .two_in_one {
		gap: 40px 0;
	}
	#individual_about .two_in_one > div {
		width: 100%;
	}

}
@media (max-width: 767px) {
	#individual_about .two_in_one .title01 .subtitle {
		font-size: 20px;
	}
	#individual_about .two_in_one .title01 .title {
		font-size: 30px;
	}
	#individual_about .two_in_one > div.text > .inner {
		width: 96%;
	}

}

.point_list {
    display: grid;
    grid-template-columns: 100%;
    gap: 40px 60px;
    margin: 40px 0;
}
.point_list > .item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 0 40px;
    align-items: center; 
}
.point_list > .item .image {
    width: 100%;
    grid-column: 1 / 2;
    grid-row: 1;
    background: var(--blue-grad01);
    display: block;
    padding: 15px;
    border-radius: 50%;
}
.point_list > .item .image > img {
    width: 100%;
    aspect-ratio: 1;
    filter: var(--filter-white);
    object-fit: contain;
    object-position: center;
    display: block;
}

.point_list > .item .text {
    grid-column: 2 / 3;
    grid-row: 1;
}

.point_list > .item .text .title {
    display: flex;
    align-items: baseline;
    font-size: max(25px, 1.5vw);
    font-weight: bold;
    gap: 0 1em;
}

.point_list > .item .text .title .number {
    font-size: 180%;
    line-height: 1;
    color: var(--blue01);
}

.point_list > .item .text .title .h > span {
	color: var(--blue01);
}
.point_list.noimage .image {
	border-radius: 0;
    padding: 0;
    font-size: 80px;
    font-weight: 900;
    background: var(--blue-grad01);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-right: 1px solid #000;
    line-height: 1.5;
}


@media (max-width: 1029px) {
	.point_list {
		padding: 0 50px;
	}
}

@media (max-width: 767px) {

    #service_presstape .strength {
        padding: 0;
    }

	.point_list {
		padding: 0;
	}

    .point_list > .item {
        grid-template-columns: 100%;
    }
    .point_list > .item > .text {
        grid-column: 1;
        grid-row: 2;
    }
    .point_list > .item .text .title {
        font-size: 20px;
		margin-bottom: 10px;
    }
    .point_list > .item > .image {
        grid-column: 1;
        grid-row: 1;
        width: 80px;
        justify-self: center;
    }
	.point_list.noimage .image {
		border: none;
		line-height: 1;
		padding: 10px;
		border-bottom: 1px solid #000;
		margin-bottom: 10px;
		width: auto;
		font-size: 60px;
	}
}



#individual_training .two_in_one {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
}
#individual_training .two_in_one > div {
	width: 100%;
}

@media (max-width: 1029px) {
	#individual_training .two_in_one {
		grid-template-columns: 100%;
	}


}

#individual_staff {
	background: var(--blue03);
	margin-bottom: 40px;
}

#individual_staff .description {
	margin-bottom: 50px;
	text-align: center;
}

.voice_list01 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px 60px;
}


.voice_list01 .item {
	width: 100%;
	background: #fff;
	padding: 20px;
	border-radius: 20px;
    box-shadow: 8px 5px 0px var(--gray03);
}

.voice_list01 .item > .info {
}

.voice_list01 .item > .info .job {
	display: flex;
	gap: 0 60px;
	justify-content: center;
	font-size: 14px;
	margin-bottom: 15px;
}

.voice_list01 .item > .info .job > div {
	position: relative;
	display:flex;
	align-items: baseline;
	background: var(--blue01);
	color: #fff;
	padding: 0 1em;
}
.voice_list01 .item > .info .job > div:first-child:after {
    content: "";
    display: block;
    width: 10px;
    height: 15px;
	background: var(--blue01);
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
	left: calc(100% + 25px);
}

.voice_list01 .item > .info .voice {
	font-size: 25px;
	font-weight: bold;
	text-align: center;
	line-height: 1.5;
	margin-bottom: 20px;
}

.voice_list01 .item .images {
	text-align: center;
	width: 100%;
	position: relative;
	margin-bottom: 15px;
}
.voice_list01 .item .images > img {
	aspect-ratio: 1;
	width: 60%;
	margin: auto;
	max-width: 200px;
	display: block;
}

.voice_list01 .item .images .profile {
	position: absolute;
	color: var(--blue01);
	border: 1px solid var(--blue01);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width:100px;
	aspect-ratio: 1;
	border-radius: 50%;
	top: 0;
	right: 0;

}
.voice_list01 .item .text {
	font-size: 15px;
}

@media (max-width: 1029px) {
	.voice_list01 {
		gap: 40px 20px;
	}

	.voice_list01 .item > .info .voice {
		font-size: 20px;
	}
}

@media (max-width: 767px) {

	.voice_list01 {
		grid-template-columns: 100%;
		padding: 0 15px;
	}

	.voice_list01 .item .images .profile {
		width: 80px;
	}
	.voice_list01 .item > .info .job > div:first-child:after {
		left: calc(100% + 12px);
	}
	.voice_list01 .item > .info .job {
		gap: 0 30px;
	}
	.voice_list01 .item .text {
		font-size: 14px;
	}

}



/* *************************************
// 各種業務委託について
************************************* */
#contract_top .title01 {
	margin-bottom: 40px;
}
#contract_top .contract_link_list {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 40px;
}
#contract_top .contract_link_list > div {
    width: 100%;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    gap: 15px;
}
#contract_top .contract_link_list .title {
    background: var(--blue-grad01);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: table;
    margin: auto;
    font-weight: bold;
    text-align: center;
    font-size: 20px;
	line-height: 1.5;
}
#contract_top .contract_link_list .btn02 {
	margin: 0;
	text-align: center;
}

@media (max-width: 1029px) {
	#contract_top .title01 .subtitle {
		font-size: 25px;
	}
	#contract_top .contract_link_list {
		grid-template-columns: 100%;
		padding: 0 75px;
	}
	#contract_top .contract_link_list .title {
		text-align: left;
		display: block;
		width: 100%;
		font-size: 25px;
	}
	#contract_top .contract_link_list .btn02 {
		text-align: right;
	}
}

@media (max-width: 767px) {

	#contract_top .contract_link_list {
		padding: 0;
	}
	#contract_top .contract_link_list .btn02 {
		text-align: center;
	}
	#contract_top .contract_link_list .title {
		font-size: 20px;
	}

}


section.contract_contents {
	position: relative;
}
section.contract_contents:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: var(--blue-grad01);
    position: absolute;
    top: 0;
    left: 0;
}
section.contract_contents > .wrap {
	max-width: 1400px;
}

.contract_contents .two_in_one {
	display: grid;
	gap: 30px 60px;
	grid-template-columns: 1fr 1fr;
	align-items: center;
}
.contract_contents .two_in_one > div {
	width: 100%;
}

.contract_contents .two_in_one h3 {
	font-weight: bold;
	margin-bottom: 15px;
	font-size: 25px;
    background: var(--blue-grad01);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
	display: inline-block;
}

.contract_contents .two_in_one .catch {
	font-weight: bold;
	font-size: 30px;
	margin-bottom: 20px;
	line-height: 1.5;
}

.contract_contents .two_in_one:not(:first-child) {
	margin-top: 80px;
}

@media (max-width: 1029px) {
	.contract_contents .two_in_one {
		grid-template-columns: 100%;
		padding: 0 75px;
	}

}

@media (max-width: 767px) {
	.contract_contents .two_in_one:not(:first-child) {
		margin-top: 40px;
	}
	.contract_contents .two_in_one {
		padding: 0;
	}
	.contract_contents .two_in_one .catch {
		font-size: 18px;
		line-height: 1.6;
	}

}

.contract_detail {
	max-width: 1040px;
	margin: auto;
}

.contract_detail .title07{
	margin: 2em 0 1em;
}

.title07 {
	font-weight: bold;
	margin: 1em 0;
	font-size: 25px;
}
.title07:before {
	content: "■";
	margin-right: 0.5em;
	color: var(--blue01);
}

@media (max-width: 767px) {

	.title07 {
		font-size: 20px;
	}

}

.contract_service {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 40px;
}
.contract_service > div {
	width: 100%;
    background: #fff;
    display: grid;
	gap: 10px;
	grid-template-rows: subgrid;
	grid-row: span 3;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    border: 1px solid var(--blue01);
    box-shadow: 8px 5px 0px var(--gray03);
	text-align: center;
}
.contract_service.type02 > div {
	grid-row: span 2;
}
.contract_service .image {
	width: 100px;
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
    background: var(--blue-grad01);
	border-radius: 50%;
	margin: 0 auto;
}
.contract_service .image > img {
	width: 60px;
	aspect-ratio: 1;
	object-fit: contain;
	filter: var(--white-filter);
}

.contract_service .title {
    display: table;
    margin: auto;
    font-weight: bold;
    text-align: center;
    font-size: 18px;
}

@media (max-width: 1029px) {
	.contract_service {
		gap: 20px;
	}
	.contract_service > div {
		padding: 30px 10px;
	}
	.contract_service .title {
		font-size: 16px;
	}
}

@media (max-width: 767px) {

	.contract_service {
		grid-template-columns: 100%;
		padding: 0 20px;
	}

}

#contract_case {
	background: var(--blue03);
}

ul.case_list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}
ul.case_list > li {
	width: 100%;
    background: #fff;
    display: grid;
	gap: 10px;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    border: 1px solid var(--blue01);
    box-shadow: 8px 5px 0px var(--gray03);
}
ul.case_list > li  h3 {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 0;
}

ul.case_list > li p {
	margin-bottom: 0!important;
}


.example {
	background: var(--blue03);
	padding: 40px;
    margin: 1em 0;
}

.example .row {
	display: flex;
	align-items: center;
	gap: 0 40px;
	justify-content: flex-end;
}
.example .row.reverse {
	flex-direction: row-reverse;
	justify-content: start;
}
.example .voice {
	background: #fff;
	padding: 25px 20px 20px;
	border-radius: 10px;
	position: relative;
}
.example .row {
	margin-bottom: 30px;
}
.example .row .voice:before {
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	background: #fff;
	right: -19px;
	left: auto;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	clip-path: polygon(0 0, 0 100%, 100% 50%);
}
.example .row.reverse .voice:before {
	left: -19px;
	right: auto;
	clip-path: polygon(100% 0, 0 50%, 100% 100%);
}

.example .row .voice > span {
	position: absolute;
    background: var(--blue-grad01);
	color: #fff;
	top: -10px;
	padding: 0 20px;
	right: 20px;
	left: auto;
	font-weight: bold;
}
.example .row.reverse .voice > span {
	left: 20px;
	right: auto;
}

.example .result {
	font-weight: bold;
	font-size: 20px;
}

.example .result > span:first-child {
	display: table;
	background: var(--orange01);
	color: #fff;
	padding: 0 0.5em;

}

.example img {
	filter: invert(41%) sepia(6%) saturate(16%) hue-rotate(324deg) brightness(90%) contrast(81%);
	display: block;
	width: 100px;
	min-width: 100px;
}

@media (max-width: 767px) {

	.example {
		padding: 30px 15px;
	}
	.example .voice {
		font-size: 14px;
	}
	.example img {
		width: 50px;
		min-width: 50px;
	}
	.example .row {
		gap: 0 30px;
	}
	.example .result {
		font-size: 16px;
	}
}


/* *************************************
// 就業にあたって
************************************* */

#guide_info {
	position: relative;
	z-index: 0;
}
#guide_info:after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0.2;
	z-index: -1;
	background: var(--blue03);
}
#guide_info .top_news {
	margin-top: 0;
}
#guide_info .post_list > .post_item > a .date {
	color: #555;
}


.title08 {
	font-size: 35px;
	font-weight: bold;
	border-bottom: 1px solid #ccc;
	letter-spacing: 2px;
	padding: 10px;
	margin: 2em 0 1em;
}

@media (max-width: 767px) {
	.title08 {
		font-size: 25px;
	}
}


.guide_contents h3 {
	margin: 0.5em 0 1em;
	font-size: 22px;
    font-weight: bold;
    padding-left: 15px;
    position: relative;
    line-height: 1.5;
	border-left: 5px solid var(--blue01);
}

@media (max-width: 767px) {
	.guide_contents h3 {
		font-size: 20px;
	}
	
}

.guide_contents h4 {
	font-size: 20px;
	font-weight: bold;
	margin: 0.5em 0;
}

@media (max-width: 767px) {
	.guide_contents h4 {
		font-size: 18px;
	}
	
}


.guide_contents .download_btn {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 20px 40px;
	margin: 0.5em 0 1em;
}

.guide_contents .download_btn > a {
    background: var(--blue-grad01);
    color: #fff;
    border-radius: 5px;
    position: relative;
    z-index: 0;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 15px;
    justify-content: center;
    font-weight: 500;
    gap: 0 1em;
    z-index: 0;
    font-size: 16px;
	align-self: center;
}
.guide_contents .download_btn > a:after {
    content: "";
    display: block;
    width: 0.5em;
    height: 0.5em;
    background: #fff;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
}

.guide_contents .download_file > a > img {
    width: 1.5em;
    height: 1.5em;
	margin-right: 0.5em;
	display: inline-block;
	filter: invert(58%) sepia(9%) saturate(541%) hue-rotate(172deg) brightness(89%) contrast(93%);
}

.guide_contents .link.text_only > a:before {
	content: "";
	display: inline-block;
    width: 1.5em;
    height: 1.5em;
	margin-right: 0.5em;
    background-image: url(../images/common/icon_arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.guide_contents .link.text_only > a[target="_blank"]:after {
    content: "";
    display: inline-block;
    width: 0.8em;
    height: 0.8em;
    background-image: url(../images/common/icon_outlink.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 1em;
}

.guide_contents .link.download_file,
.guide_contents .link.text_only {
	display: table;
    margin-bottom: 5px;
}

.guide_contents .link.download_file > a,
.guide_contents .link.text_only > a {
	display: flex;
    align-items: center;
	line-height: 2;
	transition: all 0.3s;
}

.guide_contents .link.download_file > a:hover,
.guide_contents .link.text_only > a:hover {
	opacity: 0.5;
}

.guide_contents .contents_editor {
	margin: 1em 0;
}

@media (max-width: 767px) {

	.guide_contents .download_btn {
		grid-template-columns: 100%;
		margin-bottom: 30px;
	}

	.guide_contents .download_btn > a {
		width: 80%;
		max-width: 300px;
		margin: 0 auto;
	}
}



.tab_btn {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px 40px;
	margin: 50px 0;
}
.tab_btn > a {
	display: flex;
    justify-content: center;
    align-items: end;
    color: #fff;
    gap: 0 1em;
    width: 100%;
    font-weight: bold;
    padding: 15px 0;
    font-weight: bold;
    transition: opacity 0.3s;
    border-radius: 10px;
	font-size: 20px;
    background: var(--orange01);
	opacity: 0.5;
	position: relative;
}
.tab_btn > a:hover {
	background: var(--orange01);
	opacity: 0.8;
}
.tab_btn > a.current {
	background: var(--orange01);
	opacity: 1;
}
.tab_btn > a.current:after {
	display: block;
	content: "";
	display: block;
	position: absolute;
	top: calc(100% - 1px);
	left: 50%;
	transform: translateX(-50%);
	background: var(--orange01);
	width: 25px;
	height: 20px;
	clip-path: polygon(100% 0, 0 0, 50% 100%);
}

.tab_btn > a > img {
	height: 40px;
	width: auto;
    max-width: 50px;
	filter: var(--white-filter);
}

@media (max-width: 767px) {
	.tab_btn {
		gap: 15px;
	}
	.tab_btn > a {
		font-size: 14px;
		line-height: 1.3;
		align-items: center;
		padding: 10px 0;
	}
	.tab_btn > a > img {
		width: 20px;
	}

}


#guide_contents {
	padding-top: 0;
}

#guide_question {
	padding-top: 0;
}

#guide_question .text_center {
	margin-bottom: 50px;
	text-align: center;
}




/* *************************************
// プライバシーポリシー
************************************* */
.page_policy h2 {
    font-size: 35px;
    font-weight: bold;
    border-bottom: 1px solid #ccc;
    letter-spacing: 2px;
    padding: 10px;
    margin: 2em 0 1em;
}
.page_policy section > .inner > h2:first-child {
	margin-top: 0;
}
.page_policy h3 {
	font-size: 22px;
    margin: 2em 0 1em;
    font-weight: bold;
}
.page_policy h4 {
    font-weight: bold;
	font-size: 18px;
    margin: 1em 0 0.5em;
}

.page_policy ul {
	list-style: disc;
	padding-left: 1.5em;
}


.page_policy table tr th {
	background: #f8f8f8;
}
.page_policy table tr th,
.page_policy table tr td {
	padding: 10px;
	border: 1px solid #ccc;
}

.page_policy .btn01 {
	margin:  2em 0;
}

@media (max-width: 767px) {

	.page_policy h2 {
	    font-size: 22px;
	    margin: 2em 0 1em;
	    letter-spacing: 1px;
	}
	.page_policy h3 {
		font-size: 18px;
	    margin: 2em 0 1em;
	}
	.page_policy h4 {
		font-size: 16px;
	    margin: 1em 0 0.5em;
	}
}

.page_policy .contact {
	border: 1px solid var(--blue01);
	padding: 20px;
	margin-top: 40px;
}

.page_policy .contact .title {
	margin: 0 0 20px;
	text-align: center;
	line-height: 1.5;
}

.page_policy .contact .name {
	margin: 0 0 20px;
	text-align: center;
	line-height: 1.5;
}

.page_policy .contact .name > span {
	font-size: 80%;
    margin: 0 1em 0 0;
}

.page_policy .contact .two_in_one > div {
	display: grid;
	place-content: center;
}

.page_policy .contact .tel_number {
	display: flex;
	justify-content: center;
	font-size: 30px;
	gap: 0 20px;
	font-weight: 500;
	align-items: center;
	line-height: 1.4;
	text-align: center;
}

.page_policy .contact .tel_number .time {
	font-size: 14px;
	display: block;
}

.page_policy .contact .mail a {
	display: flex;
	justify-content: center;
	font-size: 20px;
	gap: 0 20px;
	font-weight: 500;
	color: #000;
	align-items: center;
	line-height: 1.5;
}


.page_policy .contact .icon {
    width: 50px;
    height: 50px;
    background-image: var(--blue-grad01);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
	margin: 0;
}
.page_policy .contact .icon > img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}


@media (max-width: 767px) {

	.page_policy .contact .two_in_one {
		gap: 20px 0;
	}
	.page_policy .contact .two_in_one > div {
		place-content: start;
		max-width: 300px;
	}

	.page_policy .contact .name > span {
		display: block;
		margin: 0;
	}

}



/***** 資料一覧 class docs_list *****/
.docs_list {
    display: grid;
	grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.docs_list > div {
    background-color: #fff;
    border-radius: 20px;
    width: 100%;
}
.docs_list > div a {
    display: block;
    color: #333;
    container-type: inline-size;
    border: 1px solid var(--blue01);
    box-shadow: 8px 5px 0px var(--gray03);
	border-radius: 20px;;
}
.docs_list > div .image_contents {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    z-index: 1;
}

.docs_list > div a:hover .image_contents::before {
    top: 50%;
    right: 50%;
    translate: 50% -50%;
}
.docs_list > div .image_contents img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}
.docs_list > div .text_contents {
    padding: 15px 30px 20px;
}
.docs_list > div .name {
    font-size: 18px;
	font-weight: bold;
    line-height: 1.5;
}
.docs_list > div .btn_docs {
   
}
.btn_docs {
    display: flex;
    align-items: center;
    font-weight: bold;
    border: 1px solid #ccc;
    border-radius: 0;
    padding: 0.75em 2.75em;
    margin-top: 15px;
    width: fit-content;
    margin-inline: auto;
}
.btn_docs > img {
    content: url(../images/common/icon_download.svg);
    display: block;
    width: 1.5em;
    aspect-ratio: 27 / 25;
    height: 100%;
    margin-right: 0.75em;
    filter: invert(57%) sepia(70%) saturate(3049%) hue-rotate(161deg) brightness(106%) contrast(102%);
}
.docs_list > div a .btn_docs > img {
    transition: 0.2s;
}


@media (max-width: 1029px) {
    .docs_list {
        gap: 20px;
		grid-template-columns: 1fr 1fr;
    }
    .docs_list > div .text_contents {
        padding: 15px 15px 15px;
    }
}

@media (max-width: 767px) {
    .docs_list {
        gap: 20px 0;
		grid-template-columns: 100%;
    }
    
    .docs_list > div .text_contents {
        padding: 15px;
    }
}



#docs_contents .text_contents {
    container-type: inline-size;
    padding-right: 5%;
}
#docs_contents h3 {
    position: relative;
    font-size: calc(26 / 468 * 100cqi);
    font-weight: bold;
    width: fit-content;
    padding: 0 0.75em 5px;
    margin-bottom: 15px;
    margin-inline: auto;
}
#docs_contents h3::before,
#docs_contents h3::after {
    content: "";
    position: absolute;
    top: 0;
    width: 1px;
    height: 90%;
    background-color: #333;
}
#docs_contents h3::before {
    left: 0;
    transform: skewX(20deg);
}
#docs_contents h3::after {
    right: 0;
    transform: skewX(-20deg);
}
#docs_contents .text {
    font-size: 18px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 30px;
}
#docs_contents .list_contents {
    background-color: var(--blue03);
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 15px;
}
#docs_contents .list_contents .catch {
    width: fit-content;
    padding: 0.25em 1.25em;
    color: #fff;
    font-weight: bold;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
	font-size: 20px;
	color: var(--text-color);
}
#docs_contents .list_contents ul {
    margin-left: 15px;
}
#docs_contents .list_contents ul > li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 2em;
    line-height: 1.8;
}
#docs_contents .list_contents ul > li::before {
    content: "";
    background: var(--blue01);
    width: 1.5em;
    height: 1.5em;
    position: absolute;
    left: 0;
    border-radius: 50%;
    top: calc(1.8em / 2);
    transform: translateY(-50%);
}
#docs_contents .list_contents ul > li::after {
    content: "";
    width: 1em;
    height: 0.5em;
    border-left: 4px solid #fff;
    border-bottom: 4px solid #fff;
    transform: rotate(-45deg) translate(50%, -50%);
    position: absolute;
    z-index: 1;
    left: 0;
    background-color: transparent;
    border-radius: 0;
    top: calc(1.8em / 2 + 3px);
}
#docs_contents .list_contents ul > li:last-child {
    margin-bottom: 0;
}
#docs_contents .image_contents .detail {
    text-align: center;
    font-weight: bold;
}
#main:has(#docs_contents) .hl001 .box h1 {
    margin-bottom: 5px;
}
#main:has(#docs_contents) .hl001 .box .text {
    font-size: 60%;
	position: relative;
	z-index:1;
}
@media (max-width: 767px) {
    #docs_contents .text_contents {
        padding-right: 0;
		margin-bottom: 30px;
    }
    #docs_contents h3 {
        font-size: calc(24 / 360 * 100cqi);
    }
    #docs_contents .text {
        font-size: 16px;
        line-height: 1.5;
    }
    #docs_contents .list_contents .catch {
        margin: -15px -15px 15px;
        width: calc(100% + 30px);
        text-align: center;
        padding: 0.75em 0.5em;
        border-radius: 15px;
    }
    .post_single:has(#docs_contents) .btn001 {
        display: none;
    }
}




/* *************************************
// お客様の声
************************************* */

.voice_list01 .item .name {
	text-align: center;
	font-size: 20px;
	font-weight: bold;
}
.voice_list01 .item .name > span {
	font-size: 16px;
}
.voice_list01 .item .work {
	text-align: center;
	margin-bottom: 15px;
}

@media (max-width: 1029px) {

	.voice_list01 .item .name {
		font-size: 18px;
	}

}

#case_list .voice_list01 .item {
	border: 1px solid var(--blue01);
	color: var(--text-color);
}
#case_list .voice_list01 .item .voice {
	text-align: left;
	line-height: 1.5;
}

#case_list .voice_list01 .item .row {
	display: flex;
	align-items: center;
	gap: 20px;
}
#case_list .voice_list01 .item .images {
	width: 100px;
}
#case_list .voice_list01 .item .images > img {
	width: 100px;
	margin: 0;
}

#case_list .voice_list01 .item .voice {
	font-weight: bold;
	font-size: 20px;
	line-height: 1.5;
}

#case_list .voice_list01 .item .btn {
	width: 250px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin: 10px auto 0;
	padding: 10px;
	text-align: center;
	background: var(--blue-grad01);
	color: #fff;
	border-radius: 100vmax;
}
#case_list .voice_list01 .item .btn:after {
    content: "";
    display: block;
    width: 0.5em;
    height: 0.5em;
    background: #fff;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

@media (max-width: 767px) {
	#case_list .voice_list01 .item .name {
		font-size: 16px;
	}
	#case_list .voice_list01 .item .work {
		font-size: 14px;
	}
	#case_list .voice_list01 .item .text {
		margin-top: 15px;
	}

}


/* 個別ページ */
.case_info {
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 20px 60px;
	margin-bottom: 20px;
}
.case_info .image {
	width: 100%;
}
.case_info .image > img {
	width: 100%;
	display: block;
}
.case_info .voice {
	font-size: 25px;
	font-weight: bold;
	margin-bottom: 30px;
}
.case_info .name {
	font-size: 20px;
	font-weight: bold;
}
.case_info .name >span {
	font-size: 16px;
	font-weight: normal;
}
.case_info .work {
	margin-bottom: 30px;
}

@media (max-width: 767px) {

	.case_info {
		grid-template-columns: 100%;
	}
	.case_info .image {
		width: 150px;
		margin: auto;
	}
	.case_info .voice {
		font-size: 20px;
	}
}

.fukidashi {
    background: var(--yellow01);
    display: inline-block;
    border-radius: 10px;
    padding: 10px 20px;
    color: var(--text-color);
    line-height: 1;
	position: relative;
	font-weight: bold;
	margin-bottom: 15px;
}
.fukidashi:before {
    content: "";
    display: block;
    width: 10px;
    height: 5px;
    position: absolute;
    top: 100%;
    left: 50%;
    background: var(--yellow01);
    clip-path: polygon(93% 0, 0 0, 100% 100%);
}

.interview_list {
    display: grid;
    grid-template-columns: 100%;
    gap: 60px;
}
.interview_list .item {
    width: 100%;
    display: flex;
    gap: 20px 60px;
    align-items: center;
} 
.interview_list .item .image {
    width: 400px;
    min-width: 400px;
    max-width: 50%;
}

.interview_list .item .text .question {
    font-size: 25px;
    font-weight: bold;

    margin-bottom: 1em;
}

@media (max-width: 1029px) {
	.interview_list .item {
		flex-wrap: wrap;
	}
	.interview_list .item .image {
		width: 100%;
		max-width: 100%;
	}
}

@media (max-width: 767px) {

    .interview_list .item {
        flex-wrap: wrap;
    }
    .interview_list .item .text .question h3 {
        line-height: 1.5;
        font-size: 20px;
    }

    .interview_list .item .image {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }
}


/* *************************************
// リクルート
************************************* */

.mv002 {
	padding: 0;
	position: relative;
	z-index: 0;
	
}

.mv002:before {
	content: "";
	display: block;
	width: 50vw;
	height: auto;
	aspect-ratio: 3 / 2;
	background: var(--blue02);
	clip-path: polygon(100% 0, 0 0, 0 100%);
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	opacity: 0.3;
}

.mv002 .main_visual_text {
	width: 100%;
	font-size: 2vw;
	font-weight: bold;
	z-index: 2;
	padding: 50px 80px;
}
.mv002 .main_visual_text h1 {
	font-size: 55px;
	font-weight: bold;
}

.mv002 .main_visual_text .sub {
	font-size: 30px;
}
.mv002 .main_visual_text .sub > span {
	color: var(--blue01);
}
.mv002 .recruit_slider .image {
	padding: 10px;
}

.mv002 .recruit_slider .image > img {
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}

@media (max-width: 1029px) { 
	.mv002 .main_visual_text h1 {
		font-size: 5vw;
	}
	.mv002 .main_visual_text .sub {
		font-size: 3vw;
	}
}

@media (max-width: 767px) {
	.mv002 .main_visual_text {
		top: 5%;
		line-height: 1.5;
		transform: none;
		font-size: 7vw;
		padding: 30px 15px;
	}
	.mv002 .main_visual_text h1 {
        font-size: 6vw;
		margin-bottom: 10px;
	}
	.mv002 .main_visual_text .sub {
		font-size: 16px;
	}

	.mv002 .recruit_slider .image {
		padding: 3px;
	}

	.mv002:before {
		clip-path: polygon(0 0, 25% 0, 85% 100%, 0% 100%);
		height: 100%;
		width: 100%;
	}

}



/* こんなお悩み */
#recruit_worries {
    padding-bottom: 0;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

#recruit_worries .fukidashi {
    text-align: center;
    margin-bottom: 50px;
    background: #333;
    color: #fff;
    display: table;
    margin-left: auto;
    margin-right: auto;
    padding: 15px 20px;
    position: relative;
}
#recruit_worries .fukidashi:after {
    content: '';
    position: absolute;
    left: 50%;
    top: calc(100% - 1px);
    transform: translateX(-50%);
    width: 30px;
    height: 20px;
    background-color: #333;
    clip-path: polygon(100% 0, 0 0, 50% 100%);
    z-index: 1;
}
#recruit_worries .worries {
    position: relative;
    margin-bottom: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
#recruit_worries .worries:after {
    content: '';
    position: absolute;
    left: 50%;
    top: calc(100% + 10px);
    transform: translateX(-50%);
    width: 100px;
    height: 30px;
    background-color: var(--color-green);
    clip-path: polygon(100% 0, 0 0, 50% 100%);
    z-index: 1;
}

#recruit_worries .worries ul > li {
    position: relative;
    z-index: 0;
    font-size: 20px;
    padding-left: 2em;
}
#recruit_worries .worries ul > li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.2em;
    width: 1.5em;
    height: 1.5em;
    background-color: var(--blue01);
    border-radius: 50%;
    z-index: 1;
}
#recruit_worries .worries ul > li:after {
    content: '';
    position: absolute;
    left: 0.45em;
    top: 0.4em;
    transform: rotate(45deg);
    height: 0.9em;
    width: 0.6em;
    border-right: 4px solid #fff;
    border-bottom: 4px solid #fff;
    z-index: 2;
}
#recruit_worries .worries ul > li:not(:last-child) {
    margin-bottom: 15px;
}

#recruit_worries .answer_content {
    display: grid;
    grid-template-columns: 1fr 50% 1fr;
	align-items: end;
    gap: 20px 40px;
	max-width: 1600px;
	width: 96%;
	margin: auto;
}
#recruit_worries .answer_content > div {
    width: 100%;
}
#recruit_worries .answer_content > div {
    width: 100%;
}
#recruit_worries .answer_content > .text {
	grid-column: 2 / 3;
	grid-row: 1;
	font-size: 20px;
}
#recruit_worries .answer_content > div.left {
	grid-column: 1 / 2;
	grid-row: 1;
}
#recruit_worries .answer_content > div.right {
	grid-column: 3 / 4;
	grid-row: 1;
}

#recruit_worries .answer_title {
    font-size: min(3.5cqi, 50px);
    font-weight: bold;
    line-height: 1.5;
    text-align: left;
    margin-bottom: 50px;
	text-align: center;
}
#recruit_worries .answer_content > .image > img {
    width: 100%;
}

.worries_list {
	position: relative;
	z-index: 0;
	padding: 40px 0;
}
.worries_list .fukidashi {
	font-size: 25px;
}
.worries_list ul.check {
	margin: auto;
    display: table;
	font-size: 20px;
}

@media (max-width: 1029px) {
	#recruit_worries .answer_content {
		grid-template-columns: 1fr 250px;
	}
	#recruit_worries .answer_content > .text {
		grid-column: 1 / 2;
		font-size: 16px;
	}
	#recruit_worries .answer_content > div.left {
		grid-column: 2 / 3;
	}
	#recruit_worries .answer_content > div.right {
		display: none;
	}

    #recruit_worries .worries {
        width: 90%;
        margin-inline: auto;
    }

    #recruit_worries .answer_title { 
        font-size: 30px;
    }

}

@media (max-width: 767px) {

    #recruit_worries:after {
        height: 500px;
    }

	#recruit_worries .fukidashi {
		font-size: 20px;
	}

    #recruit_worries .worries {
        width: 100%;
    }

    #recruit_worries .worries ul > li {
        font-size: 16px;
    }
    #recruit_worries .answer_content {
        grid-template-columns: 1fr 1fr;
		gap: 20px 0;
    }
	#recruit_worries .answer_content > .text {
		grid-column: 1 / 3;
		grid-row: 1;
		font-size: 20px;
	}
	#recruit_worries .answer_content > div.left {
		grid-column: 1 / 2;
		grid-row: 2;
	}
	#recruit_worries .answer_content > div.right {
		grid-column: 2 / 3;
		grid-row: 2;
		display: block;
	}

    #recruit_worries .answer_title {
        font-size: 25px;
        text-align: center;
    }
    #recruit_worries .answer_content > .text {
        font-size: 16px;
        margin-bottom: 0;
    }

	.worries_list{
		max-width: 90%;
		margin-left: auto;
		margin-right: auto;
	} 
	.worries_list ul.check {
		font-size: 16px;
	}

}


#recruit_oneday {
	position: relative;
	z-index: 0;
}

#recruit_oneday:after {
    content: '';
    z-index: -1;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    background: var(--blue03);
    z-index: -1;
}

#recruit_oneday .text_center {
	text-align: center;
	margin-bottom: 40px;
}

.oneday_people {
	margin-bottom: 60px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px 60px;
	align-items: center;
	padding: 40px;
	background: #fff;
}
.oneday_people > div {
	width: 100%;
}

.oneday_people .department {
	font-size: 20px;
}
.oneday_people .row {
	display: flex;
	align-items: baseline;
	gap: 20px;
	margin-bottom: 20px;
}
.oneday_people .name {
	font-size: 30px;
	font-weight: 500;
}
.oneday_people .year {
	font-size: 16px;
}
.oneday_people .image > img {
	width: 100%;
	display: block;

}

@media (max-width: 767px) {

	.oneday_people {
		padding: 30px 20px;
		grid-template-columns: 100%;
	}

}



.oneday_list {
	display: grid;
	grid-template-columns: 100%;
	width: 90%;
	max-width: 1200px;
	margin: auto;
	gap: 15px;
}

.oneday_list > .item {
	width: 100%;
	display: grid;
	gap: 20px;
	align-items: center;
	position:relative;
	grid-template-columns: 80px 1fr 150px;
	grid-template-areas: "time text image";
}



.oneday_list > .item .photo {
	grid-area: image;
	width: 100%;
	max-width: 200px;
	margin: auto;
	display: block;
	margin-bottom: 10px;
}

.oneday_list > .item .time {
	grid-area: time;
	font-size: 30px;
	color: #fff;
	font-weight: bold;
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--blue02);
	text-align: center;
	border-radius: 50%;
	position: relative;
	z-index: 0;
}
.oneday_list > .item .time:after {
	content: "";
	display: block;
	width: 3px;
	height: 215px;
	z-index: -1;
	background: var(--blue02);
	position:absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%);
}

.oneday_list > .item:last-child .time:after {
	display: none;
}

.oneday_list > .item .work {
	font-size: 20px;
	font-weight: 500;
}
.oneday_list > .item .text {
	grid-area: text;
	font-size: 15px;
}

@media (min-width: 1030px) {

	.oneday_list {
		gap: 0;
		grid-template-columns: 1fr 80px 1fr;
		max-width: 1200px;
		margin: auto;
	}
	.oneday_list > .item {
		margin: -40px 0;
	}
	.oneday_list > .item:first-child {
		margin-top: 0;
	}
	.oneday_list > .item:last-child {
		margin-bottom: 0;
	}
	.oneday_list > .item:nth-child(odd) {
		grid-column: 1 / 3;
		grid-template-columns: 200px 1fr 80px;
		grid-template-areas: "image text time";

	}
	.oneday_list > .item:nth-child(even)  {
		grid-column: 2  / 4;
		grid-template-columns: 80px 1fr 200px;
		grid-template-areas: "time text image";
	}
	.oneday_list > .item .time:after {
		height: 200px;
	}
	.oneday_list > .item:nth-last-child(2) .time:after {
		height: 100px;
	}
}

@media (max-width: 767px) {

	.oneday_list > .item {
		grid-template-columns: 80px 1fr;
		grid-template-rows: 1fr auto;
		grid-template-areas: "time text"
							 "time image";
		position:relative;
	}
	.oneday_list > .item:not(:last-child):after {
		content: "";
		display: block;
		width: 3px;
		height: calc(100% + 15px);
		z-index: -1;
		background: var(--blue02);
		position: absolute;
		top: 0;
		left: 40px;
		transform: translateX(-50%);
	}

	.oneday_list > .item .time {
		grid-area: time;
		align-self: start;
	}

	.oneday_list > .item .photo {
		max-width: 150px;
	}
	.oneday_list > .item .time:after {
		display: none;
	}

}




.recruit_list {
    padding-left: 6.5vw;
    padding-right: 6.5vw;
    display: grid;
    grid-template-columns: 100%;
    gap: 50px;
}
.recruit_list > .item {
    border: 1px solid var(--blue01);
    box-shadow: 8px 5px 0px var(--gray03);
	border-radius: 20px;
    background: #fff;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
	color: var(--text-color);
}

.recruit_list > .item .recruit_list_title {
    padding: 30px 60px 30px 40px;
    cursor: pointer;
    position: relative;
}


.recruit_list > .item .recruit_list_title:after {
    content: "";
    display: block;
    width: 15px;
    height: 25px;
    background: var(--blue02);
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

.recruit_list > .item .recruit_list_title .recruit_name {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 0.5em;
}

@media (max-width: 767px) {

    .recruit_list > .item .recruit_list_title {
        padding: 20px 20px;
    }
	.recruit_list > .item .recruit_list_title .recruit_name {
		font-size: 20px;
		display: flex;
		align-items: center;
	}
	.recruit_list > .item .recruit_list_title .recruit_name:after {
		content: "";
		display: block;
		width: 10px;
		height: 15px;
		background: var(--blue02);
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		margin-left: 1em;
	}
    .recruit_list > .item .recruit_list_title .description {
        font-size: 14px;
        line-height: 1.5;
    }

    .recruit_list > .item .recruit_list_title:after {
        display: none;
    }
}

.post-type-archive-recruit #faq_contents {
	position: relative;
	z-index: 0;
	overflow: hidden;
}

.post-type-archive-recruit #faq_contents > .bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.post-type-archive-recruit #faq_contents > .bg:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(204, 243, 255, 0.7);
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;


}
.post-type-archive-recruit #faq_contents > .bg > img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	filter: blur(3px);

}

.post-type-archive-recruit #faq_contents .title05 {
	text-shadow: 0px 0px 10px rgba(0,0,0,0.3);
}

.post-type-archive-recruit #faq_contents .title05 .jp {
	color: #fff;
}
.post-type-archive-recruit #faq_contents .title05 .en {
    background: transparent;
    -webkit-background-clip: unset;
	-webkit-text-fill-color: #ffffff;
}

.post-type-archive-recruit #faq_contents .faq_list > .item {
	background: #fff;
	padding: 40px;
	border-radius: 40px;
}

@media (max-width: 767px) {

	.post-type-archive-recruit #faq_contents .faq_list > .item {
		padding: 30px 20px;
	}

}


/* *************************************
// 特集
************************************* */

.card02.three_in_one {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
	width: 96%;
	max-width: 1400px;
	margin: auto;
}

.card02 > .item {
	width: 100%;
    position: relative;
    overflow: hidden;
	display: block;
}
.card02 > .item > img {
    aspect-ratio: 3 / 2;
    display: block;
    object-fit: cover;
    transition: all 0.3s;
	display: block;
}
.card02 > a.item:hover > img {
    filter: blur(5px);
    transform: scale(1.1);
}
.card02 > .item > span {
    position: absolute;
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    color: #fff;
    font-weight: bold;
    font-size: min(22px,1.5vw);
    letter-spacing: 1px;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s;
	padding: 1vw;
}

@media (max-width: 1029px) {

	.card02.three_in_one {
		grid-template-columns: 1fr 1fr;
	}
	.card02 > .item > span {
		font-size: 18px;
	}
}

@media (max-width: 767px) {
	.card02.three_in_one {
		grid-template-columns: 100%;
	}

}




#special_top {
	border-bottom: 1px solid var(--blue01);
}

#special_top .two_in_one {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px 60px;
	max-width: 1400px;
	width: 96%;
	margin: auto;
	align-items: center;
}
#special_top .two_in_one > div {
	width: 100%;
}

#special_top h2 {
	font-size: 30px;
	margin-bottom: 1em;
	font-weight: bold;
    background: var(--blue-grad01);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 1029px) {
	#special_top .two_in_one {
		grid-template-columns: 100%;
		padding: 0 50px;
	}
}

@media (max-width: 767px) {

	#special_top .two_in_one {
		padding: 0;
	}
	#special_top h2 {
		font-size: 20px;
		line-height: 1.4;
	}
}



/* *************************************
// 問い合わせ
************************************* */
#contact_content .text {
	margin-bottom: 50px;
}
#contact_content a {
	text-decoration: underline;
}



/*********************
 お知らせ個別ページ
*********************/
.post_single .title {
    margin-bottom: 0;
    line-height: 1.5;
    font-size: 30px;
}
.post_box {
    padding: 50px 0;
}
.post_box > *:first-child {
    margin-top: 0;
}

.post_box .thumbnail {
	margin-bottom: 30px;
}

.post_box h2 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 1em;
    margin-top: 2em;
    border-bottom: 1px dashed var(--blue01);
    padding-bottom: 0.25em;
}
.post_box h3 {
    font-size: 25px;
    font-weight: bold;
    position: relative;
    padding: 0em 0.5em 0em;
    margin-bottom: 1em;
    margin-top: 2em;
    border-left: 10px solid var(--blue01);
}
.post_box h4 {
    font-size: 20px;
    font-weight: bold;
    color: var(--blue01);
}

.post_box a:not([class]) {
    text-decoration: underline;
    color: var(--blue02);
}

.post_box .scroll_table {
    width:100% !important;
    max-width: 100%;
    overflow-x: auto;
    margin-bottom: 0.5em;
}
.post_box .scroll_table table {
    width: 100%;
    margin-bottom: 0;
}

.post_box table {
    margin-bottom: 0.5em;
}
.post_box table th {
    padding: 10px;
    border: 1px solid #ccc;
    background: var(--blue03);
}
.post_box table td {
    padding: 10px;
    border: 1px solid #ccc;
}

.post_box ul {
	list-style: disc;
	margin-left: 1em;
	margin-bottom: 1rem;
}
.post_box ol {
	list-style: decimal;
	margin-left: 1em;
	margin-bottom: 1rem;
}

@media (max-width: 767px) {
    .post_single .title {
        font-size: 25px;
    }
    .post_box h2 {
        font-size: 25px;
    }
    .post_box h3 {
        font-size: 20px;
    }
    .post_box h4 {
        font-size: 18px;
    }


    .post_box table th {
        white-space: nowrap;
    }
    .post_box table td {
        white-space: nowrap;
    }

}
input[name="age"] {
  width: 5em;
}