@charset "utf-8";
/* lower.css */

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* オープニングシャッター　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.move-order .animation-bg .animation-bg-element {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: calc(100% / 10);
  z-index: 999;
  animation-name: PageAnime-move-order;
  animation-duration: 0.5s;
  animation-delay: 0.1s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
.move-order .animation-bg .animation-bg-element:nth-child(2) {
  left: 10%;
  animation-delay: 0.2s;
}
.move-order .animation-bg .animation-bg-element:nth-child(3) {
  left: 20%;
  animation-delay: 0.3s;
}
.move-order .animation-bg .animation-bg-element:nth-child(4) {
  left: 30%;
  animation-delay: 0.4s;
}
.move-order .animation-bg .animation-bg-element:nth-child(5) {
  left: 40%;
  animation-delay: 0.5s;
}
.move-order .animation-bg .animation-bg-element:nth-child(6) {
  left: 50%;
  animation-delay: 0.6s;
}
.move-order .animation-bg .animation-bg-element:nth-child(7) {
  left: 60%;
  animation-delay: 0.7s;
}
.move-order .animation-bg .animation-bg-element:nth-child(8) {
  left: 70%;
  animation-delay: 0.8s;
}
.move-order .animation-bg .animation-bg-element:nth-child(9) {
  left: 80%;
  animation-delay: 0.9s;
}
.move-order .animation-bg .animation-bg-element:nth-child(10) {
  left: 90%;
  animation-delay: 1s;
}
.move-order .animation-bg .animation-bg-element::before {
  background: #00B2FC;
  box-shadow: 0 0 0 1px #00B2FC;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* 順番に閉じる キーフレーム */
@keyframes PageAnime-move-order {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100%);
  }
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* KV　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#kv {
	margin-left: 50px;
	margin-right: 50px;
}

/* -- ページタイトル ----------------------------------------------- */
#page_tt {
	max-width: 1400px;
	height: 500px;
	margin-left: auto;
	margin-right: auto;
	background-image: url(../images/lower_kv_bg.jpg);
	background-repeat: repeat;
	background-position: center center;
	border-radius: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #FFFFFF;
	-webkit-animation: bgroop 20s linear infinite;
	animation: bgroop 20s linear infinite
}
@-webkit-keyframes bgroop {
    from {
        background-position: 0  0;
    }
    to {
        background-position: -1680px 0;
    }
}
@keyframes bgroop {
    from {
        background-position: 0 0;
    }
    to {
        background-position: -1680px 0;
    }
}
#page_tt h3 {
	font-size: 64px;
	font-weight: 800;
	line-height: 1.2em;
}
#page_tt h3::after {
	display: block;
	content: "naruza RECRUIT";
	font-size: 14px;
	line-height: 1.2em;
	margin-top: 10px;
	text-align: center;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* パンくずリスト　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#breadcrumbs {
	margin-top: 10px;
	margin-left: 50px;
	margin-right: 50px;
}
#breadcrumbs ul {
	display: flex;
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#breadcrumbs li {
	font-size: 13px;
	line-height: 1.2em;
}
#breadcrumbs li a {
	color: #333333;
}
#breadcrumbs li a:hover {
	color: #444444;
	text-decoration: underline;
}
#breadcrumbs li:after {
	content: " ＞ ";
	margin-right: 5px;
}
#breadcrumbs li:last-child:after {
	content: "";
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* h3ボックス　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.h3_box {
	text-align: center;
	margin-bottom: 70px;
}
.h3_box h3 {
	font-family: "Cal Sans", sans-serif;
	color: #00B2FC;
	font-size: 74px;
	line-height: 1.2em;
}
.h3_box p {
	color: #8A8A8A;
	font-size: 24px;
}







/* ↓↓↓↓↓↓↓↓↓↓ ---以下スマホ--- ↓↓↓↓↓↓↓↓↓↓ */


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

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* KV　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#kv {
	margin-left: 20px;
	margin-right: 20px;
}

/* -- ページタイトル ----------------------------------------------- */
#page_tt {
	max-width: 100%;
	height: 400px;
	border-radius: 30px;
	background-size: 1000px auto;
}
#page_tt h3 {
	font-size: 40px;
	line-height: 1.2em;
}
#page_tt h3::after {
	font-size: 12px;
	line-height: 1.2em;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* パンくずリスト　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#breadcrumbs {
	margin-top: 10px;
	margin-left: 20px;
	margin-right: 20px;
}
#breadcrumbs ul {
	max-width: 100%;
	padding-left: 0px;
}
#breadcrumbs li {
	font-size: 12px;
	line-height: 1.2em;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* h3ボックス　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.h3_box {
	margin-bottom: 40px;
}
.h3_box h3 {
	font-size: 50px;
	line-height: 1.2em;
}
.h3_box p {
	font-size: 20px;
}


}
