@charset "utf-8";
/*
Theme Name: 九州電設リクルートサイト Theme
Description: 九州電設リクルートサイト themes
Version: 1.0
Author: kobaishi
Author URI: e-f.co.jp
*/


/*------------------------------------------------------

   common

-------------------------------------------------------*/
:root {
    --base-color: #000000;
    --main-color: #0236aa;/* blue */
    --sub-color: #d1fa22;/* yellow */

	--font-base: "Zen Kaku Gothic New", serif;
}


body {
	position: relative;
    font-size: 14px;
	font-family: var(--font-base);
	color: var(--base-color);
}

input,
select,
textarea,
radio,
checkbox,
button {
	font-family: var(--font-base);
}
p {
    line-height: 1.6;
}
img {
    vertical-align: middle;
}
.sp {
	display: none !important;
}
.inner {
    width: 100%;
    max-width: 1240px;
	padding: 0 20px;
	margin:auto;
	position: relative;
    z-index: 1;
}
.inner-in {
    padding: 0 100px;
}

.link {
    color: var(--main-color);
	text-decoration: underline !important;
}


/* off */
.link-off a {
    cursor: default !important;
    color: #ccc !important;
}
.flex-not {
	display: block !important;
}

/* nav-line */
.nav-line a:not(.no-line){
	opacity: 1 !important;
	text-decoration: none !important;
    position: relative;
}
.nav-line a:not(.no-line):after{
    position: absolute;
    bottom: -4px;
    left: 0;
    content: '';
    width: 100%;
    height: 0;
    border-top:solid 1px var(--main-color);
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform .3s;
}
.nav-line a:not(.no-line):hover:after,
a.current:after  {
    transform-origin: left top;
    transform: scale(1, 1);
}

/* 対角切り落とし */
.clippath20 {
  clip-path: polygon(
    0 0,          /* 左上 */
    calc(100% - 20px) 0,  /* 右上を20pxカット */
    100% 20px,
    100% 100%,    /* 右下 */
    20px 100%,    /* 左下を20pxカット */
    0 calc(100% - 20px)
  );
}


/*------------------------------------------------------

   header style

-------------------------------------------------------*/
#gb-header {
	width: 100%;
	background: var(--main-color);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
	position: fixed;
	left:0;
	top: 0;
	z-index: 1000;
}
.header-in {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: 64px;
}
.site-title {
    width: 40%;
    max-width: 496px;
    line-height: 1;
    margin-left: 20px;
}
.site-title a {
    display: block;
    height: 0;
    padding-top: 42px;
    overflow: hidden;
    background-image: url("./assets/img/cmn/site_logo_w.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.header-btn {
    display: flex;
    align-items: center;
    margin-left: auto;
}
.header-btn-recruitment a {
    font-size: 18px;
    display: block;
    color: #fff;
    border: solid 1px;
    border-radius: 1000px;
    padding: 5px 20px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.header-btn-recruitment a:hover {
	color: var(--main-color);
    background: #fff;
}
.header-btn-entry {
    background: #fff;
	margin-left: 20px;
}
.header-btn-entry a {
    display: flex;
    align-items: center;
    height: 64px;
    background: var(--sub-color);
    padding: 0 30px;
}

#gb-header.scrolled-off {
	background: none;
}




/* ----------------------------
   contets
-------------------------------*/
#main-contents {
	overflow: hidden;
}

.conBox {
    padding: 100px 0;
	position:relative;
}

/* cmn-title */
.cmn-title {
	margin-bottom: 100px;
    position: relative;
	z-index: 1;
}
.cmn-title h2 {
	font-size: 82px;
	line-height: 1;
}
.cmn-title p {
    font-size: 32px;
	font-weight: 500;
}
.cmn-title.center {
	text-align: center;
}

.cmn-desc {
	font-size: 28px;
	font-weight: 500;
	line-height: 2;
	text-align: center;
	margin-bottom: 50px;
}

/* news */
.news__list >li {
    font-size: 16px;
	margin-bottom: 10px;
}
.news__list >li:last-child {
	margin-bottom: 0;
}
.news__list >li a {
    display: inline-block;
	color: var(--base-color);
}
.news-date {
	display: inline-block;
	margin-right: 10px;
}
.news-category {
	font-size: 15px;
	display: inline-block;
    line-height: 1;
	color: var(--base-color);
	background: var(--sub-color);
	padding: 5px 10px;
	margin-right: 10px;
}

/* icon */
i.outlink-w {
	display: inline-block;
	width: 15px;
	height: 15px;
	background: url("./assets/img/cmn/icon_outlink_w.png") no-repeat center;
	background-size: contain;
	vertical-align: middle;
	margin-left: 10px;
}



/* arrow anime */
i.arrow-anime {
	display:inline-block;
	width: 25px;
	height: 20px;
	position: relative;
    overflow: hidden;
}
i.arrow-anime:before,
i.arrow-anime:after {
    content: '';
	width: 25px;
	height: 20px;
	background: url("./assets/img/cmn/icon_arrow48_b.png") no-repeat center;
	background-size:contain;
    position: absolute;
    transition: 1.2s cubic-bezier(0.075, 0.82, 0.165, 1);
}
i.arrow-anime-w:before,
i.arrow-anime-w:after {
	background-image: url("./assets/img/cmn/icon_arrow48_w.png");
}

i.arrow-anime-s {
	width: 16px;
	height: 16px;
}
i.arrow-anime-s:before,
i.arrow-anime-s:after {
	width: 16px;
	height: 16px;
}

i.arrow-anime:before {
	right: 0;
}
i.arrow-anime:after {
	right: 50px;
}
.has-arrow-anime a:hover i:before {
	right:-50px;
}
.has-arrow-anime a:hover i:after {
	right: 0;
}

/* img scale */
.img-scale {
	overflow: hidden;
}
.img-scale img {
    transition: 1.2s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.has-img-scale:hover .img-scale img {
    transform: scale(1.1);
}

/**/
.cmn-viewmore {
    text-align: right;
    margin-top: 80px;
}
.cmn-viewmore a {
    display: inline-block;
    line-height: 1;
    color: var(--base-color);
    font-size: 60px;
    font-weight: 600;
    padding: 10px 20px;
    position: relative;
}
.cmn-viewmore a:after {
	content: '';
	width: 100vw;
	height: 100%;
	border: solid 2px;
	position: absolute;
	left: 0;
	top: 0;
}
.cmn-viewmore a i.arrow-anime {
	margin-left: 10px;
    width: 48px;
    height: 45px;
}
.cmn-viewmore a i.arrow-anime:before,
.cmn-viewmore a i.arrow-anime:after {
	width: 48px;
	height: 45px;
	background-image: url("./assets/img/cmn/icon_arrow48.png");
}
.cmn-viewmore-w a {
	color: #fff;
}
.cmn-viewmore-w a i.arrow-anime-w:before,
.cmn-viewmore-w a i.arrow-anime-w:after {
	background-image: url("./assets/img/cmn/icon_arrow48_w.png");
}


/**/
.btm-entry {
    margin-bottom: 110px;
    overflow: hidden;
}
.btm-entry a {
    display: block;
    background: var(--sub-color);
    padding: 50px;
    width: calc(100vw - 20px);
}


/* ----------------------------
   footer & sp nav style
-------------------------------*/
#gb-footer {
	padding: 70px 0;
    color: #fff;
    background: var(--main-color);
}
.footer-in {
    display: flex;
}
.footer-main {
	width: 460px;
}
.footer-main p {
    margin: 40px 0 0 10px;
    line-height: 2;
}
.footer-nav {
    display: flex;
    justify-content: end;
    width: calc(100% - 500px);
}
.footer-nav__list:not(:first-of-type) {
	margin-left: 50px;
}
.footer-nav__list >li {
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 20px;
}
.footer-nav__list >li a {
	color: #fff;
}
.footer-nav__list a:not(.no-line):after {
	border-top: solid 1px #fff;
}
.footer-nav__list2 >li {
	font-size: 14px;
	font-weight: 400;
}

.copyright {
	text-align: center;
	margin-top: 100px;
}


/* backtotop */
#backtotop {
    text-align: center;
    cursor:pointer;
	margin-top: 100px;
	position: relative;
	top: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
#backtotop:hover {
	opacity:  0.7;
	top: -10px;
}



/* -----------------------------------

media query

------------------------------------- */
@media (max-width: 1100px) {

	.inner-in {
		padding: 0;
	}

}

@media (max-width: 815px) {

	body {
        font-size: 15px;
		min-width: 375px;
        overflow-x: hidden;
		padding-top: 60px;
	}
	body.menu-fix {
		overflow: hidden;
	}
	.pc {
		display: none !important;
	}
	.sp {
		display: block !important;
	}
	.inner {
		 width: 100%;
	}
    .inner-in {
        padding: 0;
    }

	#gb-header {
		background: #fff !important;
	}
	.header-in {
		height: 60px;
	}
	.site-title {
		width: 260px;
	}
	.site-title a {
		padding-top: 23px;
		background-image: url(./assets/img/cmn/site_logo_b.png);
	}
	.header-btn {
		padding-right: 60px;
	}
	.header-btn-recruitment a {
		color: var(--main-color);
	}
	
	#menu-btn {
		display: block;
		width: 60px;
		height: 60px;
		background: var(--main-color);
		cursor: pointer;
		position: fixed;
		right: 0;
		top: 0;
		z-index: 10000;
	   -webkit-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
	}
	#menu-btn span {
		width: 56px;
		height: 1px;
		background: #fff;
		position: absolute;
		left: 17px;
		-webkit-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
	}
	#menu-btn span.t {
		top: 36px;    
	}
	#menu-btn span.b {
		bottom: 36px;
	}

	#menu-btn {
		width: 60px;
		height: 60px;
	}
	#menu-btn span {
		width: 34px;
		left: 12px;
	}
	#menu-btn.active span.t {
		top: 30px;
		transform: rotate(-45deg);
	}
	#menu-btn.active span.b {
		bottom: 29px;
		transform: rotate(45deg);
	}


	.conBox {
		padding: 50px 0;
	}

	.cmn-title {
		margin-bottom: 50px;
	}
	.cmn-title h2 {
		font-size: 42px;
	}
	.cmn-title p {
		font-size: 16px;
		margin-top: 5px;
	}

	.cmn-desc {
		font-size: 16px;
	}

	.cmn-viewmore a {
		font-size: 24px;
	}
	.cmn-viewmore a i.arrow-anime {
		width: 25px;
		height: 20px;
	}
	.cmn-viewmore a i.arrow-anime:before,
	.cmn-viewmore a i.arrow-anime:after {
		width: 25px;
		height: 20px;
	}

	.btm-entry {
		margin: 50px 0;
	}

	#gb-footer {
		padding: 50px 0;
	}
	.footer-in {
		display: block;
	}
	.footer-main {
		width: 100%;
	}
	.footer-logo img {
		width: 250px;
	}
	.footer-main p {
		margin: 20px 0 0 10px;
	}
	.footer-nav {
		width: 100%;
        display: block;
	}
	.footer-nav__list.footer-nav__list2 {
		margin-left: 0;
		margin-top: 30px;
	}
	.footer-nav__list2 >li {
		display: inline-block;
		margin-right: 20px;
	}
	#backtotop {
		margin-top: 50px;
	}

    .copyright {
        margin-top: 30px;
        text-align: left;
    }
	
	#sp-nav {
		width: 100%;
		height: calc(100% - 60px);
		padding: 20px;
		background: var(--main-color);
		visibility: hidden;
		opacity: 0;
		overflow: auto;
		position: fixed;
		top: 60px;
		left: 0;
		z-index: 1000;
		-webkit-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
	}
	#sp-nav.active {
		visibility: visible;
		opacity: 1;
	}
	.sp-nav {
		color: #fff;
		display: block;
	}
	.sp-nav__list li {
        color: #fff;
		padding-bottom: 10px;
		margin-bottom: 10px;
		border-bottom: solid 1px;
	}
	.sp-nav__list li a {
		color: #fff;
	}

}

