@font-face {
	font-family: 'NotoSansJP';
	font-weight: 300;
	font-style: normal;
	font-display: swap;
	src: url("../fonts/NotoSansJP-Light.woff2") format("woff2"),
		 url("../fonts/notosansjp/NotoSansJP-Light.woff") format("woff");
}
@font-face {
	font-family: 'NotoSansJP';
	font-weight: 400;
	font-style: normal;
	font-display: swap;
	src: url("../fonts/NotoSansJP-Regular.woff2") format("woff2"),
		 url("../fonts/notosansjp/NotoSansJP-Regular.woff") format("woff");
}
@font-face {
	font-family: 'NotoSansJP';
	font-weight: 500;
	font-style: normal;
	font-display: swap;
	src: url("../fonts/NotoSansJP-Medium.woff2") format("woff2"),
		url("../fonts/notosansjp/NotoSansJP-Medium.woff") format("woff");
}
@font-face {
	font-family: 'NotoSansJP';
	font-weight: 700;
	font-style: normal;
	font-display: swap;
	src: url("../fonts/NotoSansJP-Bold.woff2") format("woff2"),
		url("../fonts/notosansjp/NotoSansJP-Bold.woff") format("woff");
}
@font-face {
	font-family: 'Zen Old Mincho';
	font-weight: 700;
	font-style: normal;
	font-display: swap;
	src: url("../fonts/ZenOldMincho-Bold.woff2") format("woff2"),
		 url("../fonts/notosansjp/ZenOldMincho-Bold.woff") format("woff");
}
@font-face {
	font-family: 'Alata';
	font-weight: 400;
	font-style: normal;
	font-display: swap;
	src: url("../fonts/Alata-Regular.woff2") format("woff2"),
		 url("../fonts/notosansjp/Alata-Regular.woff") format("woff");
}

:root {
	--oc-link-color: #32A3D6;
	--oc-primary-color: #303435;
	
	--oc-btn-primary-color: #303435;
	--oc-btn-alt-color: #303435;

	--oc-blog-heading-mt: 1.9rem;
	--oc-blog-heading-mb: 1.625rem;
	--oc-blog-heading-pt: 1.625rem;
	--oc-blog-font-size: calc(1rem + .069vw);
	--oc-blog-heading1-fs: calc(1.6rem + .069vw);
	--oc-blog-heading2-fs: calc(1.5rem + .069vw);
	--oc-blog-heading3-fs: calc(1.35rem + .069vw);
	--oc-blog-line-height: 1.625rem;

	--header-height: 80px;
}

@media screen and (max-width:1050px) {
	:root {
		--header-height: 60px;
	}
}

body {
	color: var(--oc-primary-color);
	font-family: "NotoSansJP", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 16px;
	line-height: 1.8;
	letter-spacing: 0.05rem;
}

.text-primary-color{
	color: var(--oc-primary-color);
}
.clear-fix { clear: both; }

a {
	text-decoration: none;
	color: var(--oc-link-color);;
}
a:hover {
	text-decoration: none;
}
img {
	max-width: 100%;
}

.bg-image {
	z-index: 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.text-bg-top {
	z-index: 0;
	height: 200px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.text-bg-top .caption {
}
.text-bg-top .caption h1,
.text-bg-top .caption h2 {
	color: #fff;
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
}

.content-none {
    text-align: center;
    font-size: 20px;
    padding: 80px 10px;
}
.content-none .error-number {
    font-size: 70px;
}
.content-none .content-none-btn {
    margin: 20px auto;
    text-align: center;
}

/* OC Button Style */
.site-btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 375px;
    height: 73px;
    max-width: 90%;
    border: 1px solid #fff;
    color: #fff;
    background-color: transparent;
    transition: all 0.5s;
}
.site-btn {
    color: var(--oc-primary-color);
    border-color: var(--oc-primary-color);
}

/* END - OC Button Style */

/* OC Modal Style */
.modal-design {
	height: 80vh;
	overflow: scroll;
	margin: 15% 0 10% 0;
	border-radius: unset;
} 
.modal-dialog{
	max-width: 800px;
	padding: 1rem;
}

@media (min-width: 576px){
	.modal-dialog {
		max-width: 500px;
		margin: 1.75rem auto;
	}
}

.close-btn {
	position: fixed;
	right: 0x;
	top: 25px;
}
.modal-side-margin {
	margin: 0;
}

.modal-body-design {
	padding: 0;
}

.round_btn {
	display: block;
	width: 45px;
	height: 45px;
	border: 2px solid #AA8400; /* 枠の調整 */
	border-radius: 50%;  /* 丸みの度合い */
	background: #fff; /* ボタンの背景色 */
}

.round_btn::before, .round_btn::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 3px; /* 棒の幅（太さ） */
	height: 22px; /* 棒の高さ */
	background: #AA8400; /* バツ印の色 */
}

.round_btn::before {
	transform: translate(-50%,-50%) rotate(45deg);
}

.round_btn::after {
	transform: translate(-50%,-50%) rotate(-45deg);
}

/* END - OC Modal Style */

*{
	word-break: break-word;
}
a,
a img{
    transition: all .5s;
}
a:hover{
	opacity: 0.7;
}
a[href^="tel:"] {
    pointer-events: none;
}
p{
	margin-bottom: 30px;
}
p:last-child{
	margin-bottom: 0;
}
img{
	max-width: 100%;
}
figure{
	margin-bottom: 0;
}
i{
	font-style: normal;
}
table{
	width: 100%;
}
.home dl,
.home dd,
.content dl,
.content dd,
ul.reset,
ol.reset,
#header ul,
#footer ul,
.home ul,
.home ol{
	margin: 0;
	padding: 0;
}
ul.reset li,
ol.reset li,
#header li,
#footer li,
.home li{
	list-style: none;
}
.mt0{margin-top: 0px!important;}
.mt5{margin-top: 5px!important;}
.mt10{margin-top: 10px!important;}
.mt15{margin-top: 15px!important;}
.mt20{margin-top: 20px!important;}
.mt25{margin-top: 25px!important;}
.mt30{margin-top: 30px!important;}
.mt35{margin-top: 35px!important;}
.mt40{margin-top: 40px!important;}
.mt45{margin-top: 45px!important;}
.mt50{margin-top: 50px!important;}
.mt55{margin-top: 55px!important;}
.mt60{margin-top: 60px!important;}
.mt65{margin-top: 65px!important;}
.mt70{margin-top: 70px!important;}
.mt75{margin-top: 75px!important;}
.mt80{margin-top: 80px!important;}
.mt85{margin-top: 85px!important;}
.mt90{margin-top: 90px!important;}
.mt95{margin-top: 95px!important;}
.mt100{margin-top: 100px!important;}
.mb0{margin-bottom: 0px!important;}
.mb5{margin-bottom: 5px!important;}
.mb10{margin-bottom: 10px!important;}
.mb15{margin-bottom: 15px!important;}
.mb20{margin-bottom: 20px!important;}
.mb25{margin-bottom: 25px!important;}
.mb30{margin-bottom: 30px!important;}
.mb35{margin-bottom: 35px!important;}
.mb40{margin-bottom: 40px!important;}
.mb45{margin-bottom: 45px!important;}
.mb50{margin-bottom: 50px!important;}
.mb55{margin-bottom: 55px!important;}
.mb60{margin-bottom: 60px!important;}
.mb65{margin-bottom: 65px!important;}
.mb70{margin-bottom: 70px!important;}
.mb75{margin-bottom: 75px!important;}
.mb80{margin-bottom: 80px!important;}
.mb85{margin-bottom: 85px!important;}
.mb90{margin-bottom: 90px!important;}
.mb95{margin-bottom: 95px!important;}
.mb100{margin-bottom: 100px!important;}
.mlr10{margin-left: 10px!important;margin-right: 10px!important;}
.mlr20{margin-left: 20px!important;margin-right: 20px!important;}
.mlr30{margin-left: 30px!important;margin-right: 30px!important;}
.mlr40{margin-left: 40px!important;margin-right: 40px!important;}
.mlr50{margin-left: 50px!important;margin-right: 50px!important;}
.mlr60{margin-left: 60px!important;margin-right: 60px!important;}
.mlr70{margin-left: 70px!important;margin-right: 70px!important;}
.mlr80{margin-left: 80px!important;margin-right: 80px!important;}
.mlr90{margin-left: 90px!important;margin-right: 90px!important;}
.mlr100{margin-left: 100px!important;margin-right: 100px!important;}
.tb,
.sp{
	display: none;
}
.flex{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.anchor-parent{
	position: relative;
}
.anchor{
	position: absolute;
	top: calc(-1 * var(--header-height));
}
.f0{
	font-family: "NotoSansJP", sans-serif!important;
}
.f1{
	font-family: "Zen Old Mincho", serif;
}
.f2{
	font-family: "Alata", serif;
	font-weight: 400;
	font-style: normal;
}
img.full{
	width: 100%;
}
.btn-s1{
	display: inline-block;
	position: relative;
	width: 354px;
	height: 80px;
	color: #fff;
	font-size: 23px;
	font-family: "Zen Old Mincho", serif;
	letter-spacing: 0.1em;
	line-height: 77px;
	text-align: center;
	background: linear-gradient(90deg, rgba(27, 60, 174,1) 1%,rgba(50, 139, 242,1) 100%);
	border: #3063d1 1px solid;
	border-radius: 5px;
	transition: all .5s;
}
.btn-s1:after,
.btn-s1:before{
	content: '';
	position: absolute;
	top: 50%;
	right: 15px;
	width: 25px;
	height: 25px;
	background: #fff;
	border-radius: 2px;
	box-shadow: 0px 8px 16px -2px rgba(10,10,10,0.1), 0px 0px 0px 1px rgba(10,10,10,0.02);
    transform: translateY(-50%);
	z-index: 1;
}
.btn-s1:after{
	right: 15px;
	background: url(../img/arrow02.svg) no-repeat center;
	box-shadow: none;
}
.btn-s1:hover:after{
	background: url(../img/arrow08.svg) no-repeat center;
}
.btn-s1.mini{
	width: 236px;
	height: 64px;
	line-height: 60px;
}
.btn-s1:hover{
	color: #fff;
	opacity: 1;
	border: #32a3d6 1px solid;
}
.btn-s1 i{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, rgba(51, 163, 214,1) 1%,rgba(121, 189, 236,1) 100%);
	opacity: 0;
	transition: all .5s;
}
.btn-s1:hover i{
	opacity: 1;
}
.btn-s1 b{
	position: relative;
	z-index: 1;
}
.btn-s1.t1{
	background: linear-gradient(180deg, rgba(254, 167, 90,1) 1%,rgba(254, 167, 90,1) 6%,rgba(215, 107, 12,1) 100%);
	border: #D36606 1px solid;
}
.btn-s1.t1:hover{
	border: #d36606 1px solid;
}
.btn-s1.t1:after{
	background: url(../img/arrow03.svg) no-repeat center;
}
.btn-s1.t1 i{
	background: linear-gradient(180deg, rgba(212, 101, 3,1) 1%,rgba(191, 54, 0,1) 100%);
}
.slide-in-up{
	opacity: 0;
	transform: translateY(100px);
    transition: all 1s;
}
.slide-in-up.show{
	opacity: 1;
	transform: translateY(0);
}

@media screen and (max-width:820px) {
	.tb{
		display: block;
	}
}

@media screen and (max-width:767px) {
	.pc{
		display: none;
	}
	.sp{
		display: block;
	}
    a[href^="tel:"] {
        pointer-events: auto;
    }
	.btn-s1.mini,
	.btn-s1{
		width: 326px;
		height: 60px;
		font-size: 16px;
		line-height: 58px;
	}
	.btn-s1.t1{
		font-size: 20px;
	}
}

/*base*/
#container{
	padding-top: var(--header-height);
	overflow: hidden;
}
.wrap{
	margin: 0 auto;
	max-width: 1200px;
	padding: 0 25px;
}

@media screen and (max-width:767px) {

}

/*ヘッダー*/
#header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: #FFFFFF;
	z-index: 10;
}
#header #hinr{
	align-items: center;
	position: relative;
	margin: 0 auto;
	padding-left: 20px;
	width: 100%;
	height: var(--header-height);
	line-height: 1;
	letter-spacing: 0.1rem;
}
#header .left{
	width: 155px;
}
#header .right{
	display: flex;
	justify-content: right;
	align-items: center;
	gap: 30px;
	width: 830px;
}
#header .logo{
	margin: 0;
	padding: 0;
}
#header .logo img{
	display: block;
}
#header .menu ul{
	display: flex;
	gap: 40px;
}
#header .menu li{
	position: relative;
}
#header .menu li:not(:last-child):before{
	content: '/';
	position: absolute;
	top: 0;
	right: -23px;
	color: #C1C7C9;
}
#header .menu a{
	color: #303435;
}
#header .menu a:hover{
	color: #32A3D6;
	opacity: 1;
}
#header .contact {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 0 15px;
	height: var(--header-height);
	background: #32A3D6;
}
#header .contact a{
	display: block;
	width: 158px;
	height: 50px;
	color: #303435;
	line-height: 50px;
	border-radius: 3px;
}
#header .contact .recruit{
	width: 107px;
	color: #fff;
	font-weight: 500;
	text-align: center;
	background: #CF9059;
}
#header .contact .recruit:hover{
	background: #FF6A00;
	opacity: 1;
}
#header .contact .tel{
	padding-top: 10px;
	padding-left: 40px;
	font-size: 10px;
	letter-spacing: 0;
	line-height: 1.2;
	background: #fff url(../img/icon-phone.svg) no-repeat 12px center;
}
#header .contact .tel b{
	display: block;
	font-size: 16px;
	font-weight: 500;
}
#header .contact .form{
	padding-left: 37px;
	background: #fff url(../img/icon-mail.svg) no-repeat 12px center;
}
#header .contact a:not(.recruit):hover{
	color: #32A3D6;
	opacity: 1;
}
#header .contact .tel:hover{
	background: #E6EFF3 url(../img/icon-phone03.svg) no-repeat 12px center;
}
#header .contact .form:hover{
	background: #E6EFF3 url(../img/icon-mail03.svg) no-repeat 12px center;
}
.sp-menu{
	position: fixed;
	right: -100%;
	bottom: 0;
	width: auto;
	padding: 0 25px;
	padding-bottom: 50px;
	width: 350px;
	height: calc(100% - var(--header-height));
	color: #fff;
    background: linear-gradient(206deg, rgba(50, 161, 214,0.8) 1%,rgba(26, 61, 174,0.8) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all .8s cubic-bezier(0.19, 1, 0.22, 1);
    overflow: auto;
}
.sp-menu.on{
	right: 0;
}
.sp-menu a{
	color: #fff;
}
.sp-menu .upper{
	margin-bottom: 20px;
}
.sp-menu .upper>ul>li{
	font-size: 20px;
	line-height: 1;
	letter-spacing: 0.1em;
	border-bottom: rgba(255, 255, 255, 0.2) 1px solid;
}
.sp-menu .upper>ul>li li{
	font-size: 16px;
}
.sp-menu .upper>ul>li>a{
	display: block;
	padding: 20px 12px;
	padding-right: 0;
	background: url(../img/arrow.svg) no-repeat 0 center;
}
.sp-menu ul ul{
	padding: 15px 30px!important;
	padding-right: 0;
    background-size: 6px 1px;
    background-repeat: repeat-x;
    background-position: left top;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.2) 2px, transparent 3px);

}
.sp-menu ul ul li{
	margin-bottom: 20px;
}
.sp-menu ul ul li a{
	display: block;
	position: relative;
	padding-left: 15px;
}
.sp-menu ul ul li a:before{
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 5px;
	height: 1px;
	background: #fff;
    transform: translateY(-50%);
}
.sp-menu .bottom a{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
	height: 50px;
	color: #303435;
	line-height: 1;
	letter-spacing: 0.1em;
	background: #fff;
	border-radius: 3px;
}
.sp-menu .bottom span{
	display: inline-block;
	text-align: center;
}
.sp-menu .bottom .recruit{
	color: #fff;
	background: #CF9059;
}
.sp-menu .tel span{
	padding-left: 28px;
	font-size: 10px;
	line-height: 1.2;
	text-align: left;
	background: url(../img/icon-phone.svg) no-repeat 0 center;
	background-size: 19px auto;
}
.sp-menu .tel b{
	display: block;
	font-size: 16px;
}
.sp-menu .form span{
	padding-left: 25px;
	background: url(../img/icon-mail.svg) no-repeat 0 center;
	background-size: 18px auto;
}
.sp-right{
	display: none;
	height: 100%;
}
.right-inr{
	display: flex;
	align-items: center;
	gap: 15px;
	height: 100%;
}
.sp-contact{
	display: flex;
	gap: 15px;
}
.menu-trigger{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 100%;
	background: #32A3D6;
}
.menu-trigger .inr{
	position: relative;
	width: 24px;
	height: 17px;
	cursor: pointer;
    transition: all .3s;
}
.menu-trigger span {
	position: absolute;
	right: 0;
	width: 100%;
	height: 2px;
	background: #fff;
	transition: all .4s;
}
.menu-trigger span:nth-of-type(1) {
	top: 0;
}
.menu-trigger span:nth-of-type(2) {
	top: 50%;
	transform: translateY(-25%);
}
.menu-trigger span:nth-of-type(3) {
	bottom: 0;
}
.menu-trigger.active span:nth-of-type(1) {
  transform: translateY(7px) rotate(-45deg);
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
  animation: active-menu-bar02 .8s forwards;
}
@-webkit-keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}
@keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}
.menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-8px) rotate(45deg);
}

@media screen and (max-width:1050px) {
	#header .left{
		width: 118px;
	}
	#header .right{
		display: none;
	}
	.sp-right{
		display: block;
	}
}

@media screen and (max-width:767px) {
	.sp-menu{
		width: 100%;
	}
	.menu-trigger .inr{
		width: 18px;
		height: 12px;
	}
	.menu-trigger.active span:nth-of-type(1) {
		transform: translateY(5px) rotate(-45deg);
	  }
	.menu-trigger span:nth-of-type(2) {
		transform: translateY(-50%);
	}
	.menu-trigger.active span:nth-of-type(3) {
		transform: translateY(-5px) rotate(45deg);
	}
}

/*メインカラム*/
.top-mv .slider{
	width: 100%;
}
.top-mv .box{
	position: relative;
	width: 100%;
}
.top-mv .b1,
.top-mv .b2{
	color: #fff;
}
.top-mv .text{
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	font-weight: bold;
    transform: translateY(-50%);
}
.top-mv .b4 .text{
	top: 35%;
	text-align: center;
}
.top-mv .text .wrap{
}
.top-mv .box img{
	width: 100%;
}
.top-mv p{
	margin-bottom: 0;
	line-height: 1;
}
.top-mv p.s1{
	margin-bottom: 15px;
}
.top-mv p.s2{
	margin-bottom: 25px;
}
.top-mv .box.s1 p.s1,
.top-mv .box.s1 p.s2,
.top-mv .box.s1 p.s4{
	text-shadow: 0px 0px 20px rgba(0,0,0,0.6);
}
.top-mv p.s3{
	display: inline-block;
	margin-bottom: 12px;
	padding: 0 5px;
	color: #fff;
	font-size: 20px;
	line-height: 1.5;
	letter-spacing: 0.1rem;
	background: #32A3D6;
}
.top-mv .box.s1 p.s3{
	box-shadow: 0px 0px 18px -3px rgba(0,0,0,0.5);
}
.top-mv p.s4{
	color: #fff;
	font-size: 30px;
}
.top-mv .b3 p.s4,
.top-mv .b4 p.s4{
	color: #303435;
}
.top-mv .b1 p.s1{
	font-size: 60px;
}
.top-mv .b1 p.s2{
	font-size: 60px;
}
.top-mv .b2 p.s1{
	font-size: 60px;
}
.top-mv .b2 p.s1 i{
	font-size: 55px;
}
.top-mv .b2 p.s2{
	font-size: 65px;
}
.top-mv .b2 p.s2 i{
	font-size: 55px;
}
.top-mv .b3 p.s1{
	font-size: 60px;
}
.top-mv .b3 p.s2{
	font-size: 60px;
}
.top-mv .b3 p.s1 i,
.top-mv .b3 p.s2 i{
	font-size: 55px;
}
.top-mv .b4 p.s1{
	font-size: 35px;
}
.top-mv .b4 p.s1 i{
	font-size: 30px;
}
.top-mv .b4 p.s2{
	font-size: 80px;
	letter-spacing: 0.2rem;
}
.top-news {
	position: relative;
	margin-top: -65px;
	margin-bottom: 100px;
	text-align: right;
}
.top-news ul{
	display: inline-block;
	padding: 0 20px;
	padding-top: 22px;
	width: 815px;
	height: 65px;
	text-align: left;
	border-top: #fff 1px solid;
	border-left: #fff 1px solid;
}
.top-news a{
	color: #fff;
	font-weight: 300;
	line-height: 1.2;
	letter-spacing: 0;
	display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 1;
}
.top-news .category{
	display: inline-block;
	margin: 0 15px;
	padding: 0 5px;
	min-width: 64px;
	height: 20px;
	font-size: 13px;
	text-align: center;
	line-height: 20px;
	border-radius: 3px;
}
.top-news .category.c-news {
	background: #0025A4;
}
.top-news .category.c-performance,
.top-news .category.c-recruit {
	background: #569569;
}
.content h2,
.top-content h2{
	position: relative;
	font-size: 35px;
	font-weight: bold;
	font-family: "Zen Old Mincho", serif;
	letter-spacing: 0.1em;
	line-height: 1.4;
}
.content h2:before,
.top-content h2:before{
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 25px;
	height: 5px;
	background: #32A3D6;
    transform: translateX(-50%);
}
.top-content.c01 {
	position: relative;
	margin-bottom: 130px;
	padding-bottom: 70px;
}
.top-content.c01:before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 230px;
	background: #F6F6F6;
	z-index: -1;
}
.top-content.c01 h2{
	margin-bottom: 70px;
	padding-left: 20px;
}
.top-content.c01 h2:before{
	top: 7px;
	left: 0;
	width: 5px;
	height: 41px;
    transform: translateX(0);
}
.top-content.c01 .upper{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 30px 50px;
	flex-wrap: wrap;
	margin-bottom: 120px;
}
.top-content.c01 .bottom{
	border-top: #c1c7c9 1px solid;
	border-left: #c1c7c9 1px solid;
}
.top-content.c01 .bottom dl{
	display: flex;
	flex-wrap: wrap;
	letter-spacing: 0;
	line-height: 1.6;
}
.top-content.c01 .bottom dt{
	display: flex;
	align-items: center;
	padding: 20px;
	width: 225px;
	font-size: 18px;
	font-weight: 500;
	background: #E6EFF3;
	border-right: #c1c7c9 1px solid;
	border-bottom: #c1c7c9 1px solid;
}
.top-content.c01 .bottom dd{
	padding: 20px;
	width: calc(100% - 225px);
	background: #FFFFFF;
	border-right: #c1c7c9 1px solid;
	border-bottom: #c1c7c9 1px solid;
}
.top-content.c02 {
	margin-bottom: 120px;
}
.top-content.c07 .wrap,
.top-content.c02 .wrap{
	max-width: 1350px;
    transform: translateX(-75px);
}
.top-content.c07 .left,
.top-content.c02 .left{
	width: 47.5%;
}
.top-content.c07 .right,
.top-content.c02 .right{
	padding-top: 40px;
	width: 44.5%;
}
.top-content.c02 h2{
	margin-bottom: 50px;
	padding-bottom: 30px;
}
.top-content.c02 h2:before{
	left: 0;
    transform: translateX(0);
}
.top-content.c03 {
	margin-bottom: 180px;
}
.top-content.c03 h2{
	margin-bottom: 50px;
	padding-bottom: 20px;
	text-align: center;
}
.top-content.c03 .upper {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 80px 0;
	margin-bottom: 100px;
}
.top-content.c03 .box{
	position: relative;
	width: 30.5%;
}
.top-content.c03 .box a{
	display: block;
	padding-bottom: 20px;
}
.top-content.c03 .box a:hover{
	opacity: 1;
}
.top-content.c03 .box span{
	display: block;
	position: relative;
}
.top-content.c03 .box span:before{
	content: '';
	display: block;
	padding-top: 57%;
}
.top-content.c03 .box img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 3px;
}
.top-content.c03 .box figcaption{
	position: absolute;
	left: 5%;
	bottom: 0;
	padding: 15px 10px 0 10px;
	width: 90%;
	min-height: 55px;
	color: #303435;
	font-weight: bold;
	font-size: 23px;
	text-align: center;
	line-height: 1;
	letter-spacing: 0.1em;
	background: #fff;
	box-shadow: 0px 8px 16px -2px rgba(10,10,10,0.08), 0px 0px 0px 1px rgba(10,10,10,0.02);
}
.top-content.c03 .box:hover figcaption{
	color: #59B1E3;
	background: #E6EFF3;
}
.top-content.c03 .box figcaption i{
	display: inline-block;
	padding-right: 22px;
	background: url(../img/arrow05.svg) no-repeat right center;
	transition: all .5s;
}
.top-content.c03 .box:hover figcaption i{
	background: url(../img/arrow13.svg) no-repeat right center;
}
.top-content.c03 .more{
	text-align: center;
}
.top-content.c04 {
	margin-bottom: 150px;
}
.top-content.c04 h2{
	margin-bottom: 65px;
	padding-bottom: 20px;
	text-align: center;
}
.top-content.c04 .inr{
    counter-reset: order;
	display: flex;
	flex-wrap: wrap;
	gap: 35px;
	position: relative;
	padding-top: 340px;
	overflow: hidden;
}
.top-content.c04 .inr:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0; 
	width: 100%;
	height: 300px;
	border-radius: 5px;
	background: url(../img/top-c04-01.jpg) no-repeat center;
	background-size: cover;
}
.top-content.c04 .box{
	position: relative;
	padding-bottom: 5px;
	width: calc((100% - 70px) / 3);
	line-height: 1.6;
	letter-spacing: 0;
}
.top-content.c04 .separator{
	position: absolute;
	top: 0;
	right: -15px;
	width: 2px;
	height: 100%;
    background-size: 2px 6px;
    background-repeat: repeat-y;
    background-position: left bottom;
    background-image: linear-gradient(to top, #303435, #303435 2px, transparent 2px, transparent 6px);
}
.top-content.c04 .separator:after,
.top-content.c04 .separator:before{
	content: '';
	position: absolute;
	top: 0;
	right: -2px;
	width: 6px;
	height: 6px;
	background: #303435;
	border-radius: 100%;
}
.top-content.c04 .separator:after{
	top: auto;
	bottom: 0;
}
.top-content.c04 h3{
	position: relative;
	margin-bottom: 35px;
	padding-top: 30px;
	font-size: 27px;
	font-weight: bold;
	text-align: center;
	letter-spacing: 0.1em;
}
.top-content.c04 h3:before{
    counter-increment: order;
    content: 'Point.' counter(order);
	position: absolute;
	top: 0;
	left: 50%;
	width: 100px;
	height: 22px;
	color: #fff;
	font-size: 18px;
	text-align: center;
	line-height: 21px;
	letter-spacing: 0.1em;
	background: #32A3D6;
	border-radius: 15px;
    transform: translateX(-50%);
}
.top-content.c05 {
	position: relative;
	padding-top: 150px;
	padding-bottom: 120px;
	background: url(../img/top-c05-bg.svg) no-repeat center 0;
	background-size: cover;
}
.top-content.c05:before{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 50%;
	background: #F6F6F6;
}
.top-content.c05 h2{
	margin-bottom: 65px;
	padding-bottom: 20px;
	text-align: center;
}
.top-content.c05 .inr{
	margin: 0 -23px;
	padding-bottom: 50px;
}
.top-content.c05 .box{
	padding: 0 23px;
}
.top-content.c05 dt{
	position: relative;
	margin-bottom: 15px;
	border-radius: 3px;
	overflow: hidden;
}
.top-content.c05 .location{
	position: absolute;
	left: 0;
	bottom: 0;
	width: 104px;
	height: 50px;
	color: #fff;
	font-weight: 500;
	font-size: 20px;
	text-align: center;
	line-height: 50px;
	letter-spacing: 0.1em;
    background: rgba(75,174,218, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
	z-index: 1;
}
.top-content.c05 .image{
	position: relative;
}
/* .top-content.c05 .image:before{
	content: '';
	display: block;
	padding-top: 69%;
}
.top-content.c05 .image img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
} */
.top-content.c05 dd{
	font-size: 20px;
	letter-spacing: 0.1em;
	line-height: 1.5;
}
.top-content.c05 .slick-arrow {
    top: 135px;
	left: -65px;
    width: 40px;
    height: 40px;
	background: none;
	transform: translateY(0);
	z-index: 1;
}
.top-content.c05 .slick-next {
	left: auto;
	right: -65px;
}
.top-content.c05 .slick-prev:before, 
.top-content.c05 .slick-next:before {
	content: '';
	display: block;
    width: 40px;
    height: 40px;
	background: #F6F6F6 url(../img/arrow04.svg) no-repeat center;
	border: #32a3d6 1px solid;
	border-radius: 100%;
	box-shadow: 0px 8px 16px -2px rgba(10,10,10,0.08), 0px 0px 0px 1px rgba(10,10,10,0.02);
    opacity: 1;
}
.top-content.c05 .slick-next:before {
	background: #F6F6F6 url(../img/arrow06.svg) no-repeat center;
}
.top-content.c05 .slick-dots li button:before {
    color: #BBDDEC;
    font-size: 11px;
    opacity: 1;
}
.top-content.c05 .slick-dots li.slick-active button:before {
    color: #32A3D6;
    opacity: 1;
}
.top-content.c06 {
	margin-bottom: 170px;
	padding-top: 165px;
	background: url(../img/top-c06-bg.jpg) no-repeat center 0;
}
.top-content.c06 .upper {
	margin-left: -35px;
	line-height: 1.5;
}
.top-content.c06 .upper p{
	display: inline-block;
	position: relative;
	margin-left: 40px;
	margin-bottom: 5px;
	color: #204CBC;
	font-size: 40px;
	font-weight: bold;
	background: linear-gradient(90deg, #1E48B9 0%, #2665D1 80%, #2F80E9 80%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.top-content.c06 .upper p:after,
.top-content.c06 .upper p:before{
	content: '';
	position: absolute;
	top: 57%;
	left: -35px;
	width: 26px;
	height: 39px;
	background: url(../img/deco.svg) no-repeat center;
	transform: translateY(-50%);
	background-size: 100% auto;
}
.top-content.c06 .upper p:after{
	right: -35px;
	left: auto;
	background: url(../img/deco02.svg) no-repeat center;
}
.top-content.c06 h2{
	display: inline-block;
	margin-bottom: 170px;
	font-size: 50px;
}
.top-content.c06 h2:before{
	display: none;
}
.top-content.c06 h2 b{
	position: relative;
	font-size: 70px;
}
.top-content.c06 h2 b.s1:before{
	content: '';
	position: absolute;
	right: 0; 
	bottom: 1px;
	width: calc(100% + 10px);
	height: 30px;
	background: #D6EDF7;
}
.top-content.c06 h2 b.s1 i{
	position: relative;
}
.top-content.c06 .bottom{
	margin: 0 auto;
	padding: 40px;
	padding-bottom: 0;
	max-width: 920px;
	background: #fff;
}
.top-content.c06 .more{
	padding-top: 10px;
	text-align: center;
}
.top-content.c07 {
	margin-bottom: 155px;
}
.top-content.c07 h2{
	margin-bottom: 50px;
	padding-bottom: 35px;
}
.top-content.c07 h2:before{
	left: 0;
    transform: translateX(0);
}
.top-content.c07 p.s1{
	margin-bottom: 15px;
	font-size: 20px;
	font-weight: bold;
}
.top-content.c07 p.s2{
	margin-top: 40px;
	font-weight: bold;
	text-align: right;
	line-height: 2;
}
.top-content.c07 p.s2 span.s1{
	display: inline-block;
	position: relative;
}
.top-content.c07 p.s2 span.s2{
	position: absolute;
	left: 0;
	bottom: -7px;
    transform: translateX(-108%);
}
.top-content.c08 {
	position: relative;
	padding-bottom: 300px;
}
.top-content.c08:before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 300px;
	background: url(../img/top-c08-bg02.jpg) no-repeat center;
	background-size: cover;
}
.top-content.c08 .upper{
	margin-bottom: 100px;
}
.top-content.c08 h2{
	margin-bottom: 30px;
	padding-bottom: 20px;
}
.top-content.c08 h2:before{
	left: 0;
	width: 100%;
    transform: translateX(0);
}
.top-content.c08 p.s1{
	margin-bottom: 10px;
	font-size: 25px;
	font-weight: bold;
}
.top-content.c08 .bottom{
	padding-top: 140px;
	padding-bottom: 150px;
	background: url(../img/top-c08-bg.jpg) no-repeat center;
	background-size: cover;
}
.top-content.c08 h3{
	margin-bottom: 35px;
	font-size: 25px;
	text-align: center;
	line-height: 1.5;
	letter-spacing: 0.1em;
}
.top-content.c08 h3 span{
	display: inline-block;
	padding: 0 20px;
	height: 36px;
	color: #fff;
	font-size: 20px;
	line-height: 36px;
	background: #94867A;
	border-radius: 30px;
}
.top-content.c08 ul{
	display: flex;
	justify-content: center;
    flex-direction: row-reverse;
	gap: 20px;
    counter-reset: order;
}
.top-content.c08 li{
	position: relative;
	padding: 14px;
	padding-top: 70px;
	padding-bottom: 35px;
	font-size: 25px;
	letter-spacing: -5px;
	writing-mode: vertical-rl;
	background: #fff;
	box-shadow: 0px 3px 10px -2px rgba(0,0,0,0.15);
	border-radius: 3px;
}
.top-content.c08 li:before{
    counter-increment: order;
    content: counter(order);
	position: absolute;
	top: 0;
	left: 0;
	padding-top: 7px;
	width: 100%;
	height: 57px;
	color: #fff;
	font-family: "Alata", serif;
	text-align: center;
	letter-spacing: 0.03em;
    writing-mode: horizontal-tb; 
	background: linear-gradient(180deg, rgba(122, 190, 238,1) 1%,rgba(120, 189, 237,1) 2%,rgba(52, 163, 214,1) 100%);	
}
.top-content.c09 {
	padding-top: 140px;
	padding-bottom: 150px;
	background: #F6F6F6;
}
.top-content.c09 h2{
	margin-bottom: 50px;
	padding-bottom: 20px;
}
.top-content.c09 h2:before{
	left: 0;
	width: 100%;
	transform: translateX(0);
}
.top-content.c09 .inr{
	border-top: #c1c7c9 1px solid;
	border-left: #c1c7c9 1px solid;
}
.top-content.c09 dl{
	display: flex;
	flex-wrap: wrap;
	line-height: 1.6;
	letter-spacing: 0;
}
.top-content.c09 dt{
	display: flex;
	align-items: center;
	padding: 20px;
	width: 19.5%;
	font-size: 18px;
	font-weight: 500;
	background: #E6EFF3;
	border-right: #c1c7c9 1px solid;
	border-bottom: #c1c7c9 1px solid;
}
.top-content.c09 dd{
	padding: 20px;
	width: 79.5%;
	background: #fff;
	border-right: #c1c7c9 1px solid;
	border-bottom: #c1c7c9 1px solid;
}
.top-content.c10 {
	margin-bottom: 110px;
	padding-bottom: 120px;
	background: #F6F6F6;
}
.top-content.c10 h2{
	margin-bottom: 50px;
	padding-bottom: 20px;
}
.top-content.c10 h2:before{
	left: 0;
	width: 100%;
	transform: translateX(0);
}
.top-content.c10 .left{
	padding-top: 20px;
}
.top-content.c10 .right{
	width: 565px;
}
.top-content.c10 dl{
	position: relative;
	line-height: 1.8;
	letter-spacing: 0;
}
.top-content.c10 dl.s1{
	margin-bottom: 30px;
	padding-bottom: 30px;
}
.top-content.c10 dl:before{
	content: '';
	position: absolute;
	top: 40px;
	left: 18px;
	width: 1px;
	height: calc(100% - 38px);
	background: #32A3D6;
}
.top-content.c10 dl.s2:before{
	top: 33px;
	height: calc(100% - 30px);
}
.top-content.c10 dt{
	margin-bottom: 10px;
	padding-left: 35px;
	font-size: 20px;
	font-weight: 500;
	background: url(../img/icon-pin.svg) no-repeat 10px 9px;
}
.top-content.c10 .s2 dt{
	background: url(../img/icon-map.svg) no-repeat 10px 9px;
}
.top-content.c10 dd{
	margin-left: 30px;
}
.top-content.c10 .tel{
	display: inline-block;
	padding-left: 20px;
	background: url(../img/icon-phone.svg) no-repeat 3px 9px;
	background-size: 13px auto;
}
.top-content.c10 .s2 li{
	padding-left: 18px;
	background: url(../img/icon-train.svg) no-repeat 2px 6px;
}
.top-content.c11 .wrap{
	margin: 0 auto;
	max-width: 970px;
}
.top-content.c11 h2{
	margin-bottom: 20px;
	text-align: center;
}
.top-content.c11 h2:before{
	display: none;
}
.top-content.c11 .inr{
	padding: 45px 55px 30px 55px;
	border: #32a3d6 6px solid;
	border-radius: 3px;
}
.top-content.c11 ul{
	margin-bottom: 30px;
	padding-bottom: 10px;
	border-bottom: #32a3d6 5px solid;
}
.top-content.c11 li{
	margin-bottom: 25px;
}
.top-content.c11 li a{
	display: flex;
	gap: 0 25px;
	color: #303435;
}
.top-content.c11 .date{
	width: 130px;
}
.top-content.c11 .category{
	margin-top: 3px;
	padding: 0 5px;
	width: 74px;
	height: 25px;
	color: #fff;
	font-size: 13px;
	font-weight: 400;
	text-align: center;
	line-height: 24px;
	border-radius: 3px;
}
.top-content.c11 .category.c-news{
	background: #32A3D6;
}
.top-content.c11 .category.c-performance,
.top-content.c11 .category.c-recruit{
	background: #569569;
}
.top-content.c11 .p-title{
	width: calc(100% - 254px);
}
.top-content.c11 .more{
	text-align: center;
}

@media screen and (min-width:1440px) {
	.top-content.c06 {
		background: url(../img/top-c06-bg.jpg) no-repeat center 0;
		background-size: 100% auto;
	}
}

@media screen and (max-width:1300px) {
	.top-content.c05 .slick-arrow {
		left: 0;
	}
	.top-content.c05 .slick-next {
		left: auto;
		right: 0;
	}
}

@media screen and (max-width:1100px) {
	.top-content.c10 .right{
		margin-bottom: 20px;
		width: 100%;
	}
	.top-content.c10 .left{
		order: 2;
	}
	.top-content.c06 .upper {
		margin-left: 0;
	}
}

@media screen and (max-width:1000px) {
	.top-mv .b1 p.s2,
	.top-mv .b1 p.s1{
		font-size: 44px;
	}
	.top-mv .b2 p.s1{
		font-size: 44px;
	}
	.top-mv .b2 p.s1 i{
		font-size: 40px;
	}
	.top-mv .b2 p.s2{
		font-size: 46px;
	}
	.top-mv .b2 p.s2 i{
		font-size: 40px;
	}
	.top-mv .b3 p.s1{
		font-size: 44px;
	}
	.top-mv .b3 p.s2{
		font-size: 44px;
	}
	.top-mv .b3 p.s1 i,
	.top-mv .b3 p.s2 i{
		font-size: 40px;
	}
	.top-mv .b4 p.s1{
		font-size: 28px;
	}
	.top-mv .b4 p.s1 i{
		font-size: 25px;
	}
	.top-mv .b4 p.s2{
		font-size: 55px;
	}
}

@media screen and (max-width:950px) {
	.top-content.c08 ul{
		gap: 15px;
	}
	.top-content.c08 li{
		padding-top: 70px;
		padding-bottom: 25px;
		font-size: 20px;
	}
	.top-content.c08 li:before{
		padding-top: 10px;
	}
}

@media screen and (max-width:820px) {
	.top-mv .text{
		top: 42%;
	}
	.top-content.c07 .wrap,
	.top-content.c02 .wrap{
		transform: translateX(-25px);
	}
	.top-content.c03 .box{
		width: 48%;
	}
	.top-content.c06 .upper p{
		font-size: 32px;
	}
	.top-content.c06 h2{
		font-size: 40px;
	}
	.top-content.c06 h2 b{
		font-size: 54px;
	}
	.top-content.c08 p.s1 {
		font-size: 22px;
	}
	.top-content.c08 li{
		padding: 10px;
		padding-top: 70px;
		padding-bottom: 25px;
	}
}

@media screen and (max-width:767px) {
	.top-mv .box{
		height: calc(100vh - var(--header-height));
	}
	.top-mv .box .sp{
		height: 100%;
	}
	.top-mv .box img{
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.top-mv .text{
		top: auto;
		bottom: 100px;
		transform: translateY(0);
	}
	.top-mv .b4 .text{
		top: auto;
		text-align: left;
	}
	.top-mv .text .wrap{
		padding-right: 0;
	}
	.top-mv .box p.s2,
	.top-mv .box p.s1{
		font-size: 40px;
		line-height: 1.2;
		letter-spacing: 0;
	}
	.top-mv p.s3{
		margin-bottom: 0;
		padding: 0;
		background: none;
		box-shadow: none!important;
	}
	.top-mv p.s3 span{
		display: inline-block;
		margin-bottom: 13px;
		padding: 0 6px;
		font-weight: 500;
		background: #32A3D6;
		box-shadow: 0px 0px 18px -3px rgba(0,0,0,0.5);
	}
	.top-mv .b1 p.s1{
		margin-bottom: 0;
	}
    .top-mv .b2 p.s1 {
		margin-bottom: 10px;
    }
	.top-mv .box p.s2{
		margin-bottom: 20px;
	}
	.top-mv .b3 p.s2,
	.top-mv .b3 p.s1,
	.top-mv .b2 p.s2{
		margin-left: -10px;
	}
	.top-mv .b3 p.s1{
		margin-bottom: 5px;
	}
	.top-mv .b4 p.s4,
	.top-mv .b3 p.s4{
		color: #fff;
	}
	.top-mv .b3 p.s1 i,
	.top-mv .b3 p.s2 i{
		font-size: 35px;
	}
	.top-mv .b4 p.s1,
	.top-mv .b4 p.s1 i{
		font-size: 40px;
	}
	.top-mv .b4 p.s1{
		line-height: 1.4;
	}
	.top-mv .b4 p.s2{
		margin-left: -20px;
		margin-bottom: 40px;
		font-size: 68px;
	}
	.top-news {
		margin-top: -70px;
		margin-bottom: 12vw;
	}
	.top-news ul{
		padding: 13px;
		padding-bottom: 0;
		width: 100%;
		height: 70px;
		border-left: none;
	}
	.top-news a{
		display: block;
		padding-top: 2px;
		-webkit-line-clamp: 2;
	}
	.top-news .category{
		margin: 0 10px;
		transform: translateY(-2px);
	}
	.top-news .p-title{
		padding-top: 3px;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		overflow: hidden;
		-webkit-line-clamp: 1;
	}
	.content h2,
	.top-content h2{
		padding-bottom: 20px;
		font-size: 25px;
		line-height: 1.2;
		letter-spacing: 0.08em;
	}
	.content h2:before,
	.top-content h2:before{
		width: 23px;
		height: 5px;
	}
	.top-content.c01 {
		margin-bottom: 18vw;
		padding-bottom: 0;
	}
	.top-content.c01:before {
		display: none;
	}
	.top-content.c01 h2{
		margin-bottom: 35px;
		padding-left: 0;
	}
	.top-content.c01 h2:before{
		top: auto;
		left: 50%;
		bottom: 0;
		width: 79px;
		height: 5px;
		transform: translateX(-50%);
	}
	.top-content.c01 .upper{
		gap: 20px;
		margin-bottom: 14vw;
	}
	.top-content.c01 .upper span{
		width: calc((100% - 40px) / 3);
	}
	.top-content.c01 .bottom dt{
		justify-content: center;
		padding: 10px;
		width: 100%;
	}
	.top-content.c01 .bottom dd{
		padding: 10px;
		width: 100%;
	}
	.top-content.c02 {
		position: relative;
		margin-bottom: 22vw;
		padding-bottom: 7vw;
	}
	.top-content.c02:before{
		content: '';
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 40vw;
		background: #F6F6F6;
	}
	.top-content.c07 .wrap,
	.top-content.c02 .wrap{
		transform: translateX(0);
	}
	.top-content.c02 h2{
		margin-bottom: 25px;
		padding-bottom: 25px;
		line-height: 1.5;
	}
	.top-content.c07 .left,
	.top-content.c02 .left{
		order: 2;
		margin-top: 35px;
		width: 100%;
	}
	.top-content.c07 .right,
	.top-content.c02 .right{
		padding-top: 0;
		width: 100%;
	}
	.top-content.c02 .left img{
		margin: 0 auto;
		width: 70%;
	}
	.top-content.c03{
		margin-bottom: 22vw;
	}
	.top-content.c03 h2{
		margin-bottom: 40px;
	}
	.top-content.c03 .upper {
		gap: 20px 0;
		margin-bottom: 30px;
	}
	.top-content.c03 .box a{
		padding-bottom: 10px;
	}
	.top-content.c03 .box figcaption{
		padding: 5px 0;
		min-height: 25px;
		font-size: 14px;
	}
	.top-content.c03 .b3 figcaption{
		letter-spacing: -0.1em;
	}
	.top-content.c03 .box:hover figcaption i,
	.top-content.c03 .box figcaption i{
		padding-right: 10px;
		background-size: 7.5px auto;
		background-position-y: 4px;
	}
	.top-content.c04{
		margin-bottom: 10vw;
	}
	.top-content.c04 .inr{
		gap: 40px;
		padding-top: 104vw;
		overflow: visible;
	}
	.top-content.c04 .inr:before {
		margin: 0 -25px;
		width: calc(100% + 50px);
		height: 80vw;
		border-radius: 0;
		background: url(../img/top-c04-01-sp.jpg) no-repeat center;
		background-size: cover;
	}
	.top-content.c04 .box{
		padding-bottom: 30px;
		width: 100%;
	}
	.top-content.c04 .separator{
		top: auto;
		right: 0;
		bottom: 0;
		width: 100%;
		height: 2px;
		background-size: 6px 2px;
		background-repeat: repeat-x;
		background-position: left bottom;
		background-image: linear-gradient(to right, #303435, #303435 2px, transparent 2px, transparent 6px);
	}
	.top-content.c04 .separator:after,
	.top-content.c04 .separator:before{
		top: auto;
		right: -2px;
		bottom: -2px;
	}
	.top-content.c04 .separator:after{
		left: -2px;
	}
	.top-content.c04 h3{
		margin-bottom: 10px;
		padding-top: 25px;
		font-size: 20px;
	}
	.top-content.c04 .box:last-child .separator{
		display: none;
	}
	.top-content.c05 {
		margin-bottom: 14vw;
		padding-top: 80px;
		padding-bottom: 65px;
	}
	.top-content.c05:before{
		display: none;
	}
	.top-content.c05 h2{
		margin-bottom: 50px;
	}
	.top-content.c05 .inr{
		padding-bottom: 20px;
	}
	.top-content.c05 .slick-arrow {
		left: 10px;
		width: 30px;
		height: 30px;
	}
	.top-content.c05 .slick-next {
		left: auto;
		right: 10px;
	}
	.top-content.c05 .slick-prev:before, 
	.top-content.c05 .slick-next:before {
		width: 30px;
		height: 30px;
		background-size: 5px auto;
	}
	.top-content.c06 {
		margin-bottom: 20vw;
		padding-top: 0;
		background: none;
	}
	.top-content.c06 .upper p{
		margin-left: 20px;
		font-size: 21px;
	}
	.top-content.c06 .upper p:after,
	.top-content.c06 .upper p:before{
		left: -20px;
		width: 14px;
		height: 20px;
	}
	.top-content.c06 .upper p:after{
		right: -22px;
		left: auto;
	}
	.top-content.c06 h2{
		margin-bottom: 30px;
		padding: 0;
		font-size: 26px;
		line-height: 1.4;
	}
	.top-content.c06 h2 b{
		font-size: 37px;
	}
	.top-content.c06 h2 b.s1:before{
		width: calc(100% + 5px);
		height: 15px;
	}
	.top-content.c06 .bottom{
		position: relative;
		padding: 0;
		padding-top: 70vw;
	}
	.top-content.c06 .bottom:before{
		content: '';
		position: absolute;
		top: 0;
		left: -25px;
		width: calc(100% + 50px);
		height: 62vw;
		background: url(../img/top-c06-bg-sp.jpg) no-repeat center 0;
		background-size: cover;
	}
	.top-content.c06 .more {
		padding: 0;
	}
	.top-content.c07 {
		margin-bottom: 22vw;
	}
	.top-content.c07 h2{
		margin-bottom: 25px;
		padding-bottom: 25px;
	}
	.top-content.c07 p.s1{
		margin-bottom: 20px;
		font-size: 18px;
	}
    .top-content.c07 .left {
        margin-top: 45px;
		text-align: center;
    }
    .top-content.c07 .left img{
		width: 61.5%;
	}
	.top-content.c08 {
		margin-bottom: 30vw;
		padding-bottom: 60vw;
	}
	.top-content.c08:before {
		height: 60vw;
		background: url(../img/top-c08-bg02-sp.jpg) no-repeat center;
		background-size: cover;
	}
	.top-content.c08 .upper {
		margin-bottom: 20vw;
	}
	.top-content.c08 h2{
		padding-bottom: 15px;
	}
	.top-content.c08 p.s1{
		margin-bottom: 30px;
		font-size: 18px;
	}
	.top-content.c08 .bottom {
		padding-top: 14vw;
		padding-bottom: 15vw;
	}
	.top-content.c08 h3{
		margin-bottom: 25px;
	}
	.top-content.c08 h3 span{
		height: 30px;
		font-size: 16px;
		line-height: 30px;
	}
	.top-content.c08 ul{
		position: relative;
		display: block;
		background: #fff;
		box-shadow: 0px 3px 10px -2px rgba(0,0,0,0.15);
		border-radius: 0 3px 3px 0;
	}
	.top-content.c08 ul:before{
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 75px;
		height: 100%;
		background: linear-gradient(180deg, rgba(122, 190, 238,1) 1%,rgba(120, 189, 237,1) 2%,rgba(52, 163, 214,1) 100%);	
	}
	.top-content.c08 li{
		padding: 18px;
		padding-left: 100px;
		font-size: 16px;
		letter-spacing: 0.05em;
		writing-mode: horizontal-tb;
		background: none;
		border-bottom: #d5dfe5 1px solid;
		border-radius: 0;
		box-shadow: none;
	}
	.top-content.c08 li:before{
		width: 75px;
		height: 100%;
		font-size: 25px;
		background: none;
	}
	.top-content.c09 {
		padding: 18vw 0;
	}
	.top-content.c09 h2 {
		margin-bottom: 25px;
		padding-bottom: 15px;
	}
	.top-content.c09 dt{
		padding: 8px 20px;
		width: 100%;
		font-size: 16px;
	}
	.top-content.c09 dd{
		padding: 10px;
		padding-bottom: 20px;
		width: 100%;
	}
	.top-content.c10 {
		margin-bottom: 14vw;
		padding-bottom: 12vw;
	}
	.top-content.c10 h2 {
		margin-bottom: 25px;
		padding-bottom: 15px;
	}
    .top-content.c10 .right {
        margin-bottom: 0;
    }
	.top-content.c10 .left {
		padding-top: 10px;
	}
	.top-content.c10 dl.s1 {
		margin-bottom: 25px;
		padding-bottom: 10px;
	}
	.top-content.c10 dl.s2:before{
		height: calc(100% - 60px);
	}
	.top-content.c10 dd {
		margin-left: 35px;
	}
	.top-content.c11 .inr{
		padding: 0;
		border: none;
	}
	.top-content.c11 ul {
		margin-bottom: 30px;
		padding-bottom: 0px;
		border-bottom: none;
	}
	.top-content.c11 li{
		margin-bottom: 25px;
		padding-bottom: 20px;
		border-bottom: #d5dfe5 1px solid;
	}
	.top-content.c11 li a{
		flex-wrap: wrap;
		gap: 5px 10px;
	}
	.top-content.c11 .p-title{
		width: 100%;
	}
}

/*フッター*/
#footer{
	position: relative;
	padding-top: 135px;
	background: #fff;
	z-index: 1;
}
#footer .upper {
	position: relative;
	margin-bottom: 60px;
	z-index: 1;
}
#footer .upper .upr{
	align-items: center;
	margin-bottom: 55px;
}
#footer .upper h2{
	position: relative;
	padding-left: 25px;
	width: 260px;
	font-size: 35px;
	letter-spacing: 0.1em;
}
#footer .upper h2:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 5px;
	height: 41px;
	background: #32A3D6;
}
#footer .upper .text{
	width: 69.5%;
}
#footer .upper .box{
	position: relative;
	width: 49%;
	border-radius: 3px;
	overflow: hidden;
}
#footer .upper .box:before{
	content: '';
	display: block;
	padding-top: 49%;
}
#footer .upper .box a{
	display: flex;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	padding-left: 75px;
	width: 100%;
	height: 100%;
	color: #fff;
	background: none;
}
#footer .upper .box a:hover{
	color: #32A3D6;
	opacity: 1;
}
#footer .upper .b2 a{
	padding-left: 40px;
	font-size: 23px;
	letter-spacing: 0.1em;
}
#footer .upper .box a:before,
#footer .upper .box a:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	color: #fff;
	background: rgba(50,163,214, 0.5);
    transition: all .5s;
}
#footer .upper .box a:before{
	content: '';
	background: url(../img/footer-contact.jpg) no-repeat center;
	background-size: cover;
	z-index: -1;
}
#footer .upper .b2 a:before{
	background: url(../img/footer-contact02.jpg) no-repeat center;
	background-size: cover;
}
#footer .upper .box a:hover:before{
	opacity: 0.3;
}
#footer .upper .box a:hover:after{
	opacity: 0;
}
#footer .upper .box span{
	position: relative;
	line-height: 1.3;
	z-index: 1;
}
#footer .upper .b2 span{
	padding-left: 40px;
	background: url(../img/icon-mail02.svg) no-repeat 0 5px;
}
#footer .upper .b2:hover span{
	background: url(../img/icon-mail03.svg) no-repeat 0 5px;
	background-size: 33px auto;
}
#footer .upper .box b{
	display: block;
	margin-left: -35px;
	padding-left: 35px;
	font-size: 35px;
	background: url(../img/icon-phone02.svg) no-repeat 0 9px;
	background-size: 28.5px auto;
}
#footer .bottom {
	position: relative;
	padding-top: 70px;
	padding-bottom: 20px;
	color: #fff;
	background: #32A3D6;
}
#footer .bottom .wrap{
	max-width: 1250px;
}
#footer .bottom a{
	color: #fff;
}
#footer .bottom .upr{
	margin-bottom: 20px;
}
#footer .bottom .left{
	width: 340px;
	line-height: 1.8;
	letter-spacing: 0;
}
#footer .bottom .right{
	padding-top: 15px;
	width: 64.5%;
	max-width: calc(100% - 350px);
	line-height: 1;
	letter-spacing: 0.1em;
}
#footer .bottom .logo{
	margin-bottom: 20px;
	width: 254px;
}
#footer .bottom .tel{
	display: block;
	padding-left: 18px;
	font-size: 20px;
	background: url(../img/icon-phone02.svg) no-repeat 0 center;
	background-size: 13px auto;
}
#footer .bottom ul{
	display: flex;
	flex-wrap: wrap;
	gap: 25px 14%;
	margin-bottom: 25px;
}
#footer .bottom .btm{
	text-align: right;
}
#footer .bottom .copyright{
	display: inline-block;
	padding: 0 17px;
	height: 25px;
	color: #303435;
	font-size: 13px;
	line-height: 1.6;
	letter-spacing: 0.1em;
	line-height: 23px;
	background: #fff;
	border-radius: 15px;
}
#footer .pagetop {
	position: absolute;
	top: -18px;
	right: 25px;
	width: 39px;
	height: 39px;
	background: linear-gradient(180deg, rgba(49, 135, 239,1) 2%,rgba(48, 134, 238,1) 2%,rgba(28, 64, 178,1) 100%);
	border-radius: 2px;
	box-shadow: 0px 0px 16px -6px rgba(0,0,0,0.5);
}
#footer .pagetop:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(121, 189, 237,1) 1%,rgba(50, 163, 214,1) 100%);
	opacity: 0;
	transition: all .5s;
}
#footer .pagetop:hover:after{
	opacity: 1;
}
#footer .pagetop a{
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	height: 39px;
	z-index: 1;
}

@media screen and (max-width:820px) {
	#footer .bottom {
		padding-top: 40px;
	}
	#footer .bottom .left{
		width: 100%;
		text-align: center;
	}
	#footer .bottom .right{
		display: none;
	}
	#footer .bottom .logo{
		display: inline-block;
		margin-bottom: 10px;
	}
	#footer .bottom .company{
		display: inline-block;
		margin-bottom: 5px;
	}
	#footer .bottom .tel{
		display: inline-block;
		margin-top: 8px;
	}
	#footer .bottom .btm{
		text-align: center;
	}
}

@media screen and (max-width:767px) {
	#footer{
		padding-top: 18vw;
	}
	#footer .upper{
		margin-bottom: 50px;
	}
	#footer .upper .upr {
		margin-bottom: 15px;
	}
	#footer .upper h2{
		margin-bottom: 15px;
		padding-left: 0;
		padding-bottom: 15px;
		width: 100%;
		font-size: 25px;
		text-align: center;
	}
	#footer .upper h2:before{
		top: auto;
		left: 50%;
		bottom: 0;
		width: 28px;
		height: 5px;
		transform: translateX(-50%);
	}
	#footer .upper .text{
		width: 100%;
	}
	#footer .upper .box{
		width: 100%;
		border-radius: 2px;
	}
	#footer .upper .b1{
		margin-bottom: 20px;
		font-size: 12px;
	}
	#footer .upper .box:before{
		padding-top: 30.5%;
	}
	#footer .upper .box a{
		justify-content: center;
		padding: 0;
	}
	#footer .upper .b2 a{
		font-size: 16px;
	}
	#footer .upper .box a:before{
		background: url(../img/footer-contact-sp.jpg) no-repeat center;
		background-size: cover;
	}
	#footer .upper .b2 a:before{
		background: url(../img/footer-contact02-sp.jpg) no-repeat center;
		background-size: cover;
	}
	#footer .upper .box span{
		text-align: center;
	}
	#footer .upper .b2 span{
		padding-left: 24px;
		background: url(../img/icon-mail02.svg) no-repeat 0 5px;
		background-size: 19px auto;
	}
	#footer .upper .box b{
		margin: 0;
		padding-left: 22px;
		font-size: 25px;
		letter-spacing: -0.03em;
		background: url(../img/icon-phone02.svg) no-repeat 0 9px;
		background-size: 16.5px auto;
	}
}

/* 下層ページ*/
.page-header h1{
	display: flex;
	align-items: center;
	margin-bottom: 0;
	height: 300px;
	color: #fff;
	font-size: 60px;
	font-weight: bold;
	letter-spacing: 0;
	line-height: 1.2;
	text-shadow: 0px 0px 20px rgba(0,0,0,0.4);
}
.pankuzu {
	padding: 10px 0;
	min-height: 40px;
	color: #fff;
	font-size: 13px;
	font-weight: 300;
	line-height: 1.4;
	letter-spacing: 0;
	background: linear-gradient(90deg, rgba(26, 59, 173,1) 2%,rgba(50, 139, 242,1) 100%);
}
.pankuzu .wrap{
	max-width: 100%;
}
.pankuzu ul{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 1;
}
.pankuzu li{
	display: inline;
	position: relative;
	font-size: 14px;
}
.pankuzu li:not(:last-child){
	margin-right: 22px;
}
.pankuzu li:not(:last-child):before{
	content: '';
	position: absolute;
	top: 50%;
	right: -13px;
	width: 5px;
	height: 8px;
	background: url(../img/arrow.svg) no-repeat 0 center;
	background-size: 100% auto;
	transform: translateY(-30%);
}
.pankuzu a{
	color: #fff;
}
.pankuzu li:first-of-type a{
	padding-left: 18px;
	background: url(../img/icon-home.svg) no-repeat 0 center;
}

@media screen and (max-width:820px) {
	.page-header h1{
		height: 250px;
		font-size: 50px;
	}
}

@media screen and (max-width:767px) {
	.page-header h1{
		justify-content: center;
		height: 140px;
		font-size: 30px;
		letter-spacing: 0.1em;
	}
	.pankuzu .wrap{
		padding: 0 10px;
	}
}

/* 事業内容 */
body.services .page-header{
	background: url(../img/services/services-bg.jpg) no-repeat center;
	background-size: cover;
}
body.services .c01 {
	margin-bottom: 80px;
	padding: 90px 0;
	font-size: 18px;
	text-align: center;
	line-height: 2;
	letter-spacing: 0;
	background: url(../img/content-bg.jpg) no-repeat center;
	background-size: cover;
}
body.services .c01 p:not(:last-child){
	margin-bottom: 20px;
}
body.services .c01 p.s1{
	font-size: 25px;
	font-weight: bold;
}
body.services .c02 {
	margin-bottom: 100px;
}
body.services .c02 .upper {
	margin-bottom: 45px;
}
body.services .c02 h2{
	margin-bottom: 15px;
	padding: 0;
	padding-left: 20px;
}
body.services .c02 h2:before{
	top: 50%;
	left: 0;
	bottom: auto;
	width: 5px;
	height: 41px;
	transform: translateY(-50%) translateX(0);
}
body.services .c02 .upper p{
	font-size: 18px;
	line-height: 2;
	letter-spacing: 0;
}
body.services .c02 .bottom{
	gap: 90px 0;
}
body.services .c02 .box{
	position: relative;
	width: 47%;
	padding-bottom: 60px;
}
body.services .c02 .image img{
	display: block;
	margin-bottom: 10px;
	border-radius: 5px;
}
body.services .c02 dt{
	margin-bottom: 5px;
	font-size: 25px;
	font-weight: 500;
	line-height: 2;
	letter-spacing: 0.1em;
}
body.services .c02 dd{
	font-size: 18px;
	line-height: 1.6;
	letter-spacing: 0;
}
body.services .c02 dd span{
	display: block;
	margin-bottom: 10px;
	padding: 2px 0;
	color: #32A3D6;
	font-size: 16px;
	line-height: 2;
	letter-spacing: 0.1em;  
	border-top: #32a3d6 1px solid;
	border-bottom: #32a3d6 1px solid;
}
body.services .c02 dd b{
	font-size: 18px;
	font-weight: 500;
}
body.services .c02 dd div{
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	text-align: center;
}
body.services .c02 dd a{
	display: inline-block;
	padding-left: 12px;
	width: 175px;
	height: 40px;
	color: #32A3D6;
	font-size: 16px;
	font-weight: 500;
	text-align: center;
	line-height: 35px;
	background: url(../img/arrow08.svg) no-repeat 35px center;
	background-size: 6px auto;
	border: #32a3d6 2px solid;
	border-radius: 23px;
}
body.services .c03 {
	margin-bottom: 150px;
}
body.services .c03 .wrap{
	max-width: 1130px;
}
body.services .c03 h2{
	margin-bottom: 60px;
	text-align: center;
}
body.services .c03 h2:before{
	display: none;
}
body.services .c03 .inr{
	padding-top: 75px;
	padding-bottom: 70px;
	background: url(../img/services/services-c03-bg.jpg) no-repeat center bottom;
	background-size: cover;
}
body.services .c03 .box{
	display: flex;
	flex-wrap: wrap;
	gap: 0.875%;
	position: relative;
    transform: translateX(-65px);
}
body.services .c03 .b2{
    transform: translateX(45px);
}
body.services .c03 .box:after,
body.services .c03 .box:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 32.75%;
	height: 100%;
	background: url(../img/services/services-c03-07.png) no-repeat center 0;
	background-size: 100% auto;
	transform: translateX(calc(-100% - 10px));
}
body.services .c03 .box:after{
	left: auto;
	right: 0;
	transform: translateX(calc(100% + 10px));
}
body.services .c03 .b2:after,
body.services .c03 .b2:before{
	background: url(../img/services/services-c03-08.png) no-repeat center 0;
}
body.services .c03 .b1{
	margin-bottom: 30px;
}
body.services .c03 figure{
	width: 32.75%;
}
body.services .c03 figcaption{
	color: #fff;
	font-size: 21px;
	text-align: center;
	line-height: 2;
	letter-spacing: 0.1em;
}
body.services .c04 {
	position: relative;
	padding-bottom: 495px;
}
body.services .c04:before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 495px;
	background: url(../img/services/services-c04-bg.jpg) no-repeat center 0;
	background-size: cover;
}
body.services .c04 h2{
	margin-bottom: 40px;
	padding-bottom: 20px;
	text-align: center;
}
body.services .c04 .inr{
	display: flex;
	flex-wrap: wrap;
	gap: 45px calc(13% / 3);
    counter-reset: order;
	margin-bottom: 60px;
	overflow: hidden;
}
body.services .c04 .box{
	position: relative;
	width: 21.75%;
}
body.services .c04 .separator{
	content: '';
	position: absolute;
	top: 0;
	right: -10%;
	width: 2px;
	height: 100%;
    background-size: 2px 6px;
    background-repeat: repeat-y;
    background-position: left bottom;
    background-image: linear-gradient(to top, #303435, #303435 2px, transparent 2px, transparent 6px);
}
body.services .c04 .separator:after,
body.services .c04 .separator:before{
	content: '';
	position: absolute;
	top: 0;
	right: -2px;
	width: 6px;
	height: 6px;
	background: #303435;
	border-radius: 100%;
}
body.services .c04 .separator:after{
	top: auto;
	bottom: 0;
}
body.services .c04 .image{
	margin-bottom: 20px;
	border-radius: 5px;
	overflow: hidden;
}
body.services .c04 dt{
	position: relative;
	margin-bottom: 10px;
	padding-top: 30px;
	font-size: 23px;
	letter-spacing: 0.1em;
}
body.services .c04 dt:before{
    counter-increment: order;
    content: 'Point.' counter(order);
	position: absolute;
	top: 0;
	left: 0;
	width: 105px;
	height: 22px;
	color: #fff;
	font-size: 18px;
	line-height: 22px;
	text-align: center;
	background: #32A3D6;
	border-radius: 15px;
}
body.services .c04 dd{
	line-height: 1.6;
	letter-spacing: 0.03em;
}
body.services .c05 {
	position: relative;
	padding-top: 215px;
	padding-bottom: 200px;
	text-align: center;
	background: url(../img/services/services-c05-bg.jpg) no-repeat center 0;
	background-size: cover;
}
body.services .c05:before{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: calc(100% - 75px);
	background: linear-gradient(rgba(256,256,256,1),rgba(256,256,256,0.6));
}
body.services .c05 .wrap{
	position: relative;
}
body.services .c05 h2{
	margin-bottom: 45px;
	padding-bottom: 35px;
}
body.services .c05 p{
	margin-bottom: 50px;
}
body.services .c05 .image img{
	display: inline-block;
	border-radius: 10px;
	box-shadow: 0px 0px 20px -6px rgba(0,0,0,0.15);
}
body.services .c06 {
	margin-bottom: 135px;
	padding-top: 100px;
	padding-bottom: 125px;
	color: #fff;
	background: url(../img/services/services-c06-bg.jpg) no-repeat center;
	background-size: cover;
}
body.services .c06 h2{
	padding-left: 25px;
	width: 295px;
}
body.services .c06 h2:before{
	top: 6px;
	left: 0;
	bottom: auto;
	width: 5px;
	height: 41px;
	background: #fff;
	transform: translateX(0);
}
body.services .c06 .right{
	counter-reset: order;
	width: calc(100% - 295px);
}
body.services .c06 dl.s1{
	position: relative;
	margin-bottom: 20px;
	padding-left: 105px;
	min-height: 115px;
	overflow: hidden;
}
body.services .c06 dl.s1:after,
body.services .c06 dl.s1:before{
	content: '';
	position: absolute;
	top: 88px;
	left: 43px;
	width: 2px;
	height: 100%;
	background: #fff;
}
body.services .c06 dl.s1:after{
	top: auto;
	left: 37px;
	bottom: 0;
	width: 14px;
	height: 7px;
	background: url(../img/arrow09.svg) no-repeat center;
}
body.services .c06 .right dl.s1:last-child:before,
body.services .c06 .right dl.s1:last-child:after{
	display: none;
}
body.services .c06 dt{
	position: relative;
	margin-bottom: 2px;
	font-size: 25px;
	font-weight: 500;
	letter-spacing: 0.1em;
}
body.services .c06 dl.s1>dt:after,
body.services .c06 dl.s1>dt:before{
    content: "STEP";
	position: absolute;
	top: 0;
	left: -105px;
	padding-top: 20px;
	width: 88px;
	height: 88px;
	font-size: 16px;
	font-weight: 400;
	text-align: center;
	line-height: 1.4;
	border: #fff 2px solid;
	border-radius: 100%;
}
body.services .c06 dl.s1>dt:after{
	counter-increment: order;
    content: counter(order);
	top: 45px;
	left: -66px;
	padding-top: 0;
	width: auto;
	height: auto;
	border: none;
	border-radius: 0;
}
body.services .c06 dt span{
	font-size: 18px;
}
body.services .c06 dd{
	font-weight: 300;
	line-height: 1.6;
	letter-spacing: 0;
}
body.services .c06 .box{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 20px;
	color: #303435;
	background: #fff;
	border-radius: 5px;
	overflow: hidden;
}
body.services .c06 .image{
	width: 22%;
}
body.services .c06 .image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
body.services .c06 .box dl{
	padding: 10px 20px;
	width: 78%;
}
body.services .c06 .box dt{
	font-size: 20px;
	font-weight: bold;
}
body.services .c06 .box dd{
	font-weight: 400;
}
body.services .c07 h2{
	margin-bottom: 95px;
	padding-bottom: 30px;
	text-align: center;
}
body.services .c07 dl{
	line-height: 1.6;
	cursor: pointer;
}
body.services .c07 dl:not(:last-child){
	margin-bottom: 50px;
}
body.services .c07 dt{
	position: relative;
	margin-bottom: 25px;
	padding: 25px;
	padding-left: 60px;
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 0;
	background: linear-gradient(90deg, rgba(26, 59, 173,1) 1%,rgba(50, 139, 243,1) 100%);
	border-radius: 10px;
}
body.services .c07 dt:before,
body.services .c07 dt:after,
body.services .c07 dd:before,
body.services .c07 dd:after{
	content: '';
	position: absolute;
	top: 50%;
	left: 25px;
	width: 24px;
	height: 24px;
	background: url(../img/icon-q.svg) no-repeat center;
    transform: translateY(-50%);
}
body.services .c07 dt:after{
	left: auto;
	right: 35px;
	width: 12px;
	height: 6px;
	background: url(../img/arrow10.svg) no-repeat center;
	background-size: 100% auto;
}
body.services .c07 .open dt:after{
	background: url(../img/arrow11.svg) no-repeat center;
	background-size: 100% auto;
}
body.services .c07 dd{
	display: none;
	position: relative;
	padding-left: 85px;
}
body.services .c07 dd:before{
	left: 26px;
	width: 22px;
	height: 22px;
	background: url(../img/icon-a.svg) no-repeat center;
}
body.services .c07 dd:after{
	top: 0;
	left: 62px;
	width: 3px;
	height: 100%;
	background: #303435;
    transform: translateY(0);
}

@media screen and (max-width:1000px) {
	body.services .c06 h2{
		margin-bottom: 25px;
		width: 100%;
	}
	body.services .c06 .right{
		width: 100%;
	}
}

@media screen and (max-width:820px) {
	body.services .c03 h2{
		font-size: 32px;
	}
	body.services .c03 .box{
		transform: translateX(0);
	}
	body.services .c03 .box:after,
	body.services .c03 .box:before{
		display: none;
	}
	body.services .c04 {
		padding-bottom: 250px;
	}
	body.services .c04:before {
		height: 250px;
	}
	body.services .c04 .inr{
		gap: 45px 4%;
	}
	body.services .c04 .box{
		width: 48%;
	}
	body.services .c04 .separator{
		display: none;
	}
	body.services .c04 .image{
		border-radius: 7px;
	}
}

@media screen and (max-width:767px) {
	body.services .c01 {
		margin-bottom: 18vw;
		padding-top: 25px;
		padding-bottom: 60px;
		font-size: 16px;
		background: url(../img/content-bg-sp.jpg) no-repeat center bottom;
		background-size: 100% auto;
	}
	body.services .c01 p.s1{
		font-size: 20px;
	}
	body.services .c01 p:not(:last-child){
		margin-bottom: 30px;
	}
	body.services .c02{
		margin-bottom: 14vw;
	}
	body.services .c02 h2 {
		margin-bottom: 35px;
		padding-left: 10px;
	}
	body.services .c02 .bottom{
		gap: 50px 0;
	}
	body.services .c02 .box{
		width: 100%;
	}
	body.services .c02 .image img {
		margin-bottom: 5px;
	}
	body.services .c02 dt{
		margin-bottom: 10px;
		font-size: 20px;
	}
	body.services .c02 dd{
		font-size: 16px;
	}
	body.services .c02 dd span{
		padding: 0;
		font-size: 14px;
	}
	body.services .c02 dd b{
		font-size: 16px;
	}
	body.services .c03{
		margin-bottom: 15vw;
	}
	body.services .c03 h2{
		margin-bottom: 25px;
		padding-bottom: 0;
		font-size: 20px;
	}
	body.services .c03 .inr{
		padding-top: 50px;
		padding-bottom: 40px;
		background: url(../img/services/services-c03-bg-sp.jpg) no-repeat center bottom;
		background-size: cover;
	}
	body.services .c03 .box{
		gap: 20px 6.5%;
	}
	body.services .c03 figure{
		width: 46.75%;
	}
	body.services .c03 figcaption{
		padding-top: 5px;
		font-size: 16px;
	}
	body.services .c04 {
		padding-bottom: 40vw;
	}
	body.services .c04:before {
		height: 41vw;
		background: url(../img/services/services-c04-bg-sp.jpg) no-repeat center 0;
		background-size: cover;
	}
	body.services .c04 h2 {
		margin-bottom: 45px;
		letter-spacing: 0;
	}
	body.services .c04 .box{
		width: 100%;
	}
	body.services .c04 .image{
		margin-bottom: 15px;
		border-radius: 4px;
	}
	body.services .c04 dt {
		margin-bottom: 5px;
		padding-top: 0;
		padding-left: 85px;
		min-height: 34px;
		font-size: 18px;
		letter-spacing: 0;
	}
	body.services .c04 dt:before{
		width: 72px;
		height: 34px;
		font-size: 14px;
		line-height: 34px;
		letter-spacing: 0.1em;
		border-radius: 4px;
	}
	body.services .c05 {
		padding-top: 24vw;
		padding-bottom: 32vw;
		background: url(../img/services/services-c05-bg-sp.jpg) no-repeat center bottom;
		background-size: 100% auto;
	}
	body.services .c05:before{
		height: 100%;
		background: linear-gradient(rgba(256,256,256,1) 60%,rgba(256,256,256,0.8));
	}
	body.services .c05 h2 {
		margin-bottom: 30px;
		padding-bottom: 25px;
	}
	body.services .c05 p {
		margin-bottom: 25px;
	}
	body.services .c06 {
		margin-bottom: 16vw;
		padding: 12vw 0;
		background: url(../img/services/services-c06-bg-sp.jpg) no-repeat center;
		background-size: cover;
	}
	body.services .c06 h2 {
		margin-bottom: 20px;
		padding-top: 10px;
		padding-left: 15px;
	}
	body.services .c06 h2:before {
		height: 41px;
	}
	body.services .c06 dl.s1{
		margin-bottom: 25px;
		padding-left: 50px;
		min-height: 50px;
	}
	body.services .c06 dl.s1:before{
		display: none;
	}
	body.services .c06 .right dl.s1:after{
		top: 41px;
		left: 14px;
		bottom: auto;
		width: 14px;
		height: 20px;
		background: url(../img/arrow14.svg) no-repeat center;
	}
	body.services .c06 .right dl.s1:last-child:after{
		display: block;
	}
	body.services .c06 dt{
		font-size: 20px;
	}
	body.services .c06 dt span {
		font-size: 16px;
	}
	body.services .c06 dl.s1>dt:before{
		top: 0;
		left: -50px;
		padding-top: 8px;
		width: 41px;
		height: 41px;
		font-size: 10px;
		font-weight: 300;
		border: #fff 1px solid;
	}
	body.services .c06 dl.s1>dt:after{
		top: 20px;
		left: -34px;
		font-size: 14px;
		font-weight: 300;
	}
	body.services .c06 dl.s1 dl dt{
		margin-bottom: 7px;
		font-size: 16px;
		line-height: 1.4;
	}
	body.services .c06 dl.s1 dl dd{
		font-size: 14px;
	}
	body.services .c06 .image{
		width: 100%;
	}
	body.services .c06 .image img{
		width: 100%;
		height: auto;
	}
	body.services .c06 .box dl{
		padding: 10px;
		width: 100%;
	}
	body.services .c07 h2 {
		margin-bottom: 45px;
		padding-bottom: 20px;
		text-align: center;
	}
	body.services .c07 dl{
		line-height: 1.4;
	}
	body.services .c07 dl:not(:last-child){
		margin-bottom: 30px;
	}
	body.services .c07 dt{
		margin-bottom: 20px;
		padding: 10px 45px 10px 40px;
		font-size: 16px;
	}
	body.services .c07 dt:before{
		left: 14px;
		width: 17px;
		height: 24px;
		background: url(../img/icon-q.svg) no-repeat center;
		background-size: 100% auto;
	}
	body.services .c07 dt:after{
		right: 14px;
		background: url(../img/arrow10.svg) no-repeat center;
		background-size: 100% auto;
	}
	body.services .c07 dd{
		padding-left: 40px;
	}
	body.services .c07 dd:before{
		top: 24px;
		left: 8px;
		width: 15px;
		height: 15px;
		background: url(../img/icon-a.svg) no-repeat center;
		background-size: 100% auto;
	}
	body.services .c07 dd:after{
		top: 3px;
		left: 30px;
		width: 2px;
		transform: translateY(0);
	}
}

/* お問い合わせ */
.page-contact .page-header{
	background: url(../img/contact/contact-bg.jpg) no-repeat center;
	background-size: cover;
}
.page-contact .form-header {
	margin-bottom: 100px;
	padding: 60px 0;
	font-size: 18px;
	text-align: center;
	line-height: 2;
	letter-spacing: 0;
	background: url(../img/content-bg.jpg) no-repeat center;
	background-size: cover;
}
.page-contact .form-header p{
	margin-bottom: 20px;
}
.page-contact .form-header p.s1{
	font-weight: bold;
	font-size: 25px;
}
.page-contact .form-header .banner{
	display: inline-block;
	position: relative;
	width: 566px;
	height: 173px;
	text-align: left;
	border-radius: 3px;
	overflow: hidden;
	z-index: 1;
}
.page-contact .form-header .banner a{
	display: flex;
	align-items: center;
	position: relative;
	padding-left: 20px;
	height: 100%;
	color: #fff;
	background: rgba(50,163,214, 0.5);
}
.page-contact .form-header .banner a:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../img/contact/contact-c01-01.jpg) no-repeat center;
	background-size: cover;
	z-index: -1;
}
.page-contact .form-header .banner span{
	text-align: center;
}
.page-contact .form-header .banner i{
	font-size: 22px;
	font-weight: 500;
}
.page-contact .form-header .banner b{
	display: block;
	padding-left: 35px;
	font-size: 35px;
	line-height: 1.3;
	letter-spacing: 0;
	background: url(../img/icon-phone02.svg) no-repeat 0 center;
	background-size: 28.5px auto;
}
.page-contact h2{
	margin-bottom: 110px;
	padding-left: 25px;
}
.page-contact h2:before{
	left: 0;
	width: 5px;
	height: 41px;
	background: #32A3D6;
	transform: translateX(0);
}
select,
textarea,
[type="password"],
[type="email"],
[type="number"],
[type="text"]{
	padding: 15px;
	width: 100%;
	border: #C1C7C9 1px solid;
	border-radius: 5px;
	box-shadow: none;
	-webkit-appearance: none;
}
[type="radio"]{
    margin-top: 2px;
    margin-right: 6px;
    width: 20px;
    height: 20px;
    background: #fff;
    border: #C1C7C9 1px  solid;
	border-radius: 100%;
}
[type="radio"]:checked{
	background: none!important;
	background: #fff url(../img/radio-bg.svg) no-repeat center!important;
	border: #C1C7C9 1px  solid;
}
.form-check-input{
	margin-top: 4px;
	background: #fff;
	border: #ccc 1px solid;
}
textarea{
	min-height: 180px;
}
::placeholder {
  color: #888F92;
}
.form-content {
	margin: 0 auto;
	max-width: 920px;
	padding: 45px 25px 75px 25px;
	background: #E6EFF3;
	border-radius: 10px;
}
.form-content .inr{
	margin: 0 auto;
	max-width: 740px;
}
.form-content .u p{
	margin-bottom: 45px;
	text-align: center;
}
.form-content dl{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 30px;
	min-height: 60px;
	line-height: 1.6;
}
.form-content dl.s1{
	align-items: center;
}
.form-content dt{
	padding-top: 15px;
	width: 35%;
	font-weight: bold;
}
.form-content dl.s1 dt{
	padding-top: 0;
}
.form-content dd{
	width: 65%;
}
.form-content dt span{
	display: inline-block;
	position: relative;
}
.form-content dt span:before{
	content: '任意';
	position: absolute;
	top: 3px;
	right: -45px;
	width: 35px;
	height: 18px;
	color: #fff;
	font-size: 13px;
	font-weight: normal;
	text-align: center;
	line-height: 18px;
	background: #76B7B5;
	border-radius: 3px;
}
.form-content .req dt span:before{
	content: '必須';
	color: #fff;
	background: #BF4F4F;
}
.form-content dl.s1 label:not(:last-child){
	display: inline-block;
	margin-right: 35px;
}
.form-content .b{
	text-align: center;
}
.form-content .privacy{
	display: inline-block;
	margin-bottom: 20px;
	width: 310px;
	height: 46px;
	line-height: 46px;
	background: #C8DDE7;
	border-radius: 5px;
}
.form-content .privacy .form-check-input{
	margin-top: 17px;
}
.form-content .privacy label{
	position: relative;
}
.form-content .privacy label:after{
	top: 50%;
	right: -2px;
    transform: translateY(-50%);
}
.form-content .privacy a{
	color: #303435;
	text-decoration: underline;
}
.form-content .recaptcha{
	margin: 0 auto;
	margin-bottom: 20px;
	width: 304px;
}
.form-content [type="submit"]{
	color: #fff;
	letter-spacing: 0.1em;
	background: none;
	border: none;
}

@media screen and (max-width:767px) {
	.page-contact .form-header {
		margin-bottom: 60px;
		padding: 30px 0;
		font-size: 16px;
		background: url(../img/content-bg-sp02.jpg) no-repeat center bottom;
		background-size: 100% auto;
	}
	.page-contact .form-header p{
		margin-bottom: 45px;
	}
	.page-contact .form-header p.s1{
		margin-bottom: 20px;
		font-size: 20px;
	}
	.page-contact .form-header .banner{
		width: 325px;
		height: 100px;
	}
	.page-contact .form-header .banner a{
		padding-left: 10px;
	}
	.page-contact .form-header .banner span{
		font-size: 10px;
	}
	.page-contact .form-header .banner i{
		font-size: 13px;
	}
	.page-contact .form-header .banner b{
		padding-left: 22px;
		font-size: 20px;
		background: url(../img/icon-phone02.svg) no-repeat 0 center;
		background-size: 17px auto;
	}
	.page-contact h2 {
		margin-bottom: 25px;
		padding-left: 15px;
		padding-bottom: 0;
	}
	.page-contact h2:before{
		bottom: -8px;
	}
	.form-content {
		padding: 0;
		background: none;
	}
	.form-content .u p{
		margin-bottom: 35px;
		text-align: left;
	}
	.form-content dl{
		margin-bottom: 40px;
		min-height: none;
	}
	.form-content dl.s1 dt,
	.form-content dt{
		margin-bottom: 10px;
		padding: 13px 10px;
		width: 100%;
		background: #E6EFF3;
		border-radius: 5px;
	}
	.form-content dl.s1 dd{
		padding-top: 20px;
	}
	.form-content dd{
		width: 100%;
	}
	.form-content dl.s1 label:not(:last-child){
		margin-right: 30px;
		margin-bottom: 15px;
	}
	.form-content .btn-s1.mini{
		width: 236px;
		height: 64px;
		line-height: 60px;
	}
}

/* 投稿詳細 */
.wrapp-blog-container{
	flex-wrap: wrap;
}
.wrapp-blog-page{
	padding-top: 80px;
}
.blog-container{
	width: 69.5%;
}
.sidebar.blog{
	width: 24.5%;
	font-size: 18px;
	line-height: 2;
	letter-spacing: 0.1em;
}
.sidebar.blog h3{
	margin-bottom: 0;
	padding-bottom: 10px;
	font-size: 25px;
	font-weight: bold;
	border-bottom: #32a3d6 3px solid;
}
.sidebar.blog .cat-count{
	display: none;
}
.sidebar.blog ul{
	margin: 0;
	padding: 0;
}
.sidebar.blog li{
	padding: 10px;
	padding-left: 25px;
	list-style: none;
	background: url(../img/arrow08.svg) no-repeat 10px 24px;
	border-bottom: #c1c7c9 1px solid;
}
.sidebar.blog a{
	color: #303435;
}
.blog-header .category {
	display: inline-block;
	margin-bottom: 30px;
	padding: 0 8px;
	height: 26px;
	font-size: 13px;
	line-height: 1.2;
	letter-spacing: 0;
	line-height: 26px;
	color: #fff;
	background: #0025A4;
	border-radius: 3px;
}
.blog-header h1{
	margin-bottom: 5px;
	padding-bottom: 15px;
	width: 100%;
	font-size: 40px;
	line-height: 1.2;
	letter-spacing: 0.1em;
	border-bottom: #0025a4 4px solid;
}
.blog-header .date{
	margin-bottom: 30px;
	color: #888F92;
	font-size: 18px;
	line-height: 2;
	letter-spacing: 0;
}
.blog-header .date time{
	display: inline-block;
}
.blog-header .modified{
	padding-left: 40px;
	background: url(../img/line.svg) no-repeat 10px center;
}
.blog-content {
	font-size: 16px;
	line-height: 2;
	letter-spacing: 0.05em;
}
.blog-content h2{
	padding: 0;
	padding-left: 10px;
	font-family: "Zen Old Mincho", serif;
	font-size: 25px;
	line-height: 1.2;
	letter-spacing: 0.1em;
	border: none;
	border-left: #32a3d6 4px solid;
}
.blog-content h2:not(:first-child){
	margin-top: 40px;
}
.blog-content .wp-block-list{
	margin-bottom: 55px;
}
.blog-content ol.wp-block-list{
    counter-reset: order;
	padding: 0;
	padding-left: 5px;
}
.blog-content .wp-block-list li{
	margin-bottom: 10px;
}
.blog-content ol.wp-block-list li{
	position: relative;
	margin-bottom: 10px;
	padding-left: 20px;
	list-style: none;
}
.blog-content ol.wp-block-list li::marker{
	content: '';
}
.blog-content ol.wp-block-list li:before{
    counter-increment: order;
    content: counter(order) '.';
	position: absolute;
	top: 0;
	left: 0;
}
.blog-content h3{
	position: relative;
	margin-top: 60px;
	margin-bottom: 10px;
	padding: 5px;
	padding-left: 15px;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0.1em;
	background: #D6EDF7;
	border: none;
	border-radius: 5px;
}
.blog-content h3:before{
	content: '';
	position: absolute;
	top: 50%;
	left: 8px;
	width: 3px;
	height: 16px;
	background: #32A3D6;
	transform: translateY(-50%);
}
.blog-content .wp-block-image{
	margin-bottom: 90px;
	border-radius: 10px;
	overflow: hidden;
}
.blog-content .wp-block-columns {
	margin-bottom: 50px;
}
.blog-content .wp-block-table .has-fixed-layout {
    table-layout: auto;
}
.blog-content .wp-block-table {
	line-height: 1.6;
	letter-spacing: 0;
}
.blog-content .wp-block-table thead{
	color: #303435!important;
	font-size: 18px;
	background-color: #E6EFF3!important;
	border: none!important;
}
.blog-content .wp-block-table table thead th{
	padding: 10px 15px;
}
.blog-content .wp-block-table table td,
.blog-content .wp-block-table table th {
    padding: 20px;
	border: #c7cdce 1px solid;
}
.blog-content .wp-block-table tbody th{
	width: 61.5%!important;
	font-weight: normal;
}
.blog-content .wp-block-table tbody td{
	width: 38.5%!important;
}
.blog-content .wp-block-table tbody th strong{
	font-size: 18px;
}
.blog-content .wp-block-table tbody code{
	color: #888F92;
	font-size: 14px;
}
.blog-content .wp-block-table sup{
	top: 0;
	font-size: inherit;
}
.blog-content .wp-block-table .wp-element-caption{
	margin-top: 20px;
	color: #888F92;
	font-size: 14px;
	font-weight: 300;
	line-height: 2;
}

@media screen and (max-width:1000px) {
	.blog-container{
		margin-bottom: 50px;
		width: 100%;
		max-width: 100%;
	}
	.sidebar.blog{
		width: 100%;
	}
}

@media screen and (max-width:767px) {
	.wrapp-blog-page{
		padding-top: 30px;
	}
	.sidebar.blog{
		font-size: 16px;
	}
	.sidebar.blog h3{
		font-size: 20px;
	}
	.blog-header .category {
		margin-bottom: 15px;
	}
	.blog-header h1{
		margin-bottom: 2px;
		padding-bottom: 10px;
		font-size: 20px;
	}
	.blog-header .date{
		margin-bottom: 20px;
		font-size: 12px;
	}
	.blog-content {
		line-height: 1.6;
		letter-spacing: 0;
	}
	.blog-content h2{
		margin-bottom: 10px;
		padding-left: 8px;
		font-size: 20px;
		line-height: 1.1;
	}
	.blog-content p.s1{
		line-height: 2;
	}
	.blog-content h3{
		margin-top: 60px;
		margin-bottom: 15px;
		font-size: 16px;
	}
	.blog-content .wp-block-columns {
		margin-bottom: 35px;
	}
	.blog-content .wp-block-table {
		margin-top: 20px;
	}
	.blog-content .wp-block-table thead{
		font-size: 16px;
	}
	.blog-content .wp-block-table table td,
	.blog-content .wp-block-table table th {
		padding: 10px;
	}
	.blog-content .wp-block-table tbody th strong{
		font-size: 16px;
	}
	.blog-content .wp-block-table sup{
		font-size: 14px;
	}
	.blog-content .wp-block-table td sup{
		display: block;
		top: 10px;
	}
}

/* 採用情報 */
body.recruit:before,
body.recruit:after{
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../img/recruit/recruit-c01-bg.jpg) no-repeat center 0;
	background-size: 100% auto;
	z-index: -2;
}
body.recruit:after{
	background: url(../img/recruit/recruit-c03-bg.jpg) no-repeat right 0;
	background-size: cover;
	opacity: 0;
    transition: all .5s;
	z-index: -1;
}
body.recruit.s1:after{
	opacity: 1;
}
body.recruit .contact02{
	position: fixed;
	top: 90px;
	right: 0;
	width: 80px;
	height: 490px;
}
body.recruit .contact02 a:hover{
	opacity: 1;
}
body.recruit #header{
	background: none;
}
body.recruit #header #hinr{
	padding-right: 80px;
}
body.recruit #header .right{
	width: 500px;
}
body.recruit .pankuzu{
	color: #303435;
	background: none;
}
body.recruit .pankuzu li:not(:last-child):before{
	background: url(../img/arrow02.svg) no-repeat 0 center;
	background-size: 100% auto;
}
body.recruit .pankuzu a{
	color: #303435;
}
body.recruit .pankuzu li:first-of-type a{
	background: url(../img/icon-home02.svg) no-repeat 0 center;
}
body.recruit .c01 {
	position: relative;
	padding-top: 180px;
	z-index: 1;
}
body.recruit .c01 h1{
	margin-bottom: 40px;
	font-weight: bold;
	font-size: 60px;
	line-height: 1.3;
}
body.recruit .c01 h1 i{
	display: inline-block;
	position: relative;
	font-size: 90px;
	font-style: italic;
}
body.recruit .c01 h1 i.s1{
	font-size: 110px;
}
body.recruit .c01 h1 i span{
	position: absolute;
	left: 0;
	bottom: -15px;
	width: 100%;
	height: 2px;
	background: #32A3D6;
}
body.recruit .c01 h1 i.s1 span{
	left: 10%;
	width: 80%;
}
body.recruit .c01 h1 i span:after,
body.recruit .c01 h1 i span:before{
	content: '';
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 10px;
	height: 10px;
	background: #32A3D6;
	border-radius: 100%;
}
body.recruit .c01 h1 i span:after{
	left: auto;
	right: 0;
}
body.recruit .c01 .inr{
	padding: 45px;
	max-width: 655px;
	font-size: 18px;
	line-height: 2;
	letter-spacing: 0;
	background: rgba(249,249,249, 0.8);
	border-radius: 10px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
body.recruit .c02 {
	position: relative;
	margin-top: -40px;
	padding-bottom: 40px;
	padding-top: 150px;
	background: linear-gradient(90deg, rgba(50, 139, 242,0.9) 1%,rgba(29, 66, 179,0.9) 100%);
}
body.recruit .c02:after,
body.recruit .c02:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 8.7vw;
	background: linear-gradient(90deg, rgba(50, 139, 242,0.9) 1%,rgba(29, 66, 179,0.9) 100%);
    transform: translateY(-100%);
	clip-path: polygon(0 0, 0% 100%, 100% 100%);
} 
body.recruit .c02:after {
	top: auto;
	bottom: 1px;
	transform: translateY(100%);
	clip-path: polygon(100% 0, 0 0, 100% 100%);
} 
body.recruit .c02 .wrap{
	position: relative;
}
body.recruit .c02 .wrap:after,
body.recruit .c02 .wrap:before{
	content: '';
	position: absolute;
	top: -420px;
	right: -120px;
	width: 326px;
	height: 345px;
	background: url(../img/recruit/deco.svg) no-repeat center;
	background-size: auto 100%;
}
body.recruit .c02 .wrap:after{
	top: auto;
	right: auto;
	left: -140px;
	bottom: 180px;
	width: 326px;
	height: 590px;
	background: url(../img/recruit/deco02.svg) no-repeat center;
	background-size: auto 100%;
}
body.recruit .c02 h2{
	display: flex;
	align-items: center;
	gap: 15px;
	position: relative;
	margin-bottom: 35px;
	width: calc(100% - 155px);
	color: #fff;
	font-weight: 500;
	letter-spacing: 0.05em;
}
body.recruit .c02 h2:before{
	display: none;
}
body.recruit .c02 h2:after{
	content: 'About SCS';
	position: absolute;
	top: 47%;
	right: 0;
	font-size: 27px;
	font-style: italic;
	font-family: "Alata", serif;
	font-weight: 400;
	letter-spacing: 0.04em;
    transform: translateY(-50%) translateX(calc(100% + 15px));
}
body.recruit .c02 h2 span{
	flex: 0 1 auto; 
}
body.recruit .c02 h2 span.deco{
	flex: 1;
	position: relative;
	height: 2px;
	background: #fff;
}
body.recruit .c02 h2 span.deco:after,
body.recruit .c02 h2 span.deco:before{
	content: '';
	position: absolute;
	top: -4px;
	left: 0;
	width: 10px;
	height: 10px;
	background: #fff;
	border-radius: 100%;
}
body.recruit .c02 h2 span.deco:after{
	left: auto;
	right: 0;
}
body.recruit .c02 .inr{
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
	position: relative;
	margin-bottom: 70px;
	z-index: 1;
}
body.recruit .c02 .box{
	padding: 25px;
	padding-top: 30px;
	width: 29.5%;
	background: #fff;
	border-radius: 10px;
}
body.recruit .c02 .b1{
	position: relative;
	width: 61%;
}
body.recruit .c02 .b1:before{
	content: '';
	position: absolute;
	top: 95px;
	left: 35px;
	width: 34%;
	height: 100%;
	background: url(../img/recruit/recruit-c02-01.svg) no-repeat center 0;
	background-size: 100% auto;
}
body.recruit .c02 .b2{
	width: calc(39% - 25px);
}
body.recruit .c02 .b3{
	width: calc(41% - 50px);
}
body.recruit .c02 h3{
	position: relative;
	margin-bottom: 20px;
	padding-left: 10px;
	font-size: 27px;
	font-weight: bold;
	letter-spacing: 0.1em;
}
body.recruit .c02 .b1 h3,
body.recruit .c02 .b2 h3{
	margin-bottom: 5px;
}
body.recruit .c02 h3:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 31px;
	background: linear-gradient(90deg, rgba(29, 66, 179,1) 1%,rgba(50, 139, 242,1) 100%);
}
body.recruit .c02 .upr{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 15px;
	font-size: 23px;
	letter-spacing: 0.1em;
}
body.recruit .c02 .b1 .btm,
body.recruit .c02 .b1 .upr{
	padding-left: 43%;
}
body.recruit .c02 .upr.s1{
	margin-bottom: 5px;
}
body.recruit .c02 .upr>div{
	width: 100%;
}
body.recruit .c02 .upr b{
	display: inline-block;
	font-family: "Alata", serif;
	font-weight: 400;
	font-style: normal;
	line-height: 1;
	letter-spacing: 0;
}
body.recruit .c02 .b3 .upr,
body.recruit .c02 .b4 .upr,
body.recruit .c02 .b5 .upr{
	font-weight: 500;
	text-align: center;
}
body.recruit .c02 .b3 .upr b,
body.recruit .c02 .b4 .upr b,
body.recruit .c02 .b5 .upr b{
	font-weight: normal;
	font-size: 90px;
}
body.recruit .c02 .btm{
	line-height: 1.6;
	letter-spacing: 0;
}
body.recruit .c02 dl{
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	font-weight: 500;
	font-size: 23px;
	line-height: 1.4;
}
body.recruit .c02 dl.s1:before{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 13px;
	background: #FFE864;
}
body.recruit .c02 dd,
body.recruit .c02 dt{
	position: relative;
}
body.recruit .c02 dl.s1 dt{
	padding-top: 18px;
}
body.recruit .c02 .b2 dt{
	font-size: 20px;
}
body.recruit .c02 .b2 dt small{
	font-size: 75%;
}
body.recruit .c02 .b2 dl.s1 dt{
	font-size: 23px;
}
body.recruit .c02 dl.s1 dd{
	min-width: 102px;
	text-align: right;
}
body.recruit .c02 dd b{
	font-size: 40px;
}
body.recruit .c02 dl.s1 dd b{
	font-size: 60px;
}
body.recruit .c02 .more {
	text-align: center;
}
body.recruit .c03 {
	position: relative;
	margin-bottom: 60px;
	padding-top: 60px;
	background: url(../img/recruit/recruit-c03-bg02.svg) no-repeat center 0;
	background-size: 100% auto;
}
body.recruit .c03 .wrap {
	max-width: 1250px;
}
body.recruit .c03 .upper{
	margin-bottom: 80px;
	font-size: 60px;
	font-weight: bold;
	letter-spacing: 0.1em;
	line-height: 1.3;
}
body.recruit .c03 h2{
	position: relative;
	margin-bottom: 75px;
	padding-top: 135px;
	font-size: 20px;
	font-weight: bold;
}
body.recruit .c03 h2:before{
	display: none;
}
body.recruit .c03 h2:after{
	content: 'APPEAL';
	position: absolute;
	top: -100px;
	left: 0;
	font-size: 196px;
	font-family: "Alata", serif;
	font-weight: 400;
	font-style: normal;
	letter-spacing: 0.1em;
}
body.recruit .c03 .upper b{
	font-size: 80px;
}
body.recruit .c03 .bottom{
	gap: 80px 0;
    counter-reset: order;
}
body.recruit .c03 .box{
	width: 47.05%;
}
body.recruit .c03 .box:first-child{
	margin-right: 50%;
}
body.recruit .c03 .image{
	margin-bottom: 35px;
	border-radius: 10px;
	overflow: hidden;
}
body.recruit .c03 dt{
	position: relative;
	margin-bottom: 10px;
	padding-top: 35px;
	font-size: 25px;
	font-weight: bold;
	line-height: 1.6;
	letter-spacing: 0.1em;
}
body.recruit .c03 dt:before{
	content: '';
	position: absolute;
	top: 16px;
	left: 0;
	width: 70px;
	height: 2px;
	background: #32A3D6;
}
body.recruit .c03 dt:after{
    counter-increment: order;
	content: 'Point ' counter(order);
	position: absolute;
	top: 0;
	left: 80px;
	color: #32A3D6;
	font-size: 20px;
	font-family: "Alata", serif;
	font-weight: 400;
	font-style: normal;
	letter-spacing: 0;
}
body.recruit .c03 dd{
	line-height: 2;
	letter-spacing: -0.02em;
}
body.recruit .c04 {
	position: relative;
	padding-top: 180px;
	background: url(../img/recruit/recruit-c04-bg.webp) no-repeat center 0;
	background-size: cover;
	z-index: 2;
}
body.recruit .c04:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -8vw;
	width: 200%;
	height: 17.4vw;
	background: #fff;
	clip-path: polygon(0 0, 0% 100%, 100% 100%);
}
body.recruit .c04 .wrap {
	max-width: 1250px;
}
body.recruit .c04 h2{
	margin-bottom: 85px;
	font-size: 80px;
	text-align: right;
}
body.recruit .c04 h2:before{
	display: none;
}
body.recruit .c04 h2 span{
	display: inline-block;
	position: relative;
	letter-spacing: 0.08em;
    transform: rotate(-3deg);
}
body.recruit .c04 h2 span:before{
	content: '実際どうなの!?';
	position: absolute;
	top: -195px;
	right: 0;
	padding: 15px;
	padding-bottom: 20px;
	color: #fff;
	font-size: 60px;
	white-space: nowrap;
	line-height: 1;
	background: #32A3D6;
}
body.recruit .c04 h2 span:after{
	content: '';
	position: absolute;
	right: 0;
	top: -100px;
	width: 40px;
	height: 20px;
	background: #0025A4;
	clip-path: polygon(30% 0, 0% 100%, 100% 0);
}
body.recruit .c04 h2 i{
	font-size: 60px;
}
body.recruit .c04 .inr{
	gap: 60px 0;
	position: relative;
	z-index: 1;
}
body.recruit .c04 .box{
	width: 47%;
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0px 2px 20px -6px rgba(0,0,0,0.3);
}
body.recruit .c04 .box:nth-child(odd){
    transform: translateY(-170px);
}
body.recruit .c04 dl{
	display: flex;
	flex-wrap: wrap;
	padding: 30px;
	letter-spacing: 0;
}
body.recruit .c04 dt{
	order: 2;
	padding-top: 20px;
	width: 100%;
	color: #9D9F9F;
	font-weight: normal;
	text-align: center;
	line-height: 1.6;
	border-top: #c1c7c9 1px solid;
}
body.recruit .c04 dd{
	padding-bottom: 30px;
	width: 100%;
	line-height: 2;
}
body.recruit .c05 {
	position: relative;
	padding-top: 8vw;
	padding-bottom: 140px;
	background: #fff;
	z-index: 1;
}
body.recruit .c05 h2{
	margin-bottom: 80px;
	padding-top: 40px;
	font-size: 60px;
}
body.recruit .c05 h2:before{
	display: none;
}
body.recruit .c05 h2:after{
	content: 'RECRUITMENT REQUIREMENTS';
	position: absolute;
	top: 0;
	left: 0;
	color: #D6EDF7;
	font-size: 80px;
	font-family: "Alata", serif;
	font-weight: 400;
	white-space: nowrap;
	letter-spacing: 0;
}
body.recruit .c05 h2 span{
	position: relative;
	z-index: 1;
}
.recruit-content .upper{
	margin-bottom: 70px;
	font-size: 18px;
	line-height: 2;
}
.recruit-content h3{
	position: relative;
	display: inline-block;
	margin-bottom: 30px;
	font-size: 30px;
	font-weight: bold;
	letter-spacing: 0.1em;
}
.recruit-content h3:before{
	content: 'FULL-TIME EMPLOYEE';
	position: absolute;
	top: 9px;
	right: 0;
	color: #32A3D6;
	font-family: "Alata", serif;
	font-weight: 400;
	font-size: 20px;
	white-space: nowrap;
	letter-spacing: 0;
	transform: translateX(calc(100% + 10px));
}
.recruit-content dl{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 30px 0;
	font-size: 18px;
	line-height: 2;
	letter-spacing: 0;
	border-bottom: #c1c7c9 1px solid;
}
.recruit-content dl:first-child{
	border-top: #c1c7c9 1px solid;
}
.recruit-content dt{
	width: 20%;
	font-weight: 500;
}
.recruit-content dd{
	padding-left: 20%;
	width: 80%;
}
.recruit-content dd span{
	display: inline-block;
	font-size: 14px;
}
body.recruit .c06 {
	position: relative;
	padding-top: 150px;
	color: #fff;
	background: #fff;
}
body.recruit .c06:after,
body.recruit .c06:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../img/recruit/recruit-c06-bg.jpg) no-repeat center bottom;
	background-size: 100% auto;
}

body.recruit .c06:after {
	background: linear-gradient(180deg, rgba(43, 100, 185,1) 30%,rgba(51, 141, 244,0.5) 100%);
}
body.recruit .c06 .content-wrap{
	position: relative;
	padding-bottom: 36.8vw;
	z-index: 1;
}
body.recruit .c06 .content-wrap:after,
body.recruit .c06 .content-wrap:before{
	content: '';
	position: absolute;
	right: 30px;
	bottom: 37vw;
	width: 326px;
	height: 345px;
	background: url(../img/recruit/deco03.svg) no-repeat center;
	background-size: auto 100%;
}
body.recruit .c06 .content-wrap:after{
	right: auto;
	left: -80px;
	bottom: -3vw;
}
body.recruit .c06 .employees{
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 36.8vw;
	background: url(../img/recruit/recruit-c06-bg02.webp) no-repeat center bottom;
	background-size: 100% auto;
	z-index: 1;
}
body.recruit .c06 .wrap{
	position: relative;
}
body.recruit .c06 .upper{
	margin-bottom: 40px;
}
body.recruit .c06 h3:before {
	content: 'PART-TIME EMPLOYEE';
	color: #fff;
}
body.recruit .c06 .middle{
	margin-bottom: 120px;
}
body.recruit .c06 dl{
	border-color: #fff;
}
body.recruit .c06 .bottom{
	font-size: 25px;
	font-weight: bold;
	letter-spacing: 0.1em;
	text-align: center; 
	line-height: 1.6;
}
body.recruit .c06 .bottom p.s1{
	margin-bottom: 15px;
	font-size: 40px;
	line-height: 1;
}
body.recruit .c06 .bottom p.s2{
	margin-bottom: 40px;
	font-size: 50px;
}
body.recruit .c06 .bottom span{
	display: inline-block;
	position: relative;
}
body.recruit .c06 .bottom span i{
	position: absolute;
	left: 0;
	bottom: -10px;
	width: 100%;
	height: 2px;
	background: #fff;
}
body.recruit .c06 .bottom p.s2 i{
	bottom: 1px;
}
body.recruit .c06 .bottom span i:after,
body.recruit .c06 .bottom span i:before{
	content: '';
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 10px;
	height: 10px;
	background: #fff;
	border-radius: 100%;
}
body.recruit .c06 .bottom span i:after{
	left: auto;
	right: 0;
}
body.recruit .c06 .bottom .more{
	margin-top: 40px;
}

@media screen and (max-width:1440px) {
	body.recruit{
		background: url(../img/recruit/recruit-c01-bg.jpg) no-repeat center 0;
		background-attachment: fixed; 
		background-size: auto;
	}
}

@media screen and (max-width:1250px) {
	body.recruit .c04:after {
		bottom: -5vw;
	}
}

@media screen and (max-width:1050px) {
	body.recruit #header{
		background: #fff;
	}
	body.recruit #header #hinr{
		padding-right: 0;
	}
}

@media screen and (max-width:900px) {
	body.recruit .c02 .inr{
		gap: 20px;
	}
	body.recruit .c02 .box,
	body.recruit .c02 .b3,
	body.recruit .c02 .b2{
		width: calc(50% - 10px);
	}
	body.recruit .c02 .b1{
		width: 100%;
	}
	body.recruit .c03 h2:after {
		top: -30px;
		font-size: 150px;
	}
	.recruit-content dd{
		padding-left: 15%;
	}
}

@media screen and (max-width:820px) {
	body.recruit .c01 h1{
		font-size: 55px;
	}
	body.recruit .c01 h1 i{
		font-size: 80px;
	}
	body.recruit .c01 h1 i.s1{
		font-size: 90px;
	}
	body.recruit .c04 h2{
		font-size: 60px;
	}
	body.recruit .c04 h2 span:before{
		top: -184px;
		font-size: 50px;
	}
	body.recruit .c04 h2 i{
		font-size: 50px;
	}
	body.recruit .c05 h2:after {
		top: 18px;
		font-size: 50px;
	}
}

@media screen and (max-width:767px) {
	body.recruit:before{
		background: url(../img/recruit/recruit-c01-bg-sp.jpg) no-repeat center 0;
		background-size: cover;
	}
	body.recruit:after{
		background: url(../img/recruit/recruit-c03-bg-sp.jpg) no-repeat right 0;
		background-size: cover;
	}
	body.recruit .c01 {
		padding-top: 12vw;
	}
	body.recruit .c01 h1{
		margin-bottom: 18vw;
		font-size: 23px;
	}
	body.recruit .c01 h1 i{
		font-size: 34px;
	}
	body.recruit .c01 h1 i.s1{
		font-size: 42px;
	}
	body.recruit .c01 h1 i span {
		bottom: -2px;
		width: 100%;
		height: 1px;
	}
	body.recruit .c01 h1 i span:after,
	body.recruit .c01 h1 i span:before{
		bottom: -2px;
		width: 4px;
		height: 4px;
		transform: translateY(-10%);
	}
	body.recruit .c01 .inr{
		padding: 15px;
		padding-top: 20px;
		font-size: 16px;
		line-height: 1.6;
	}
	body.recruit .c02:after, 
	body.recruit .c02:before {
		height: 9vw;
	}
	body.recruit .c02:after {
		bottom: 0px;
		z-index: 1;
	}
	body.recruit .c02 .wrap {
		transform: translateY(20px);
		z-index: 2;
	}
	body.recruit .c02 .wrap:after,
	body.recruit .c02 .wrap:before{
		top: -64vw;
		left: 13px;
		width: 265px;
		height: 280px;
	}
	body.recruit .c02 .wrap:after{
		top: 47%;
		right: auto;
		left: 20px;
		bottom: auto;
		width: 326px;
		height: 590px;
		transform: translateY(-50%);
	}
	body.recruit .c02 {
		margin-top: -68vw;
		padding-top: 82vw;
		padding-bottom: 0;
	}
	body.recruit .c02 h2{
		display: block;
		margin-bottom: 15px;
		padding-right: 100px;
		width: 100%;
	}
	body.recruit .c02 h2:after {
		top: auto;
		right: 3px;
		bottom: 11px;
		font-size: 20px;
		transform: translateY(0) translateX(0);
	}
	body.recruit .c02 h2 span{
		display: block;
	}
	body.recruit .c02 h2 span.deco{
		margin-top: 12px;
		width: 95%;
	}
	body.recruit .c02 .inr {
		margin-bottom: 20px;
	}
	body.recruit .c02 .box{
		padding: 15px;
		padding-top: 20px;
	}
	body.recruit .c02 .box, 
	body.recruit .c02 .b3, 
	body.recruit .c02 .b2 {
        width: 100%;
    }
	body.recruit .c02 .b1:before{
		top: 17vw;
		left: 0;
		width: 100%;
		height: 44vw;
		background: url(../img/recruit/recruit-c02-01.svg) no-repeat center 0;
		background-size: auto 100%;
	}
	body.recruit .c02 .b2 h3,
	body.recruit .c02 h3{
		margin-bottom: 25px;
		padding-top: 3px;
		font-size: 20px;
	}
	body.recruit .c02 .b1 h3{
		margin-bottom: 53vw;
	}
	body.recruit .c02 .b1 .btm,
	body.recruit .c02 .b1 .upr{
		padding-left: 0;
	}
	body.recruit .c02 .upr {
		margin-bottom: 10px;
	}
	body.recruit .c02 dl{
		font-size: 18px;
	}
	body.recruit .c02 dl.s1:before{
		height: 10px;
		bottom: 2px;
	}
	body.recruit .c02 .b2 dl.s1 dt {
		font-size: 19px;
	}
	body.recruit .c02 .b2 dt {
		font-size: 16px;
	}
	body.recruit .c02 dd b {
		font-size: 31px;
	}
	body.recruit .c02 dl.s1 dd b {
		font-size: 47px;
	}
	body.recruit .c03 {
		background: url(../img/recruit/recruit-c03-bg02.svg) no-repeat center -16px;
		background-size: 180% auto;
	}
	body.recruit .c03 .upper {
		margin-bottom: 50px;
		font-size: 34px;
		white-space: nowrap;
	}
	body.recruit .c03 h2 {
		margin-bottom: 20vw;
		padding-top: 38px;
		font-size: 16px;
	}
    body.recruit .c03 h2:after {
        font-size: 60px;
    }
	body.recruit .c03 .upper b {
		font-size: 45px;
	}
	body.recruit .c03 .box{
		width: 100%;
	}
	body.recruit .c03 .box:first-child{
		margin-right: 0%;
	}
	body.recruit .c03 .bottom {
		gap: 55px 0;
	}
	body.recruit .c03 .image {
		margin-bottom: 15px;
	}
	body.recruit .c03 dt {
		font-size: 20px;
	}
	body.recruit .c04 {
		padding-top: 26vw;
		padding-bottom: 30vw;
		background: linear-gradient(180deg, rgba(255, 255, 255,0) 1%,rgba(255, 255, 255,1) 100%);
	}
	body.recruit .c04:before{
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		/* height: calc(100% - 17.4vw); */
		height: 100%;
		background: url(../img/recruit/recruit-c04-bg-sp.png) no-repeat center bottom;
		background-size: cover;
	}
	body.recruit .c04:after {
		display: none;
    }
	body.recruit .c04 h2 {
		margin-bottom: 20px;
        font-size: 48px;
    }
	body.recruit .c04 h2 i {
        font-size: 36px;
    }
	body.recruit .c04 h2 span:before {
        top: -118px;
		padding: 8px;
		padding-bottom: 13px;
        font-size: 36px;
		z-index: 2;
    }
	body.recruit .c04 h2 span:after {
		top: -62px;
		width: 30px;
		height: 15px;
	}
	body.recruit .c04 .inr {
		gap: 30px 0;
	}
	body.recruit .c04 .box{
		width: 100%;
	}
	body.recruit .c04 .box:nth-child(odd){
		transform: translateY(0);
	}
	body.recruit .c04 dl {
		padding: 10px;
	}
	body.recruit .c04 dt{
		padding-top: 10px;
	}
	body.recruit .c04 dd {
		padding-bottom: 20px;
	}
	body.recruit .c05 {
		padding-top: 0;
		padding-bottom: 40px;
	}
	body.recruit .c05 h2 {
		margin: 0 -25px;
		margin-bottom: 30px;
		padding-top: 35px;
		font-size: 30px;
		text-align: center;
	}
	body.recruit .c05 h2:after{
		top: 10px;
		width: 100%;
		font-size: 25px;
	}
	.recruit-content .upper {
		margin-bottom: 30px;
		font-size: 16px;
	}
	.recruit-content h3 {
		margin-bottom: 15px;
		font-size: 25px;
	}
	.recruit-content h3:before{
		top: 11px;
		font-size: 16px;
		transform: translateX(calc(100% + 5px));
	}
	.recruit-content dl {
		padding: 10px 0;
		padding-bottom: 15px;
	}
	.recruit-content dt{
		width: 100%;
	}
	.recruit-content dd{
		padding-left: 0;
		width: 100%;
		font-size: 16px;
	}
	body.recruit .c06 {
		padding-top: 50px;
	}
	body.recruit .c06:after {
		background: linear-gradient(180deg, rgba(43, 100, 185,1) 75%,rgba(51, 141, 244,0.4) 100%);
	}
	body.recruit .c06 .content-wrap:before{
		right: 12px;
		bottom: 3vw;
		width: 154px;
		height: 163px;
	}
	body.recruit .c06 .content-wrap:after{
		display: none;
	}
    .recruit-content h3 {
		margin-bottom: 15px;
    }
	body.recruit .c06 h3{
		margin-bottom: 35px;
        padding-bottom: 25px;
	}
	body.recruit .c06 h3:before {
		top: auto;
		right: auto;
		left: 0;
		bottom: 0;
		transform: translateX(0);
	}
	body.recruit .c06 .middle {
		margin-bottom: 22vw;
	}
	body.recruit .c06 .bottom {
		font-size: 16px;
		font-weight: normal;
	}
	body.recruit .c06 .bottom p.s1 {
		font-size: 18px;
		line-height: 1.6;
		font-weight: 500;
	}
	body.recruit .c06 .bottom p.s2 {
		font-size: 25px;
		font-weight: 500;
	}
	body.recruit .c06 .bottom span i {
		bottom: -2px;
	}
	body.recruit .c06 .bottom span i:after,
	body.recruit .c06 .bottom span i:before{
		left: -4px;
		bottom: -3px;
		width: 8px;
		height: 8px;
	}
	body.recruit .c06 .bottom span i:after{
		left: auto;
		right: -4px;
	}
}
