/* reset */

body{
	margin:0;
	font-size: 14px;
}

img{
	vertical-align:top;
}

p{
	margin:0;
}

a {
    text-decoration:none;
}


/* 共通 */

.center{
	text-align: center;
}

.left{
	text-align: left;
}

.right{
	text-align: right;
}

a{
	color:#000;
}

.inline-block{
	display:inline-block !important;
}

/* header */

.sp,
#sp-header{
	display: none;
}

#header{
	margin:15px 0;
}

.headerMenu{
	display: table;
	height: 50px;
	width:1000px;
	margin:auto;
	padding: 0;
}

.headerMenu li{
    display: table-cell;
    vertical-align: middle;
    font-size: 14px;
}

.headerMenu li:first-child{
    padding-right: 20px;
}

.headerMenu li:not(:first-child){
    padding: 10px;
}

#fixed-header {
  position: fixed;
  top: -50px;  
  width: 100%;
  height: 50px;
  line-height: 50px;
  font-size: 2em;
  background: #fff;
  box-sizing: border-box;
  transition: .5s; /* アニメーションタイミング */
  box-shadow: 0px 5px 5px -5px rgb(0 0 0 / 30%);
  z-index: 1;
}

#fixed-header.is-show {
  top: 0;
}

#fixed-header .headerMenu{
	display: flex;
    flex-wrap: nowrap;
}

#fixed-header .headerMenu li{
	padding:0 !important;
	width:100%;
}

#fixed-header .headerMenu li a::before{
	margin-bottom:0 !important;
}

#header-iframe{
	height:60px;
}

#header-iframe-index{
	margin: 0 auto;
    width: 1000px;
}

.header-menu{
	text-align: right;
	position: absolute;
    width: 1000px;
}

.header-menu-other{
	position: fixed !important;
	width: 100% !important;
    z-index: 100;
    background: #fff;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0%);
    -webkit-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, -50%);
    height: 60px;
}

.header-menu-other table{
	width: 1000px;
    margin: 0 auto;
}

.header-menu nav{
	display: none;
}

.header-menu-other nav{
	display: none;
	z-index: 100;
    position: absolute;
    width: 1000px;
    top: 60px;
    left: 50%;
    transform: translate(-50%, 0%);
    -webkit-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, -50%);
}

.indexHeaderMenu {
	flex-direction: column;
	right: -100%;
	width: 100%;
	height: 350px;
	color: #efefef;
	transition: .6s;
	background: #333;
	margin: 0;
	padding:0;
}

.indexHeaderMenu li:not(:first-child) {
	padding: 0px;
}

.indexHeaderMenu li:first-child {
    padding-right: 0px;
}

.indexHeaderMenu.open {
	padding:0;
}

.menu-list {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
    border-bottom: 1px solid #fff;
    height: 50px;
    color:#fff;
}

.menu-list:hover {
	background-color: rgba(255, 255, 255, .5);
	color: #333;
	cursor: pointer;
	transition: .3s;
}

/* header　hoverアニメーション */

.c-txt {
  display: inline-block;
  letter-spacing: 0.06em;
  font-weight: bold;
}

.c-txt {
  cursor: pointer;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}

.c-txt.line {
  position: relative;
}
.c-txt.line::before {
  background: #4682b4;
  content: '';
  width: 100%;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: center top;
  transform: scale(0, 1);
  transition: transform .3s;
  margin-bottom: -15px;
}
.c-txt.line:hover::before {
  transform-origin: center top;
  transform: scale(1, 1);
}

.c-txt.activ::before{
  transform: none;
}
.c-txt.activ:hover::before {
  transform-origin: none;
  transform: none;
}


/* 採用ページ用ボタンcss */

.jobinfo-btn-div{
	margin:50px 0 70px 0;
}

.jobinfo-btn-div-top{
	margin:50px 200px 70px 0;
}

.jobinfo-btn-div-index{
	margin:0;
	padding: 5px 0;
}

a.btn-3d-flip {
  display: block;
  width: 250px;
  margin: 0 auto;
  padding: 0;
  -webkit-perspective: 600px;
  perspective: 600px;
  border: none;
}

a.btn-3d-flip:hover .btn-3d-flip-box {
  -webkit-transform: translateY(-50%) rotateX(90deg);
  transform: translateY(-50%) rotateX(90deg);
}

a.btn-3d-flip.btn-3d-flip2:hover .btn-3d-flip-box2 {
  -webkit-transform: translateX(-50%) rotateY(-90deg);
  transform: translateX(-50%) rotateY(-90deg);
}

.btn-3d-flip-box {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  margin: auto;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transform: rotateX(0);
  transform: rotateX(0);
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.btn-3d-flip-box2 {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  margin: auto;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transform: rotateY(0);
  transform: rotateY(0);
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.btn-3d-flip-box-face {
  display: block;
  position: relative;
  width: 100%;
  padding: 1rem 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  color: #fff;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.btn-3d-flip-box-face-index {
  display: block;
  position: relative;
  width: 100%;
  padding: 3rem 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  color: #fff;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.btn-3d-flip-box-face-menu {
  display: block;
  position: relative;
  width: 100%;
  padding: 2.5rem 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  color: #fff;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.btn-3d-flip-box-face--front {
  background: #4682b4;
}

.btn-3d-flip-box-face--front-index{
  background: #4682b4;
  height:139px;
}

.btn-3d-flip-box-face--front-menu{
  background: #4682b4;
  height:125px;
}

.btn-3d-flip-box-face--back {
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transform: translateY(-1px) rotateX(-90deg);
  transform: translateY(-1px) rotateX(-90deg);
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  background: #faf5f5;
  color: #000;
}

.btn-3d-flip-box-face--back-index {
  position: absolute;
  height:139px;
  top: 100%;
  left: 0;
  -webkit-transform: translateY(-67px) rotateX(-90deg);
  transform: translateY(-67px) rotateX(-90deg);
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  background: #faf5f5;
  color: #000;
}

.btn-3d-flip-box-face--back-menu {
  position: absolute;
  height:125px;
  top: 100%;
  left: 0;
  -webkit-transform: translateY(-67px) rotateX(-90deg);
  transform: translateY(-67px) rotateX(-90deg);
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  background: #faf5f5;
  color: #000;
}

.btn-3d-flip-box-face--front2 {
  color: #000;
  border: 2px solid #000;
  background: #fff;
}

.btn-3d-flip-box-face--back2 {
  position: absolute;
  top: 0;
  left: 100%;
  -webkit-transform: translateX(-1px) rotateY(90deg);
  transform: translateX(-1px) rotateY(90deg);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  color: #fff;
  border: 2px solid #000;
  background: #000;
}

.fa-position-right {
  position: absolute;
  top: calc(50% - 0.5em);
  right: 1rem;
}



.top-btn--yellow.top-btn--cubic, a.top-btn--yellow.top-btn--cubic{
    border-bottom: 5px solid #ccc100;
}

.top-btn {
    text-decoration: none!important;
}

.top-btn--yellow{
    color: #000;
    background-color: #fff100;
}

.top-btn{
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
    position: relative;
    display: inline-block;
    padding: 1rem 4rem;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all .3s;
    transition: all .3s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: .1em;
    color: #212529;
    border-radius: 0.5rem;
}

a.top-btn-c {
  font-size: 1.8rem;
  position: relative;
  padding: 2rem 5rem 2rem 3rem;
  border-radius: 100vh;
}

a.top-btn-c:before {
  content: '';
    width: 20px;
    height: 20px;
    border: 0px;
    border-top: solid 5px;
    border-right: solid 5px;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: 35px;
    margin-top: -4px;
}

a.top-btn--yellow.top-btn--cubic:hover {
  margin-top: 3px;
  border-bottom: 2px solid #ccc100;
}

.top-job{
	margin:10px 0;
	text-align: center;
}



/* トップページ */

#top-img img {
	width:100%;
}

#top-img2 {
	margin: 0 auto;
    width: 1000px;
}

#top-table-div2{
	margin: 0 auto;
    width: 1000px;
}
#top-table-div2 div{
	font-size:0;
}

#top-table-div{
	margin:60px 0;
}

#top-table-div table{
    width: auto;
    margin: auto;
}

#top-table-div table tbody tr td{
	padding:20px;
}

#top-table-div table td img{
	width:400px;
}

#top-table-div table tr:last-child td img{
	width:840px;
}


/* footer */

#footer-iframe{
	display: block;
	background:#faf5f5;
	border-top: 3px solid #4682b4;
}

#footer{
	width: 840px;
	margin: auto;
}

#footerMenu{
	padding:0;
}

#footerMenu li{
    display: table-cell;
    vertical-align: middle;
    padding: 0 20px;
    font-size: 14px;
}

#footerMenu li:first-child{
	border-left: 1px solid #ccc;
}

#footerMenu li{
	border-right: 1px solid #ccc;
}

#footer p{
	padding: 50px 0 15px 0;
	font-size: 12px;
}


/* トップページ以外 */

#main{
	width: 1000px;
    margin: auto;
    display: flex;
}

#title{
    margin: auto;
    height: 100px;
    background: #4682b4;
    margin-bottom: 20px;
    text-align: center;
    line-height: 100px;
    font-size: 28px;
    color: #fff;
}

.subTitle{
	position: relative;
	font-size: 18px;
	padding-bottom: 10px;
    border-bottom: 3px solid #ccc;
}

.subTitle:before{
	content: "";
	position: absolute;
	left: 0;
	bottom: -3px;
	width: 30%;
	height: inherit;
	border-bottom: 3px solid #4682b4;
}

.subTitle{
	padding: 15px 0;
    border-bottom: 3px solid #ccc;
    font-size: 24px;
}

#common-table{
	border-collapse: separate;
	border-spacing: 0;
	margin: 50px 0;
    width: 100%;
    border-top:1px solid #ccc;
}

#common-table tr td{
	border-bottom:1px solid #ccc;
	padding:20px 15px;
}

/* 左メニュー */


#leftMenu ul{
	margin:0;
	padding:0;
}

#leftMenu ul li:first-child{
    margin-top: 0px;
}

#leftMenu ul li{
	padding:0;
	margin:15px 0;
	width: 343px;
	height: 212px;
}

.menu-p{
	position: relative;
	font-size: 18px;
	padding-bottom: 10px;
    border-bottom: 3px solid #ccc;
}

.menu-p:before{
	content: "";
	position: absolute;
	left: 0;
	bottom: -3px;
	width: 30%;
	height: inherit;
	border-bottom: 3px solid #4682b4;
}

.menu-c{
	padding: 0 0 10px 10px;
    border-bottom: 1px solid #ccc;
}

.menu-p a::before ,.menu-c a::before{
    margin-bottom: 0 !important;
}

.menuBtn {
  font-size: 1.6rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

a.btn-flat,
.btn-flat-long {
  overflow: hidden;
  border-radius: 0;
}

a.btn-flat span,
.btn-flat-long span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
  margin: auto;
}

a.btn-flat:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  -webkit-transform: translateX(-96%);
  transform: translateX(-96%);
  background: #4682b4;
  opacity: 0.5;
}

.btn-flat-long:before{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  -webkit-transform: translateX(-98%);
  transform: translateX(-98%);
  background: #4682b4;
  opacity: 0.5;
}

a.btn-flat:hover,
.btn-flat-long:hover {
  color:#fff;
}

a.btn-flat:hover:before,
.btn-flat-long:hover:before {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}

.fa-position-right {
    position: absolute;
    top: 50%;
    right: 1rem;
}

.fa-angle-right:before {
    content: '';
    width: 10px;
    height: 10px;
    border: 0px;
    border-top: solid 3px;
    border-right: solid 3px;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -4px;
}

.leftMenu-switch{
	height: 40px !important;
}

.left-menu-btn{
	font-size: 13px !important;
}

/* 右メイン */

#rightMain{
	width: 664px;
	vertical-align: top;
	margin-left: 30px;
}

#mainTitle{
	width: 100%;
    border-top: 3px solid #4682b4;
    border-bottom: 1px solid #ccc;
    padding: 20px 0;
    margin-bottom: 30px;
    font-size: 28px;
}


/* 各ページ独自css */

#greeting-div{
	margin:50px 0;
}

#access-div{
	margin:30px 0;
}

.content-left{
	width:364px;
	margin: 30px 18px 50px 0;
}

.content-right{
	width:240px;
	margin-top:30px;
	vertical-align: top;
}

#greeting-div{
	background-image: url(https://hokuto-elec.co.jp/img/greeting.jpg);
	background-repeat:  no-repeat;
	background-position: right bottom;
    padding-bottom: 70px;
}

#greeting-div p{
    text-align: right;
    padding-right: 100px;
}

.jobinfo-imgDiv{
	margin:80px 0;
}

.jobinfo-table td:first-child{
	width: 100px;
}

#contact-table{
	margin: 20px 0;
	border-collapse: separate;
	border-spacing: 0;
	border-top: 1px dashed #ccc;
	width:100%;
}

#contact-table tr th{
	padding: 10px 10px 10px 20px;
	border-right: 1px dashed #ccc;
    background: #bbe0fe;
    font-weight: normal;
    text-align: left;
    width:213.99px;
}

#contact-table tr th,
#contact-table tr td{
	border-bottom: 1px dashed #ccc;
}

#contact-table tr td{
	padding: 10px 0px 10px 20px;
}

#contact-table tr th p{
	display: flex;
}

#contact-table tr th span{
	margin-left: auto;
    background: #cc0000;
    padding: 0px 10px;
    color: #fff;
}

#contact-table tr td p label{
    margin-right: 10px;
}

#contact-table tr td p label input{
	vertical-align:top;
}

.privacy-box{
	width: 100%;
    height: 200px;
    border: 1px solid #000;
    overflow-y: scroll;
    overflow-x: hidden;
}

/* ヘッダーボタン */

.menu-btn {
	z-index: 10;
	width: 50px;
	height: 50px;
	background: #fff;
	border:none;
}

.btn-line {
	display: block;
	position: relative;
	width: 100%;
	height: 4px;
	background-color: #d6d5d5;
	transition: .2s;
}

.btn-line::before , .btn-line::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #d6d5d5;
	transition: .5s;
	right: 0px;
}

.btn-line::before {
	transform: translateY(-16px);
	margin-top: 5px;
}

.btn-line::after {
	transform: translateY(16px);
	margin-top: -5px;
}

.btn-line.open {
	background-color: transparent;
}

.btn-line.open::before , .btn-line.open::after {
	content: "";
	background-color: #333;
	transition: .2s;
}
.btn-line.open::before {
	transform: rotate(45deg);
	margin-top:0;
}

.btn-line.open::after {
	transform: rotate(-45deg);
	margin-top:0;
}


/* スマホ用 */
@media screen and (max-width:480px) {

div{
    width: auto;
}

.pc,
#pc-header{
	display: none;
}

.sp{
	display: block;
}

#sp-header{
	display: block;
	height: 70px;
	position: fixed;
	top: 0;
	width: 100%;
	background: #fff;
	z-index: 1;
}

.header-menu{
	height: 0 !important;
	background: none !important;
}

#index{
	margin-top:0 !important;
}

.headerMenu {
	display: flex;
	flex-direction: column;
	position: fixed;
	right: -100%;
	width: 100%;
	height: 350px;
	color: #efefef;
	transition: .6s;
	background: #333;
}

.headerMenu li:not(:first-child) {
	padding: 0px;
}

.headerMenu li:first-child {
    padding-right: 0px;
}

.menu-list {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
    border-bottom: 1px solid #fff;
    height: 50px;
    color:#fff;
}

.menu-list:hover {
	background-color: rgba(255, 255, 255, .5);
	color: #333;
	cursor: pointer;
	transition: .3s;
}

.headerMenu.open {
	position: absolute;
	right: 0;
}

#main{
	width:100%;
	flex-direction: column-reverse;
}

#leftMenu ul{
	text-align: center;
    width: 80%;
    margin: auto;
}

#leftMenu ul li:first-child,
#leftMenu ul li:nth-child(2){
	text-align: left;
}

#leftMenu ul li a img{
	width: 100%;
}

#rightMain{
	width: 95%;
    margin: auto;
}

#common-table tr td:first-child{
	width:105px;
}

.content-left{
	margin:30px 0;
	width: 100%;
}

.content-right{
	width: 100%;
    margin-bottom: 50px;
    text-align: center;
    margin-top: 0;
}

#sp-header table{
	width: 100%;
    margin: auto;
    background: #fff;
}

#sp-header table tr td:first-child{
	padding-right: 10px;
}

#sp-header table tr td:last-child{
	text-align: right;
}

#sp-header table tr td p{
	display: table-cell;
	vertical-align: middle;
	height: 70px;
}

#sp-header table tr td p img{
	width:100%;
}

#sp-header nav{
	margin-top: -1px;
}

.menuBtn{
	font-size:15px;
}

#top-table-div {
    margin: 15px 0;
}

#greeting-div{
    padding-bottom: 110px;
}

#contact-table tr th,
#contact-table tr td{
	display: block;
	border-right:none;
	width: 100%;
}

input{
	width: 100%;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

#contact-table tr td p label input{
	width:auto;
}

textarea{
	width:100% !important;
}

#contact-table tr td p{
	width:100%;
	padding:0;
}

.jobinfo-btn-right{
	margin-top:20px !important;
}

#contact-table tr td{
    padding:10px 0px;
}

#footer{
	width:100%;
}

#footerMenu{
	display: none;
}

.btn-3d-flip-box-face--front-index{
  height:60px;
}

.btn-3d-flip-box-face-index{
  padding:10px 0;
}

.btn-3d-flip-box-face--back-index{
  -webkit-transform: translateY(-1px) rotateX(-90deg);
  transform: translateY(-1px) rotateX(-90deg);
}

.jobinfo-btn-div-top{
	margin:50px 0 70px 0;
}

#top-table-div2{
	width:100%
}

#top-table-div2 div:first-child{
	background: #040821;
}

#top-table-div2 div:nth-child(2){
	background: #4f96c2;
}

#top-table-div2 div:first-child p:first-child{
	vertical-align: top;
}

#top-table-div2 div:nth-child(2) p:nth-child(2){
	vertical-align: bottom;
}

#top-table-div2 div:first-child p:first-child,
#top-table-div2 div:nth-child(2) p:nth-child(2){
	width:58%;
}

#top-table-div2 div:first-child p:nth-child(2),
#top-table-div2 div:nth-child(2) p:first-child{
	width:42%;
}

#top-img2{
	width:100%
}

.top-job a{
	font-size:14px;
}

#leftMenu ul li{
	width: 100%;
	height: 183px;
}
}
