@charset "UTF-8";

/* common
----------------------------------------------------------- */
* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;	
}
/*フォントを読み込んでから表示*/
html {
    visibility: hidden;
}
html.wf-active,
html.loading-delay {
    visibility: visible;
}
body {
    min-width: 1250px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    color: #202020;
    letter-spacing: 0.07em;
}
img {
    image-rendering: -webkit-optimize-contrast;
}
h1, h2, h3, h4 {
    line-height: 1em;
}
a:hover {
  opacity: 0.7;
  cursor: pointer;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
/*PCではtel発信しない*/
a[href^="tel:"] {
    pointer-events: none;
}
.pc {
	display:block;
}
.sp {
	display:none;
}
.sp-inline {
	display: none;
}

/*文字色*/
.blue {
	color:#2586d6;
}
.red {
	color:#fc5151;
}
.green {
	color:#52b25b;
}
.white {
	color:#fff;
}

/*フォント*/
.cl{
	font-family: corporate-logo-ver2, sans-serif;
}
.number {
	font-family: corporate-logo-ver2, sans-serif;
	font-size:44px;
	color:#fc5151;
	font-weight: bold;
	text-align: center;
	margin-bottom: 20px;
}

/*文字縁取り*/
.text-line {
	text-shadow:1px 1px 0 #202020, -1px -1px 0 #202020,
              -1px 1px 0 #202020, 1px -1px 0 #202020,
              0px 1px 0 #202020,  0-1px 0 #202020,
              -1px 0 0 #202020, 1px 0 0 #202020;
}
.accent-dot {
	position: relative;
}
.accent-dot::after {
    background: #fc5151;
    content: "";
    display: block;
    border-radius: 20px;
    position: absolute;
}

/*見出し文字サイズ変更*/
.size25 {
	font-size:25px;
}
.size27 {
	font-size:27px;
}
.size32 {
	font-size:32px;
}
.size34 {
	font-size:34px;
}
.size36 {
	font-size:36px;
}
.size42 {
	font-size:42px;
}
.size48 {
	font-size:48px;
}
.size50 {
	font-size:50px;
}
.size54 {
	font-size:54px;
}
.size70 {
	font-size:70px;
}

/*下線*/
.yellow-under {
    display: inline-block;
	background:linear-gradient(transparent 60%, #ffeea9 60%);
	padding:0 0 0 8px;
	line-height: 1.4em;	
}
.yellow-under-text {
	background:linear-gradient(transparent 60%, #ffeea9 60%);
	font-weight: bold;
}
.red-under {
    margin-bottom: 26px;
    display: inline-block;
	background:linear-gradient(transparent 60%, rgba(252,81,81,0.3) 60%);
	padding:0 0 0 8px;
	line-height: 1.4em;
}

/*セクション背景*/
.green-bg {
	background-image: url("../images_renewal/common/green.png");
}
.gray-bg {
	background:#f7f7f7;
}
.dot-pink-bg {
	background-image: url("../images_renewal/common/dot-pink.png");
}
.graph-paper-bg {
	background-image: url("../images_renewal/common/graph-paper.png");
}

/*flex*/
/*flex_PCのみ*/
.flex {
	display:-webkit-box;
  	display:-ms-flexbox;
	display:flex;
}
/*flex_PC_スマホ両方*/
.flex_all {
	display:-webkit-box;
  	display:-ms-flexbox;
	display:flex;
}
/*flex_スマホで上下reverce*/
.flex_col_rev {
	display:-webkit-box;
  	display:-ms-flexbox;
	display:flex;
}
/*flex_wrap*/
.f_wrap {
	-webkit-flex-wrap:wrap;
	-ms-flex-wrap:wrap;
	flex-wrap:wrap;
}
.f_nowrap {
	-webkit-flex-wrap:nowrap;
	-ms-flex-wrap:nowrap;
	flex-wrap:nowrap;
}
/*justify-content*/
.j_center {
	-webkit-justify-content:center;
	-ms-flex-pack:center;
	justify-content:center;
}
.j_between {
	-webkit-justify-content:space-between;
	-ms-flex-pack:justify;
	justify-content:space-between;
}
.j_around {
	-webkit-justify-content:space-around;
	-ms-flex-pack:distribute;
	justify-content:space-around;
}
.j_end {
	-webkit-justify-content:flex-end;
	-ms-flex-pack:end;
	justify-content:flex-end;
}
/*align-items*/
.i_center {
	-webkit-align-items:center;
	-ms-flex-align:center;
	align-items:center;
}
.i_start {
	-webkit-box-align: start;
	-ms-flex-align:start;
	align-items:flex-start;
}

.i_end {
	-webkit-align-items:flex-end;
	-ms-flex-align:end;
	align-items: flex-end;
}
/*リスト横並び*/
dl {
	width:100%;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	flex-wrap: wrap;
	-webkit-flex-wrap:wrap;
	-ms-flex-wrap:wrap;
	flex-wrap:wrap;
	-webkit-align-items:center;
	-ms-flex-align:center;
	align-items:center;
}
/*margin*/
.mgr-10 {
	margin-right: 10px;	
}
.mgr-1em {
	margin-right:1em;
}
.mgr-2em {
	margin-right:2em;
}

/*text*/
.bold {
	font-weight: 700;
}
.text {
	letter-spacing: 0.05em;
	line-height: 1.7em;
}

/*inner*/
.inner {
    max-width: 1210px;
    margin: 0 auto;
    padding: 0 25px;
}

/*title*/
.title-a {
    font-size: 26px;
    font-weight: bold;
    letter-spacing: 0.1em;
    margin-bottom: 60px;
    text-align: center;
}
.title_wrap {
	text-align: center;
	position: relative;
}
/*見出し装飾*/
.red-decoration {
	position: relative;
}
.red-decoration::before {
	content:"";
	background-image: url("../images_renewal/common/accent-red.png");
	background-size: contain;
	display: block;
	position: absolute;
	top:-60px;
   	left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
	width:115px;
	height:48px;
}
/*ボタン（共通）*/
.btn_flex .btn:first-child a {
	margin-right:40px;
}

.btn a {
    width:400px;
	text-align: center;
	margin:0 auto;
    font-size: 20px;
    line-height: 60px;
    padding-right: 1em;
    display: block;
    border: solid 1px #202020;
    border-radius: 50px;
    position: relative;
    letter-spacing: 0.1em;
	color:#fff;
	font-weight: bold;
}

.btn a::after {
    content: "";
    display: block;
    background: url("../images_renewal/common/btn-arrow.png");
    background-position: center;
    background-size: contain;
    position: absolute;
    background-repeat: no-repeat;
    top: 0.9em;
    right: 2.1em;
    width: 25px;
    height: 25px;
    image-rendering: -webkit-optimize-contrast;
}
.btn.yellow a::after {
    content: "";
    display: block;
    background: url("../images_renewal/common/btn-arrow-2.png");
    background-position: center;
    background-size: contain;
    position: absolute;
    background-repeat: no-repeat;
    top: 0.9em;
    right: 2.1em;
    width: 25px;
    height: 25px;
    image-rendering: -webkit-optimize-contrast;
}
/*ボタンの色替え*/
.red-btn a {
    background: #fc5151;	
}
.green-btn a {
    background: #52b25b;		
}
.line-img a {
	position: relative;
	padding-left: 2.4em;
}

.btn_wrap1.web a {
    background:#fc5151;
}
.red-btn.yellow a {
    background: #ffe153;
    color:#202020;
}

.line-img a::before {
    content: "";
    background: url("../images_renewal/common/line-img.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 75px;
    height: 118px;
    display: block;
    position: absolute;
    top: -25px;
    left: 35px;
}
/* header
----------------------------------------------------------- */
header {
    width: 100%;
    height: 120px;
    position: relative;
    z-index: 1;
}
.header {
    padding: 20px 0;
}
.btn_wrap1.tel-btn {
	position: relative;
}
.btn_wrap1.tel-btn a {
	background:#3481c1;
	padding:0 1.5em 0 2.5em;
}
.btn_wrap1.tel-btn img {
    width: 18px;
    height: 24px;
    position: absolute;
    top: 9px;
    left: 19px;
}
.logo img {
	max-width:194px;
}
.btn_wrap2 a {
	background: #fc5151;
    text-align: center;
    height: 38px;
    padding: 0 1.5em;
	border-radius: 50px;
	display: block;
	line-height: 39px;
	color:#fff;
	position: relative;
}
.header-right-upper {
	margin-bottom: 1.25em;
}
.header-right-upper ul {
	margin-right: 30px;
}
.header-right-upper ul li a {
	font-size:14px;
	color:#7a7a7a;
}
.btn_wrap1 a {
	padding :0 1.5em;
	height:38px;
	line-height: 39px;
    display: block;
    background: #51b249;
    border-radius: 30px;
    text-align: center;
    position: relative;
    text-align: center;
    color: #fff;
    letter-spacing: 0.1em;
	transition: all 0.5s;
	margin-right: 20px;
}

/* header change
----------------------------------------------------------- */
.header_change {
    display: none;
    position: fixed;
    top: 0;
    padding: 10px 20px 22px 20px;
    font-size: 15px;
    width: 100%;
    z-index: 100;
    background-color: rgba(255,255,255,0.98);
}
.header_change .logo img {
    max-width: 150px;
    padding-top: 13px;
}
.header_change .header{
    padding:0;
	margin:0;
}
.header_change .header-right-upper {
	margin-bottom:10px;
	
}
.header_change .btn_wrap2 a {
    height: 36px;
    line-height: 35px;
}
.header_change .btn_wrap1 a {
    height: 36px;
    line-height: 35px;
}
/*fadeDownクラスが付与された後のボタンの出現アニメーション設定*/
.fadeDown {
    animation-name: fadeDownAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
    display: block;
}
@keyframes fadeDownAnime{
  from {
    opacity: 0;
  	transform: translateY(-100px);
  }
  to {
    opacity: 1;
  	transform: translateY(0);
  }
}
/*.doneクラスがついたヘッダー*/
.header_change.dnone {
  opacity: 0;
}

/* nav
----------------------------------------------------------- */
.nav_link a,.current a {
	position: relative;
	display: inline-block;
	opacity: 1;
	letter-spacing: 0.1em;
}
.nav_link {
    margin-right: 2em;
}
.nav_link:last-child {
	margin-right:0;
}
.nav_link a::after {
	position: absolute;
	bottom: -12px;
	left: 0;
	content: '';
	width: 100%;
	height: 3px;
	background: #ffeea9;
	transform: scale(0, 1);
	transform-origin: center top;
	transition: transform .3s;
	padding:0;
}
.nav_link :hover::after {
 	transform: scale(1, 1);
}
.current a::after {
	position: absolute;
	bottom: -10px;
	left: 0;
	content: '';
	width: 100%;
	height: 3px;
	background: #a3c083;
	transform: scale(1, 1);
	transform-origin: center top;
	transition: transform .3s;
	padding:0;
}
/* nayami
----------------------------------------------------------- */
.nayami {
	padding: 70px 0 80px 0;
    background: #fff;
}
.nayami .inner {
	position: relative;
}
.nayami .inner::after {
	content:"";
	display: block;
	border-top: 50px solid #fff;
	border-right: 50px solid transparent;
	border-left: 50px solid transparent;
	position:absolute;
	bottom:-168px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	z-index: 20;
}
.nayami-content {
	position: relative;
}

.fukidashi-box:first-child .fukidashi-title::after {
	content:"";
	display:block;
	background-image: url("../images_renewal/common/deco-nayami.png");
	background-size: cover;
    position: absolute;	
	width:35px;
	height:35px;
	right:31px;
	top:34px;
	z-index: 20;
}
.fukidashi-box:last-child .fukidashi-title::after {
	content:"";
	display:block;
	background-image: url("../images_renewal/common/deco-sweat.png");
	background-size: cover;
    position: absolute;	
	width:27px;
	height:31px;
	right:26px;
	top:75px;
	z-index: 20;
}
.fukidashi-box::before {
	content:"";
	display:block;
	border:solid 1px #202020;
	width:281px;
	height:188px;
	border-radius: 15px;
	z-index: 10;
	position: absolute;
	border-radius: 15px;
	top:10px;
	left:-10px;
}
.fukidashi-box {
    margin-right: 40px;
    text-align: center;
    position: relative;
    border-radius: 15px;
    width: 281px;
    height: 188px;
    background: #d2e7f9;
    padding: 44px 0;
    padding-right: 10px;
}
.fukidashi-box:nth-child(even) {
	background:#e1f0e0;
	margin-top:20px;
	
}
.fukidashi-box:last-child {
	margin-right: 0;
}
.fukidashi-title {
	font-size:22px;
	color:#3481c1;
	margin-bottom: 1em;
}
.fukidashi-box:nth-child(even) .fukidashi-title {
	color:#52b25b;
}
.fukidashi-text {
	line-height:1.7em;
	font-size:18px;
}

/* freelans　career consultant
----------------------------------------------------------- */
.freelans {
    padding: 110px 0 70px 0;
}
.freelans .title-a {
	margin-bottom:50px;
}
.freelans .cl {
	font-size:44px;
	position: relative;
}
.freelans .cl::before {
    content: "";
    display: block;
    background-image: url("../images_renewal/common/accent-yellow.png");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    width: 80px;
    height: 58px;
    top: -48px;
    left: -67px;
}
.freelans ul {
	width:980px;
	margin: 0 auto;
}
.career-box {
    width: 778px;
    height: 224px;
    margin-left: 110px;
}
.career-box::after {
    width: 778px;
    height: 224px;
    top: -10px;
    left: -10px;
}
.freelans .accent-dot::after {
	width:7px;
	height:7px;
	top:-8px;
	left:25%;
	
}
/*ふきだし*/
.fukidashi-red {
    background-image: url("../images_renewal/common/fukidashi-red.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 231px;
    height: 104px;
    font-size: 16px;
    color: #fff;
    line-height: 1.8em;
    text-align: center;
    padding: 17px 0;
    transform: rotate(-8deg);
    position: absolute;
    z-index: 10;
}
.career-box-wrap {
	position: relative;
}
.career-box {
	background:#fff;
	padding:40px 50px;
	font-size:18px;
	line-height: 1.8em;
	position: relative;
}
.career-box::after {
	content:"";
	display: block;
	position: absolute;
	border:solid 1px #fc5151;
}
.career-consaltant {
    font-size: 15px;
    text-align: center;
    line-height: 1.5em;
    width: 261px;
    margin: 28px 57px 0 auto;
}
.career-consaltant img {
    width: 240px;
    height: auto;
    position: absolute;
    top: -84px;
    right: 77px;
    z-index: 10;
}

/* job-offer
----------------------------------------------------------- */
.job-offer {
    padding: 90px 0 90px 0;
}
.job-name {
	font-size:24px;
	text-align: center;
	position: relative;
	margin-bottom: 2.4em;
}
.job-name::after {
	content:"";
	display:block;
	background:#52b25b;
	border-radius: 10px;
	width:5em;
	height:5px;
	position: absolute;
	top: 2em;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.job-box {
    width: calc(1100px/3);
    height: auto;
    border: solid 1px #80c97b;
    padding: 20px;
    background: #fff;
    margin: 0 30px 30px 0;
}
.job-box:nth-child(3n) {
	margin-right: 0;
}
.job-category {
	font-size:14px;
	background:#52b25b;
	color:#fff;
	font-weight: bold;
	text-align: center;
	padding:0.8em 1.2em;
	border-radius: 20px;
	display: inline-block;
	margin-bottom: 0.8em;
}
.job-title {
    line-height: 1.5em;
    letter-spacing: 0.05em;
    margin-bottom: 0.5em;
}
#tab01_content .job-title {
/*    height: 4.5em;*/
}
.job-content {
	line-height: 1.5em;
	margin-bottom: 0.8em;
	height: auto;
}
.skill .green {
    font-weight: bold;
    width: 7em;
}
.skill {
    line-height: 1.5em;
    font-size: 15px;
    height: 3.5em;
}
.skill-content {
    width: calc(100% - 7em);
}
.income {
    text-align: center;
    background: #ffeea9;
    border-radius: 5px;
    padding: 0.5em;
    font-size: 18px;
    line-height: 1.5em;
}

/* slider ------------------------------------------------- */
/* スライダーの初期設定 */
.slide {
    width: auto;
	display:-webkit-box;
  	display:-ms-flexbox;
	display:flex;
	-webkit-flex-wrap:wrap;
	-ms-flex-wrap:wrap;
	flex-wrap:wrap;
    height: auto;
}
/*タブ切り替え全体のスタイル*/
.tabs {
	margin-top: 50px;
	width: 100%;
	margin: 0 auto;
}
/*タブのスタイル*/
.tab_item {
	width: 270px;
	height: 80px;
	border: 1px solid #52b25b;
	margin-right: 26px;
	line-height: 80px;
	font-size: 20px;
	text-align: center;
	color: #52b25b;
	background:#fff;
	display: block;
	float: left;
	font-weight: bold;
	transition: all 0.2s ease;
	cursor: pointer;
}
.tab4 {
	margin-right: 0;
}
.tab_item:hover {
	opacity: 0.75;
}
.slick-prev:before, .slick-next:before {
    opacity: 1;
}
/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  	display: none;
}
/*タブ切り替えの中身のスタイル*/
.tab_content {
	display: none;
	padding: 70px 0;
	clear: both;
	overflow: hidden;
}
/*選択されているタブのコンテンツのみを表示*/
#tab01:checked ~ #tab01_content,
#tab02:checked ~ #tab02_content,
#tab03:checked ~ #tab03_content,
#tab04:checked ~ #tab04_content {
  	display: block;
}
/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
    background-color: #52b25b;
    color: #fff;
    border: solid 1px #202020;
}
.tab_item.last {
	margin-right:0;
}
/* feature/merit
----------------------------------------------------------- */
.feature {
    padding: 90px 0 100px 0;
}
.feature .title-a .cl {
    font-size: 78px;
    position: relative;
	padding: 0 0.1em;
}
.content-box img {
	height:117px;
}
.feature .yellow-under {
	margin-bottom: 48px;
}
.feature .title-a {
	margin-bottom:70px;
}
.feature-1 {
	position:absolute;
	top:-34px;
	width:173px;
	left:50px;
}
.feature-2 {
	position:absolute;
	top:-34px;
	width:170px;
	right:50px;
}
.content-title {
	line-height: 1.5em;
	font-size:20px;
	text-align: center;
	margin-bottom: 20px;
}
.content-title .red {
	display: block;
	font-size:16px;
	margin-bottom: 5px;
}
.content-box {
	width:370px;
	padding:30px 30px;
	border:solid 1px #fc5151;
	background:#fff;
	border-radius: 15px;
	line-height: 1.5em;
}
.icon-img {
	text-align: center;
	margin-bottom: 20px;
}


/* voice
----------------------------------------------------------- */
.success {
    padding: 90px 0 90px 0;
}
.age {
	text-align: center;
}
.success  {
	position: relative;
}
.success .title_wrap::after  {
	content:"";
	display:block;
	background-image: url("../images_renewal/common/icon-flag2.png");
	background-size: contain;
	width:74px;
	height:75px;
	position: absolute;
	top:-18px;
	right:190px;
}
.age {
	margin-bottom: 0.5em;
}
.carrer-change {
	line-height: 2em;
	position: relative;
	border-bottom: solid 4px #80c97b;
	padding-bottom: 0.5em;
	margin-bottom: 1em;
}
.voice-content .content-box {
	border-color: #80c97b;
    margin-right: 25px;
}
.voice-content .content-box:last-child {
    margin-right: 0;
}

.voice-content .content-box img {
	height:134px;
}
.text-box {
	background:#fff6d3;
	border-radius: 5px;
	text-align: center;
	padding:0.8em;
	margin-bottom: 0.8em;
}
.text-box-title {
	margin-bottom:0.5em;
}

/* experience
----------------------------------------------------------- */
.experience {
    padding: 150px 0 90px 0;
	position: relative;
}
.experience::before {
	content:"";
	display:block;
	position: absolute;
}
.experience .title-a {
	line-height: 1.7em;
}
.experience .title-wrap {
	position: relative;
}
.experience-1 {
    position: absolute;
    bottom: -100px;
    left: 140px;
    width: 101px;
}
.experience-2 {
    position: absolute;
    bottom: -100px;
    right: 120px;
    width: 130px;
}
.occupation-title {
	font-size:18px;
	text-align: center;
	position: relative;
	margin-bottom: 50px;
}
.occupation-title::after {
	content:"";
	display:block;
	width:80px;
	height:4px;
	position: absolute;
	bottom:-20px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	border-radius: 10px;
}
.occupation {
	margin-bottom: 60px;
}
.occupation:last-child {
	margin-bottom: 0;
}
.occupation:first-child .occupation-title::after {
	background:#7babdb;
}
.occupation:nth-child(2) .occupation-title::after {
	background:#ffe153;
}
.occupation:nth-child(3) .occupation-title::after {
	background:#80c97b;
}
.occupation ul li {
	padding:0.8em 2em;
	border-radius: 30px;
	text-align: center;
	margin:10px;
}
.occupation:first-child ul li {
	background:#e0eaf5;
}
.occupation:nth-child(2) ul li {
	background:#ffeea9;
}
.occupation:nth-child(3) ul li {
	background:#bcdeba;
}

/* blog
----------------------------------------------------------- */
.blog {
	padding:80px 0;
}
.blog-content {
    border: solid 1px #80c97b;
	padding: 80px;
	width:100%;
	border-radius: 30px;
	background:#fff;
}
.eyecatch img {
	width:420px;
    height: 254px;
    object-fit: contain;
	margin-bottom:0.5em;
}
.blog-left {
	margin-right:50px;
}
.date {
	font-size:15px;
	color:#a3a3a3;
	margin-bottom: 0.5em;
}
.blog-right .blog_list {
    border-bottom: solid 1px #d8d8d8;
    padding-bottom: 20px;
    margin-bottom: 19px;
}
.blog-right .blog-list:first-child {
    padding-top: 18px;
    border-top: solid 1px #d8d8d8;
}
.blog-list:last-child {
	margin-bottom: 0;
}
.blog-title {
	line-height:1.5em;
	height: 3em;
	overflow: hidden;
}
.blog .title-a {
    position: relative;
    font-size: 32px;
}
.blog .title-a::after {
	content:"";
	display:block;
	background-image:url("../images_renewal/common/engineer-2.png");
	background-size: contain;
	background-repeat: no-repeat;
	width:209px;
	height:307px;
	position:absolute;
	bottom:-165px;
	right:-30px;
}
/*ブログ３点表示*/
/*一覧タイトル*/
.blog-title {
	text-align: left;
	line-height: 1.5em;
    letter-spacing: 0.1em;
	height:auto;
}
.title_wrap .cont{
	line-height: 1.5em;
	overflow: hidden;
	width: 100%;
}
.title_wrap .height{
	height: 3em;
}
.blog-content .blog-right .title_wrap {
		width:480px;
	}
.blog-content .blog-left .title_wrap  {
		width:430px;
}
.blog-right .date {
    margin-bottom: 1em;
}


/* footer-contact
----------------------------------------------------------- */
.footer-contact {
	padding:80px 0 50px 0;
}
.footer-contact .title-a  {
	line-height: 2em;
}
.message {
    text-align: center;
    font-size: 22px;
    margin-bottom: 30px;
}
.footer-contact .btn:first-child {
	margin-bottom: 34px;
}

.footer-contact .inner {
	position: relative;
}

.title-a.contact-title {
	margin-bottom: 28px;
	font-size: 24px;
}
.fukidashi-line {
	position:relative;
}
.fukidashi-line::before {
    content: "";
    display: block;
    background: #fc5151;
    width: 34px;
    height: 5px;
    transform: rotate(54deg);
    border-radius: 1rem;
    position: absolute;
    top: 14px;
    left: 339px;
}
.fukidashi-line::after {
    content: "";
    display: block;
    background: #fc5151;
    width: 34px;
    height: 5px;
    transform: rotate(-234deg);
    border-radius: 1rem;
    position: absolute;
    top: 14px;
    right: 348px;
}
.contact-1 {
	position:absolute;
	left:132px;
	bottom:-50px;
	width:200px;
}
.contact-2 {
	position:absolute;
	right:144px;
	bottom:-50px;
	width:200px
}
.footer-contact .btn a {
    width: 360px;
    font-size: 18px;
    line-height: 54px;
    padding-right: 1em;
}
.footer-contact .line-img a::before {
    width: 59px;
    height: 96px;
    top: -14px;
    left: 35px;
}

/* footer
----------------------------------------------------------- */
.footer {
	padding:100px 0 20px 0;
}

.footer_cont {
}
.footer-logo {
	text-align: center;
	margin-bottom: 80px;
}
.footer-logo img {
	width:280px;
}
.sitemap {
	font-weight: bold;
}
.sitemap_list {
    margin-bottom: 0.75em;
    font-size: 14px;
    position: relative;
    padding-left: 3em;
}
.sitemap_list::before {
    content: "";
    display: inline-block;
    background-image: url("../images_renewal/common/arrow-footer.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 15px;
    height: 15px;
    position: absolute;
    top: 1px;
    left: 1.5em;
    image-rendering: -webkit-optimize-contrast;
}
.copylight {
    font-size: 12px;
    text-align: center;
    padding: 1.5em 0;
    color:#fff;
	background:#202020;
}

/*トップへ戻るボタン*/
.top {
    position: fixed;
    right: 20px;
    bottom: 30px;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 10;
}
.top a {
    width: 82px;
    height: 82px;
    display: block;
    position: relative;
    background: #fff;
    border: solid 1px #d1d4d5;
    border-radius: 4em;
    font-size: 16px;
    text-align: center;
    padding: 50px 0 0 4px;
}
.top a img {
    width: 30px;
    height: 31px;
    position: absolute;
    right: 29%;
    top: 18%;
    image-rendering: -webkit-optimize-contrast;
}
.top a::hover {
    opacity: 1;
}
/*クラス付与で表示する*/
.active {
	opacity: 1;
	visibility: visible;
}

/**************************************************************************

 　　768px以下に適用されるCSS（スマートフォン）

**************************************************************************/

@media screen and (max-width: 769px) {
	
/* common
----------------------------------------------------------- */
	
body {
	min-width: inherit;
	font-size: 3.8vw;
	letter-spacing: 0.05em;
}

.inner {
	max-width:90vw;
	padding: 0;
}

a[href^="tel:"] {
	pointer-events: auto;
}

.sp {
	display:block;
}	
.sp-inline {
	display: inline-block;
}
.pc {
	display:none;
}
	
/*セクション背景*/
.green-bg {
	background-image: url("../images_renewal/common/green.png");
}
.gray-bg {
	background:#f7f7f7;
}
.dot-pink-bg {
/*	background-image: url("../images_renewal/common/dot-pink.png");*/
	background-size: cover
}
.graph-paper-bg {
	background-image: url("../images_renewal/common/graph-paper.png");
}
	
.red-under {
    margin-bottom: 5vw;
    padding: 0 0 0 2vw;
}
.size32 {
    font-size: 5vw;
}
.size42 {
    font-size: 6vw;
}
.size48 {
    font-size: 8vw;
}
.size50 {
    font-size: 8vw;
}	
.size54 {
    font-size: 8vw;
}
.size70 {
    font-size: 11vw;
}
a:hover {
  opacity: 1;
  /* cursor: none; */
  -webkit-transition: none;
  transition: none;
}
	
/* flex解除
----------------------------------------------------------- */			
	.flex {
	display:block;
}
	
/* スマホのみcolumn-reverse
----------------------------------------------------------- */			
.flex_col_rev {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;		
  	-webkit-box-orient: vertical;
  	-webkit-box-direction: reverse;
  	-ms-flex-direction: column-reverse;
  	flex-direction: column-reverse;
}

dl {
    display: block;
}
	
/* header
----------------------------------------------------------- */
header {
    width: 100%;
    background: #fff;
    z-index: 100;
    position: fixed;
    height: 15vw;
}
.logo img {
	max-width:30vw;
}
.header_right .header-right-upper {
	display:none;
}
.header {
    padding: 4vw 5vw;
    min-width: 100%;
    position: fixed;
    z-index: 100;
    margin: 0;
}
.btn_wrap1.tel-btn img {
    width: 5vw;
    height: auto;
    position: absolute;
    top: 2.2vw;
    left: 19vw;
}

/* ナビゲーション 
----------------------------------------------------------- */	
.btn_wrap1 a, .btn_wrap2 a {
    width: 80vw;
    height: 11vw;
    line-height: 10vw;
    margin: 0 auto;
    border: solid 1px #202020;
}	
.btn_wrap1 a {
	margin-bottom: 3vw;
}

/* ハンバーガーメニュ 
----------------------------------------------------------- */	
.navbtn {
    z-index: 500;
    position: fixed;
    right: 5vw;
    top: 3vw;
}
.navbtn:hover{ cursor:pointer; }
.navbtn span {
	position: absolute;
	right: 0;
	width: 8.75vw;
	height: 2px;
	background: #202020;
}
.navbtn span:nth-child(1){top:2vw; transition:all 0.2s;}
.navbtn span:nth-child(2){top:4.75vw; transition:all 0.2s;}
.navbtn span:nth-child(3){top:7.5vw; transition:all 0.2s;}
.navbtn.menu span:nth-child(2){ width:0%; background:#202020; }
.navbtn.menu span:nth-child(1){ top:4.8vw; transform:rotate(45deg); background:#202020; }
.navbtn.menu span:nth-child(3){ top:4.8vw; transform:rotate(-45deg); background:#202020; }
	
/* ハンバーガーメニュ中身
----------------------------------------------------------- */		
/*ホバー時の下線を表示しない*/
.nav_link a::after {
   display: none;
}	
nav {
    background: rgba(255,255,255,0.9);
    position: fixed;
    width: 100%;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
    height: 100%;
    left: -100%;
    z-index: 300;
    top: 0;
    text-align: center;
    margin-top: 15vw;
    overflow-y: scroll;
}
.nav {
    margin-bottom: 5vw;
}	
.nav_text {
	font-size: 3.5vw;
}
.nav_inner {
	padding:28vw 0 10vw 0;
	max-width:100vw;
	margin:0 auto;
}
.nav_link a {
    position: relative;
    display: inline-block;
    opacity: 1;
    padding: 1em 0;
    width: 100%;
    font-size: 4vw;
}	
.nav_link {
     margin-right: 0; 
}	
.current a::after {
    display: none;
}
	
/*見出し文字サイズ変更*/
.size25 {
	font-size:4vw;
}
.size27 {
	font-size:4vw;
}
.size36 {
	font-size:6vw;
}

/*title*/
.title-a {
    font-size: 5vw;
    margin-bottom: 0.5em;
    display: inline;
    line-height: 2em;
}
.btn_flex .btn:first-child a {
    margin-right: 0;
    margin: 0 auto 5vw auto;
}	
.btn_flex .btn:nth-child(2) a {
    padding: 4vw 4vw 4vw 11vw;
}
.btn a {
    padding: 4vw;
	width:70vw;
	font-size:4vw;
    line-height: 1em;
    padding-right: 8vw;
    border-radius: 20vw;
    letter-spacing: 0.1em;
}
.btn a::after {
    top: 4.2vw;
    right: 5.8vw;
    width: 4vw;
    height: 4vw;
}
.btn a:hover {
    background: #f2f5f8;
    border: solid 1px #0e5da8;
    color: #232323;
}	
.line-img a::before {
    content: "";
    background: url("../images_renewal/common/line-img.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 20vw;
    height: 18vw;
    display: block;
    position: absolute;
    top: -3vw;
    left: 6vw;
}
	
/* section共通
----------------------------------------------------------- */
.title_wrap {
    margin-bottom: 7vw;
}
.green-btn a {
    background: #52b25b;
}
	
/* nayami
----------------------------------------------------------- */
.nayami {
    padding: 26vw 0 5vw 0;
}
.nayami .inner {
	position: relative;
}
.nayami .inner::after {
    border-top: 10vw solid #fff;
    border-right: 10vw solid transparent;
    border-left: 10vw solid transparent;
    bottom: -14vw;
}
.fukidashi-box:first-child .fukidashi-title::after {
    width: 7vw;
    height: 7vw;
    right: 4vw;
    top: 5.4vw;
}
.fukidashi-box:last-child .fukidashi-title::after {
    width: 7vw;
    height: 8vw;
    right: 4vw;
    top: 6vw;
    z-index: 20;
}	
.fukidashi-box::before {
	width: 42vw;
    height: 29vw;
    border-radius: 3vw;
    top: 1.4vw;
    left: -1.4vw;
}
.fukidashi-box {
    margin-right: 4.4vw;
	margin-bottom: 5vw;
    border-radius: 3vw;
    width: 42vw;
    height: 29vw;
    padding: 7vw 0;
    padding-right: 2vw;
}	
.fukidashi-box:nth-child(2) {
	margin-right: 0;
	margin-top:0;
}
.fukidashi-box:nth-child(even) {
	margin-top:0;
}
.fukidashi-title {
	font-size:4.2vw;
	color:#3481c1;
	margin-bottom: 0.7em;
}
.fukidashi-box:nth-child(even) .fukidashi-title {
	color:#52b25b;
}
.fukidashi-text {
	line-height:1.7em;
	font-size:3.2vw;
}
	
/* freelans　career consultant
----------------------------------------------------------- */
.freelans {
    padding: 15vw 0 3.8vw 0;
}
.freelans .title-a {
	margin-bottom:70px;
}
.freelans .cl {
	font-size:8vw;
}
.freelans .cl::before {
    width: 14vw;
    height: 14vw;
    top: -8vw;
    left: -9vw;
}
.career-box strong {
	display: inline-block;
	padding-top:0.8em;

}
.career-box {
    width: 100%;
    height: auto;
    margin-top: 24vw;
    margin-left: 0;
    background: #fff;
    padding: 5vw 6vw 5vw 6.4vw;
    font-size: 3.8vw;
    line-height: 1.8em;
    position: relative;
}
.career-box::after {
    width: 100%;
    height: 49vw;
    top: -2vw;
    left: -2vw;
}
.freelans .accent-dot::after {
    width: 1.4vw;
    height: 1.4vw;
    top: -1.4vw;
    left: 1.4vw;
}	
.fukidashi-red {
    width: 51vw;
    height: auto;
    font-size: 4vw;
    line-height: 1.5em;
    padding: 3vw 0 6vw 0;
    transform: rotate(-8deg);
    top: -18vw;
    left: 0;
}
.career-consaltant {
    font-size: 3vw;
    text-align: right;
    width: 100%;
    margin: 0;
    padding: 4vw 34vw 0 0;
}
.career-consaltant img {
    width: 34vw;
    height: auto;
    top: 23vw;
    right: 0;
}

.btn.yellow a::after {
    top: 5vw;
    right: 3vw;
}
    

/* 求人
----------------------------------------------------------- */
.job-offer {
    padding: 8vw 0 14vw 0;
}
.job-name {
    font-size: 4.4vw;
    text-align: center;
    position: relative;
    margin-bottom: 2.4em;
}
.job-name::after {
    border-radius: 5vw;
    width: 5em;
    height: 1vw;
    top: 7vw;
}
.job-category {
    font-size: 3.8vw;
    padding: 2vw 4vw;
}
.job-box {
    width: 77vw;
    height: auto;
    border: solid 1px #80c97b;
    padding: 5vw 7vw;
    background: #fff;
    margin: 0 5vw 0 0;
}
.job-category {
    font-size: 3.2vw;
    padding: 2vw 4vw;
    letter-spacing: 0;
    line-height: 1.3em;
    border-radius: 100px;
}
.job-content {
    line-height: 1.5em;
    margin-bottom: 0.5em;
    height: 7.5em;
}
.income {
    border-radius: 1vw;
    padding: 2vw;
    font-size: 4.4vw;
    line-height: 1.5em;
}
.job-offer .f_wrap {
  	-ms-flex-wrap: nowrap;
  	flex-wrap: nowrap;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	}
 
.skill {
    font-size: 3.4vw;
    margin-bottom: 2em;
    margin-bottom: 0.7em;
    height:auto;
}
  
.tab2 {
	margin-right: 0;
} 
    
/*slick	*/
.slick-prev:before, .slick-next:before {
    font-size: 8vw;
    color: #52b25b;
}
.slick-slide {
    position: relative;
    overflow: hidden;
    margin: 0 2.5vw 0 2.5vw;
}
.job-box:nth-child(3n) {
    margin-right: 2.5vw;
}
.slick-next {
  right: 3vw;
}
.slick-prev {
    left: 0vw;
    z-index: 1;
}
.slick-prev.slick-disabled:before, .slick-next.slick-disabled:before {
	display: none;
}
.slick-dotted.slick-slider {
    margin-bottom: 0vw;
}
.slick-dots {
    bottom: inherit;
}
.slick-dots li.slick-active button:before {
    color: #52b25b;
}	
.slick-dots li button:before {
    color:#52b25b;
}
/*
.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
    color: transparent;
}
*/
.btn_flex.flex.j_center.inner {
    margin-top: 5vw;
}
#tab01_content .job-title {
    height: auto;
}
.job-title {
    height: auto;
}
.job-content {
    height: auto;
}

/* 特徴・メリット
----------------------------------------------------------- */
.feature {
    padding: 8vw 0 8vw 0;
}
.feature .title_wrap {
    margin-bottom: 8vw;
}
.feature .title-a .cl {
    font-size: 12vw;
    margin-right: 1vw;
}

.content-box img {
	height:23vw;
}
.feature .yellow-under {
    margin-bottom: 5vw;
}
.feature .title-a {
    margin-bottom: 5vw;
}
.feature-1 {
    top: 12vw;
    width: 21vw;
    left: -1vw;
	z-index: 1;
}
.feature-2 {
    top: 12vw;
    width: 21vw;
    right: 3vw;
	z-index: 1;
}
.content-title {
    line-height: 1.5em;
    font-size: 4.4vw;
    margin-bottom: 4vw;
}
.content-title .red {
	font-size:3.8vw;
	margin-bottom: 2vw;
}
.content-box {
    width: 100%;
    height: auto;
    padding: 5vw;
    border-radius: 4vw;
    line-height: 1.4em;
	position: relative;
    margin: 0 auto 5vw auto;
}	
.content-box img {
    height: 20vw;
}
.success .content-box {
    width: 77vw;
    height: auto;
    padding: 5vw 7vw;
    border-radius: 4vw;
    line-height: 1.4em;
    margin: 0 10vw;
}
.icon-img {
	margin-bottom: 4vw;
}

/* 事例
----------------------------------------------------------- */
.success {
    padding: 10vw 0 18vw 0;
}
.age {
	text-align: center;
}
.success  {
	position: relative;
}
.success .title_wrap::after {
    content: "";
    display: block;
    background-image: url("../images_renewal/common/icon-flag2.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 15vw;
    height: 15vw;
    position: absolute;
    top: 4vw;
    right: 0;
}
.age {
	margin-bottom: 0.5em;
}
.carrer-change {
    line-height: 2em;
    position: relative;
    border-bottom: solid 4px #80c97b;
    padding-bottom: 0.5em;
    margin-bottom: 1em;
}
.voice-content .content-box {
	border-color: #80c97b;
}
.voice-content .content-box img {
    height: 24vw;
    display: inline-block;
}
.text-box {
	background:#fff6d3;
	border-radius: 5px;
	text-align: center;
	padding:0.8em;
	margin-bottom: 0.8em;
}
.text-box-title {
	margin-bottom:0.5em;
}
.slider-2 .slick-slide {
    width: 70vw;
    height: auto;
    margin: 0px 2vw;
    position: relative;
    overflow: hidden;
}	
.success .slick-arrow {
    top: 50%;
}	

/* experience
----------------------------------------------------------- */
.experience {
    padding: 18vw 0 10vw 0;
}	
.experience .title_wrap {
    margin-bottom: 7vw;
}
.experience .title-a {
	line-height: 1.7em;
}
.experience .title-wrap {
	position: relative;
}
.experience-1 {
    bottom: -14vw;
    left: -2vw;
    width: 12vw;
    height: auto;
}
.experience-2 {
    position: absolute;
    bottom: -52px;
    right: -2vw;
    width: 15vw;
    height: auto;
}
.occupation-title {
    font-size: 4vw;
    margin-bottom: 7vw;
}
.occupation-title::after {
    width: 15vw;
    height: 1vw;
    bottom: -4vw;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    border-radius: 20px;
}
.occupation {
    margin-bottom: 10vw;
}
.occupation ul li {
    padding: 2vw 4vw;
    border-radius: 30px;
    text-align: center;
    margin: 1vw;
    letter-spacing: 0;
    font-size: 3.4vw;
}
.red-decoration::before {
    background-repeat: no-repeat;
    top: -10vw;
    width: 15vw;
    height: 6vw;
    left: 32vw;
}
	
/* blog
----------------------------------------------------------- */
.blog {
	padding:10vw 0;
}
.blog-content {
	padding: 10vw;
	width:100%;
	border-radius: 5vw;
}
.eyecatch img {
	width:100%;
	margin-bottom:0.5em;
}
.blog-left {
    margin-right: 0;
    margin-bottom: 0;
    border-bottom: none;
}
.date {
	font-size:3vw;
	margin-bottom: 1vw;
}
.blog-left .blog_list {
    border-bottom: solid 1px #d8d8d8;
	    padding-bottom: 2.4vw;
    margin-bottom: 2.4vw;
	}
.blog-right .blog_list {
    border-bottom: solid 1px #d8d8d8;
    padding-bottom: 2.4vw;
    margin-bottom: 2.4vw;
	}

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

.blog-title {
	line-height:1.5em;
	height: 3em;
	overflow: hidden;
}
.blog .title-a {
    font-size: 5vw;
}
.blog .title-a::after {
    width: 23vw;
    height: 307px;
    position: absolute;
    bottom: -68vw;
    right: -30vw;
}
	
/* footer-contact
----------------------------------------------------------- */
.footer-contact {
	padding:10vw 0 44vw 0;
}
.footer-contact .title-a {
    line-height: 1.9em;
}
.message {
    font-size: 5vw;
    margin-bottom: 6vw;
}
.footer-contact .btn:first-child {
	margin-bottom: 4vw;
}
.footer-contact .inner {
	position: relative;
}
.title-a.contact-title {
    margin-bottom: 24vw;
    font-size: 4.4vw;
    letter-spacing: 0em;
}
.fukidashi-line {
	padding-left: 1.5vw;
}
.fukidashi-line::before {
    width: 7vw;
    height: 1vw;
    transform: rotate(61deg);
    top: 3vw;
    left: -2vw;
}
.fukidashi-line::after {
    width: 7vw;
    height: 1vw;
    transform: rotate(-242deg);
    top: 3vw;
    right: -2vw;
}
.contact-1 {
    position: absolute;
    left: 13vw;
    bottom: -44vw;
    width: 31vw;
    z-index: 10;
}
.contact-2 {
    position: absolute;
    right: 6vw;
    bottom: -44vw;
    width: 32vw;
    z-index: 10;
}
.footer-contact .btn:nth-child(2) a {
    padding: 4vw 4vw 4vw 11vw;
}
.footer-contact .btn a {
    width: 76vw;
    font-size: 4vw;
    line-height: 1em;
    padding-right: 1em;
}
.footer-contact .line-img a::before {
    width: 20vw;
    height: 18vw;
    top: -2vw;
    left: 10vw;
}
/*ブログ３点表示*/
/*一覧タイトル*/
.blog-title {
	text-align: left;
	line-height: 1.5em;
    letter-spacing: 0.1em;
	height:auto;
}
.title_wrap .cont{
	line-height: 1.5em;
	overflow: hidden;
	width: 100%;
}
.blog_list .title_wrap .height{
	height: 14vw;
}
.blog_list .title_wrap {
	margin-bottom: 0;
	}
.blog-content .blog-right .title_wrap {
	width:100%;
	}
.blog-content .blog-left .title_wrap  {
	width:100%;
}
.blog-left .date {
    margin-bottom: 0.5em;
}
.blog-right .date {
    margin-bottom: 0.5em;
}
	
/* slider
----------------------------------------------------------- */	
.slide {
    width: 100%;
    height: auto;
    display: block;
}
.tab_item {
    width: 21vw;
    height: 12vw;
    background: #fff;
    line-height: 12vw;
    font-size: 3.2vw;
    font-weight: bold;
    margin-right: 1.4vw;
}
/*
.tab4{
		line-height:1.5em;
		padding-top:1vw;
	}
*/
/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  padding: 10vw 0;
  clear: both;
  overflow: hidden;
}

/* footer
----------------------------------------------------------- */
.footer {
	padding:10vw 0 10vw 0;
}
.footer-logo {
    margin-bottom: 10vw;
}
.footer-logo img {
	width:44vw;
}
.sitemap {
	font-size:3vw;
}
.sitemap_list {
    /* margin-bottom: 0.75em;
    font-size: 14px;
    position: relative;
    padding-left: 2em; */
}
.sitemap_list::before {
    /* width: 3.4vw;
    height: 3.4vw;
    top: 0.4vw;
    left: 2.4vw; */
}
.copylight {
    font-size: 2.5vw;
}

/*トップへ戻るボタン*/

.top {
    position: fixed;
    right: 3vw;
    bottom: 5vw;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 2;
}
.top a {
    width: 12vw;
    height: 12vw;
	padding:0;
}
.top a img {
    width: 6vw;
    height: 6vw;
    right: 22%;
    top: 24%;
}
.sp_tel_img img {
    width: 6vw;
    padding-top: 2.7vw;
}	
	

/*クラス付与で表示する*/
.active {
	opacity: 1;
	visibility: visible;
}

	
}

/*　↑↑↑　通常のスマホ用指示ここまで ↑↑↑ */


