@charset "UTF-8";

/* CSS Document */
body{
	width: 1000px;
	margin: auto;
	padding-top: 150px;
}

a{
	text-decoration-line: none;
}

.top{
	position: fixed;
	top: 0px;
	background-color: #FFFFFF;
	padding-top: 30px;
	z-index: 5;
	}
h1{
	font-size: 2.5em;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	margin: 10px 0;
	line-height:1.2em;
}


p{
	font-size: 0.8em;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	text-align: justify;
	line-height:1.7em;
	color: #3B3B3B;
	margin: 0 auto;
}




p.font1{
	font-size: 1.5em;
	border-bottom: 1px solid  #333333;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	font-weight: 700;
	color: #3B3B3B;
	margin: 0 auto 4px;
}

p.font2{
	text-align: center;
	font-size: 1em;
	color: #3B3B3B;
	margin: 20px auto;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	line-height:2.5em;
}

p.font3{
	font-size: 1em;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	color: #3B3B3B;
	margin: 40px 0 0;
	font-weight: 600;
}

p.font4{
	font-size: 1em;
	margin: 0 0 auto 15px;
}



ul{
	list-style: none;
	padding: 0;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}

ul.top-bar{
	display: flex;
	padding-bottom: 5px;
}

ul.top-bar li{
	width: 200px;
	text-align: center;
	padding-bottom: 5px;

}

ul.top-bar li{
	text-decoration-line: none;
	border-bottom: solid 6px #D0D0D0;
}

ul.top-bar a{
	text-decoration-line: none;
	color: #3B3B3B;
}

ul.top-bar li:hover{
	border-bottom: solid 6px #0015B5;
}

/* ドロップダウンメニュー */

ul.dropdown__lists li{
	border-bottom: none;
}

ul.dropdown__lists li:hover{
	border-bottom: none;
}



.dropdown__lists {
    display: none;
    width: 200px;
    position: absolute;
    margin-top: 5px;
	
}

ul.top-bar li:hover .dropdown__lists {
    display: block;
}

.dropdown__list {
    background-color: #fff;
    transition: all .3s;
    position: relative;
}


ul.dropdown__lists li.dropdown__list a{
	height: 30px;
	padding-top: 8px;
}

ul.dropdown__lists li.dropdown__list a:hover{
	color: #fff;
}


.dropdown__list:not(:first-child)::before{
    content: "";
    width: 200px;
    height: 2px;
    background-color: #D0D0D0;
    position: absolute;
    top: 0;
    left: 0;
}

.dropdown__list:hover {
    background-color: #0015B5;
}

.dropdown__list a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    position: relative;
}
.dropdown__list a::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: rotate(135deg);
    position: absolute;
    right: 15px;
    top: calc(50% - 5px);
}


/* スライドショーここから */
.slider-font{
	position: absolute;
	width: 400px;
	bottom: 10px;
	left: 30px;
	z-index: 4;
	color: #fff;
}

.slider-font p{
	color: #fff;
	font-size: 1.0em;
}


.slider{
	position: relative;
	width: 1000px;
	height: 500px;
	margin-bottom: 45px;
}

.slideshow {
  position: absolute;
  width: 1000px;
  height: 500px;
  overflow: hidden;
}

.slideshow-image {
  position: absolute;
  width: 1000px;
  height: 500px;
  background: no-repeat 50% 50%;
  background-size: cover;
  -webkit-animation-name: kenburns;
          animation-name: kenburns;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 16s;
          animation-duration: 16s;
  opacity: 1;
  transform: scale(1.2);
}
.slideshow-image:nth-child(1) {
  -webkit-animation-name: kenburns-1;
          animation-name: kenburns-1;
  z-index: 3;
}
.slideshow-image:nth-child(2) {
  -webkit-animation-name: kenburns-2;
          animation-name: kenburns-2;
  z-index: 2;
}
.slideshow-image:nth-child(3) {
  -webkit-animation-name: kenburns-3;
          animation-name: kenburns-3;
  z-index: 1;
}
.slideshow-image:nth-child(4) {
  -webkit-animation-name: kenburns-4;
          animation-name: kenburns-4;
  z-index: 0;
}



@-webkit-keyframes kenburns-1 {
  0% {
    opacity: 1;
    transform: scale(1.2);
  }
  1.5625% {
    opacity: 1;
  }
  23.4375% {
    opacity: 1;
  }
  26.5625% {
    opacity: 0;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
  98.4375% {
    opacity: 0;
    transform: scale(1.2117647059);
  }
  100% {
    opacity: 1;
  }
}

@keyframes kenburns-1 {
  0% {
    opacity: 1;
    transform: scale(1.2);
  }
  1.5625% {
    opacity: 1;
  }
  23.4375% {
    opacity: 1;
  }
  26.5625% {
    opacity: 0;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
  98.4375% {
    opacity: 0;
    transform: scale(1.2117647059);
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes kenburns-2 {
  23.4375% {
    opacity: 1;
    transform: scale(1.2);
  }
  26.5625% {
    opacity: 1;
  }
  48.4375% {
    opacity: 1;
  }
  51.5625% {
    opacity: 0;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}
@keyframes kenburns-2 {
  23.4375% {
    opacity: 1;
    transform: scale(1.2);
  }
  26.5625% {
    opacity: 1;
  }
  48.4375% {
    opacity: 1;
  }
  51.5625% {
    opacity: 0;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}
@-webkit-keyframes kenburns-3 {
  48.4375% {
    opacity: 1;
    transform: scale(1.2);
  }
  51.5625% {
    opacity: 1;
  }
  73.4375% {
    opacity: 1;
  }
  76.5625% {
    opacity: 0;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}
@keyframes kenburns-3 {
  48.4375% {
    opacity: 1;
    transform: scale(1.2);
  }
  51.5625% {
    opacity: 1;
  }
  73.4375% {
    opacity: 1;
  }
  76.5625% {
    opacity: 0;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}
@-webkit-keyframes kenburns-4 {
  73.4375% {
    opacity: 1;
    transform: scale(1.2);
  }
  76.5625% {
    opacity: 1;
  }
  98.4375% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}
@keyframes kenburns-4 {
  73.4375% {
    opacity: 1;
    transform: scale(1.2);
  }
  76.5625% {
    opacity: 1;
  }
  98.4375% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}



/* スライドショーここまで */



.tittleA{
	width: 1000px;
	height: 30px;
	margin-top: 0px;
	margin-bottom: 0px;
	padding-top: 7px;
	color: #fff;
	background: linear-gradient(#0015B5, #000B5B);
	text-align: center;
	vertical-align: middle;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}

.tittleB{
	width: 1000px;
	height: 30px;
	margin-top: 10px;
	margin-bottom: 30px;
	padding-top: 7px;
	color: #fff;
	background: linear-gradient(#0015B5, #000B5B);
	text-align: center;
	vertical-align: middle;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}


/* 部署紹介 */
.department{
	margin-top: -150px;
	padding-top: 150px;
	padding-bottom: -20px;
	
	
}

.department-boxA{
	margin: 55px auto 80px;

}

.department-box{
	width: 825px;
	margin:-150px auto 120px;
	padding-top: 150px;
	display: flex;
}

.department-left{
	width: 400px;
}

.department-right{
	width: 400px;
	margin-left: auto;
}

.department-left img{
	width: 400px;
	height: 250px;
}


/* 私たちの会社 */
.mycompany{
	margin-top: -150px;
	padding-top: 150px;
}

.mycompany-box{
	width: 705px;
	margin: 80px auto 95px;
}



/* メッセージ */
.messeage{
	margin-top: -150px;
	padding-top: 150px;
}

.messeage-box{
	width: 825px;
	margin: 90px auto 100px;
	display: flex;
}

.messeage-left{
	width: 300px;
}

.messeage-right{
	width: 500px;
	margin-left: auto;
	padding-top: 15px;
}


/* アクセス */
.access-box{
	width: 825px;
	display: flex;
	margin: 40px auto 70px;
}

.access-left{
	width: 400px;
	margin: 30px auto 0 10px;
}

.access-right{
	width: 400px;
	margin: 30px auto 0 90px;
	height: 350px;
}

.access-box .access-right img{
	margin: auto auto 10px;
}

/* 応募フォーム */
.form{
	margin-bottom: 150px;
}

.form-boxA{
	margin-top: 40px;
}

.form-boxB{
	margin: auto;
	margin-top: 20px;
	margin-bottom: 60px;
}

.parttime-box{
	width: 250px;
	height: 43px;
	margin: auto;
	color: #FD7E00;
	border: solid 3px #FD7E00;
	font-size: 1.5em;
	text-align: center;
	padding-top: 5px;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}



.midcareer-box{
	width: 250px;
	height: 43px;
	margin: 15px auto 0;
	color: #ffffff;
	border: solid 3px #FD7E00;
	background-color: #FD7E00;
	font-size: 1.5em;
	text-align: center;
	padding-top: 5px;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}

.midcareer-box:hover{
	border: solid 3px #FDA54D;
	background-color: #FDA54D;
}






/*戻るボタン */

a.button {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  text-decoration: none;
  background-color: #333;
  display: block;
  text-align: center;
  border-radius: 50px;
}

a.button::before {
  content: '';
  width: 0.8em;
  height: 0.8em;
  border: 0.2em solid #fff;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(-45deg);
  transform-origin: top right;
  position: absolute;
  top: 1.5em;
  right: 50%;
  box-sizing: border-box;
}

a.button:hover{
	background-color: #999;
}
