@charset "UTF-8";
/* --

 top.css

 ------------------------------------
-- */
@import url(https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700,900&display=swap&subset=japanese);
@import url(https://fonts.googleapis.com/css?family=Noto+Serif+JP:200,300,400,500,600,700,900&display=swap&subset=japanese);
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;700&display=swap");
/* --

 * clearfix............float解除
 * font-size...........フォントサイズ指定（px指定はIE8対策）
 * moving-base.........基本のアニメーション
 * FontAwesome.........アイコンフォント使用（FontAwesome）
 * opacity.............透明度設定（IE対応含む）
 * tablet..............ブレイクポイント設定（タブレット）
 * mobile..............ブレイクポイント設定（スマホ）

 ------------------------------------

 * scroll..............スクロールアイコンのスタイル

-- */
/* --

 keyframes - アニメーションキーフレーム集

 ------------------------------------

 * loading.............ローディングアイコンのアニメーション
 * toggle-.............ハンバーガーアイコンに関するアニメーション

-- */
@-webkit-keyframes loading {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@keyframes loading {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes toggle-top {
  0% {
    -webkit-transform: translateY(-4px) rotate(0deg);
    transform: translateY(-4px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-4px) rotate(0deg);
    transform: translateY(-4px) rotate(0deg);
  }
}
@keyframes toggle-top {
  0% {
    -webkit-transform: translateY(-4px) rotate(0deg);
    transform: translateY(-4px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-4px) rotate(0deg);
    transform: translateY(-4px) rotate(0deg);
  }
}
@-webkit-keyframes toggle-bottom {
  0% {
    -webkit-transform: translateY(4px) rotate(0deg);
    transform: translateY(4px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(4px) rotate(0deg);
    transform: translateY(4px) rotate(0deg);
  }
}
@keyframes toggle-bottom {
  0% {
    -webkit-transform: translateY(4px) rotate(0deg);
    transform: translateY(4px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(4px) rotate(0deg);
    transform: translateY(4px) rotate(0deg);
  }
}
@-webkit-keyframes toggle-top-close {
  0% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(2px) rotate(-45deg);
    transform: translateY(2px) rotate(-45deg);
  }
}
@keyframes toggle-top-close {
  0% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(2px) rotate(-45deg);
    transform: translateY(2px) rotate(-45deg);
  }
}
@-webkit-keyframes toggle-bottom-close {
  0% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-2px) rotate(45deg);
    transform: translateY(-2px) rotate(45deg);
  }
}
@keyframes toggle-bottom-close {
  0% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-2px) rotate(45deg);
    transform: translateY(-2px) rotate(45deg);
  }
}
@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadein {
  -webkit-animation: fadein 0.5s ease-out forwards;
          animation: fadein 0.5s ease-out forwards;
}

@-webkit-keyframes fadeinUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeinUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fadeinUp {
  -webkit-animation: fadeinUp 0.5s ease-out forwards;
          animation: fadeinUp 0.5s ease-out forwards;
}

@-webkit-keyframes fadeinRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fadeinRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.fadeinRight {
  -webkit-animation: fadeinRight 0.5s ease-out forwards;
          animation: fadeinRight 0.5s ease-out forwards;
}

@-webkit-keyframes fadeinLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fadeinLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.fadeinLeft {
  -webkit-animation: fadeinLeft 0.5s ease-out forwards;
          animation: fadeinLeft 0.5s ease-out forwards;
}

/*-----------------------------------

	$mainvisual

-----------------------------------*/
.mainvisual__list li {
  position: relative;
}
.mainvisual__image {
  width: 100%;
  height: 600px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  position: relative;
}
.mainvisual__image::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(#6cc2ff));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), #6cc2ff);
  mix-blend-mode: multiply;
}
.mv-01 .mainvisual__image {
  background-image: url("../images/top/mv-01.jpg");
}
.mainvisual__message {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 92%;
  max-width: 1080px;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}
.mainvisual__message::after {
  content: "";
  display: block;
  width: 218px;
  height: 420px;
  background: url("../images/common/bolt.svg") no-repeat 0 0;
  background-size: cover;
  opacity: 0.2;
  position: absolute;
  right: 0;
  bottom: -40px;
  z-index: -1;
}
.mainvisual__message-wrap {
  color: #fff;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.mainvisual__title {
  font-family: "Josefin Sans", sans-serif;
  font-size: 60px;
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.2;
}
.mainvisual__text {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  .mainvisual__image {
    height: 480px;
  }
  .mainvisual__message::after {
    width: 175px;
    height: 336px;
    bottom: -32px;
  }
  .mainvisual__title {
    font-size: 48px;
    font-size: 4.8rem;
  }
  .mainvisual__text {
    font-size: 20px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .mainvisual__image {
    height: 360px;
  }
  .mainvisual__message::after {
    width: 134px;
    height: 258px;
    bottom: -22px;
  }
  .mainvisual__title {
    font-size: 36px;
    font-size: 3.6rem;
  }
  .mainvisual__text {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 480px) {
  .mainvisual__image {
    height: 165px;
  }
  .mainvisual__message {
    position: relative;
    width: 100%;
    background: #041f94;
    padding: 20px 4%;
  }
  .mainvisual__message::after {
    width: 90px;
    height: 174px;
    bottom: -20px;
    right: 4%;
  }
  .mainvisual__message-wrap {
    position: relative;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .mainvisual__title {
    font-size: 28px;
    font-size: 2.8rem;
  }
  .mainvisual__text {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

/*-----------------------------------

	$news

-----------------------------------*/
.news {
  background: #ebf7fc;
  padding: 60px 0;
}
.news__wrap {
  display: table;
  width: 100%;
}
.news__title, .news__list {
  display: table-cell;
  vertical-align: top;
}
.news__title li, .news__list li {
  display: table;
  width: 100%;
  border-bottom: 1px solid #888;
  padding: 0.65em 0;
}
.news__title li:first-child, .news__list li:first-child {
  padding-top: 0;
}
.news__title {
  width: 18%;
  min-width: 180px;
}
.news__title h2 {
  font-family: "Josefin Sans", sans-serif;
  font-size: 36px;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.2;
  color: #041f94;
}
.news__title h2::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 30px;
  vertical-align: top;
  background: url("../images/common/bolt-blue.svg") no-repeat 0 0;
  background-size: cover;
  margin-right: 0.25em;
}
.news__update, .news__text {
  display: table-cell;
}
.news__update {
  width: 8em;
}
@media screen and (max-width: 768px) {
  .news__wrap, .news__title, .news__list {
    display: block;
    width: 100%;
  }
  .news__title h2 {
    text-align: center;
    font-size: 30px;
    font-size: 3rem;
    padding-bottom: 1em;
  }
  .news__title h2::before {
    width: 13px;
    height: 28px;
  }
}
@media screen and (max-width: 480px) {
  .news {
    padding: 40px 0 30px;
  }
  .news__list li {
    padding: 0.8em 0;
  }
  .news__title h2 {
    font-size: 24px;
    font-size: 2.4rem;
  }
  .news__title h2::before {
    width: 10px;
    height: 20px;
  }
  .news__update, .news__text {
    display: block;
    width: 100%;
  }
  .news__update {
    font-size: 13px;
    font-size: 1.3rem;
    padding-bottom: 0.2em;
  }
}

/*-----------------------------------

	$index

-----------------------------------*/
.index {
  padding: 80px 0 0;
}
.index__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.index__unit {
  width: 47.5%;
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
.index__btn {
  text-decoration: none;
}
.index__btn-ttl {
  font-family: "Josefin Sans", sans-serif;
  font-size: 36px;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  position: absolute;
  z-index: 3;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.index__btn-ttl::before {
  content: "";
  display: inline-block;
  vertical-align: top;
  width: 16px;
  height: 30px;
  background: url("../images/common/bolt.svg") no-repeat 0 0;
  background-size: cover;
  margin-right: 0.25em;
}
.index__btn .image {
  position: relative;
  overflow: hidden;
}
.index__btn .image::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(#6cc2ff), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, #6cc2ff, rgba(255, 255, 255, 0));
  mix-blend-mode: multiply;
  z-index: 1;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  opacity: 1;
}
.index__btn .image::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  background: -webkit-gradient(linear, left top, right top, from(rgba(108, 194, 255, 0)), to(#6cc2ff));
  background: linear-gradient(90deg, rgba(108, 194, 255, 0), #6cc2ff);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(0.5, 1);
          transform: scale(0.5, 1);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  mix-blend-mode: multiply;
  opacity: 0;
}
.index__btn .text {
  padding: 15px 20px 25px;
  color: #333;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.index__btn .text dt {
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
  padding-bottom: 0.5em;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.index__btn .text dt::before {
  display: inline-block;
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #f73838;
  padding-right: 0.25em;
}
.index__btn:hover .image::before, .index__btn:active .image::before, .index__btn:focus .image::before {
  opacity: 0;
}
.index__btn:hover .image::after, .index__btn:active .image::after, .index__btn:focus .image::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  opacity: 1;
}
.index__btn:hover .image img, .index__btn:active .image img, .index__btn:focus .image img {
  -webkit-transform: scale(1.2, 1.2);
          transform: scale(1.2, 1.2);
  opacity: 1;
}
.index__btn:hover .text dt, .index__btn:active .text dt, .index__btn:focus .text dt {
  color: #f73838;
}
@media screen and (max-width: 1024px) {
  .index__btn-ttl {
    font-size: 30px;
    font-size: 3rem;
  }
  .index__btn-ttl::before {
    width: 13px;
    height: 28px;
  }
  .index__btn .text {
    padding: 10px 15px 15px;
  }
  .index__btn .text dt {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .index {
    padding: 40px 0 0;
  }
  .index__wrap {
    display: block;
  }
  .index__unit {
    width: 98%;
    max-width: 480px;
    margin: auto;
  }
  .index__unit:first-child {
    margin-bottom: 30px;
  }
  .index__btn .text {
    padding: 15px 20px 25px;
  }
}
@media screen and (max-width: 480px) {
  .index__btn-ttl {
    font-size: 24px;
    font-size: 2.4rem;
  }
  .index__btn-ttl::before {
    width: 10px;
    height: 20px;
  }
  .index__btn .text {
    padding: 1em;
  }
  .index__btn .text dt {
    font-size: 16px;
    font-size: 1.6rem;
    padding-bottom: 0.25em;
  }
  .index__btn .text dd {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.recruit_bannar{
	width:100%;
	text-align:center;
	padding:100px 0;
}

.recruit_bannar img{
	width:95%;
	max-width:1000px;
}

.recruit_bannar img:hover{
	opacity:0.7;
}

.recruit_bannar_sp{
	display:none;
	width:100%;
	text-align:center;
	padding:100px 0;
}

.recruit_bannar_sp img{
	width:95%;
	max-width:400px;
}

.recruit_bannar_sp img:hover{
	opacity:0.7;
}



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

	.recruit_bannar{
		display:none;
	}

	.recruit_bannar_sp{
		display:block;
	}



}