  @charset "utf-8";

/*--------------------------------------------
エージェント別
--------------------------------------------*/
/**** pc ****/
.u-pc {
  display: block !important;
}

.u-pc__flex {
  display: flex !important;
}

.u-pc__inline {
  display: inline !important;
}

.u-sp,
.u-sp__flex,
.u-sp__inline,
.u-tab,
.u-tab__flex,
.u-tab__inline {
  display: none !important;
}

/**** tab ****/
@media only screen and (max-width: 1200px) {
  .u-pc,
  .u-pc__flex,
  .u-pc__inline {
    display: none !important;
  }

  .u-tab {
    display: block !important;
  }

  .u-tab__flex {
    display: flex !important;
  }

  .u-tab__inline {
    display: inline !important;
  }
}

/**** pc tab ****/
.u-pc_tab__flex {
  display: flex !important;
}

/**** sp ****/
@media only screen and (max-width: 750px) {
  .u-pc,
  .u-pc__flex,
  .u-pc__inline,
  .u-pc_tab__flex {
    display: none !important;
  }

  .u-sp {
    display: block !important;
  }

  .u-sp__flex {
    display: block !important;
  }

  .u-sp__inline {
    display: inline !important;
  }
}


/*--------------------------------------------
フォント
--------------------------------------------*/ 
.u-fn_noto-sans-jp {
  font-family: "Noto Sans JP", sans-serif;
}
/* 300;400;500;600;700;800;900 */

.u-fn_familjen-grotesk {
  font-family: "Familjen Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}
/* 400;500;700 */


/*--------------------------------------------
注釈
--------------------------------------------*/ 
.u-note {
  display: block;
  font-size: 13px;
  line-height: 1.8em;
  margin-top: 0.5em !important;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .u-note {
    font-size: 3.055vw;
  }
}


/*--------------------------------------------
hoverで半透明
--------------------------------------------*/ 
.u-hover:hover {
  opacity: 0.7;
  transition-duration: 0.2s;
}


/*--------------------------------------------
IC 外部リンク 
--------------------------------------------*/ 
.u-ic_outside {
  display: inline-block;
  padding-right: 1.2em !important;
  position: relative;
}

.u-ic_outside::after {
  content: "";
  background: url(/freshers/assets/images/ic_outside.svg) no-repeat;
  background-size: 0.75em;
  background-position: right top 0.2em;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* 白 */
.u-ic_outside_w {
  display: inline-block;
  padding-right: 1.2em !important;
  position: relative;
}

.u-ic_outside_w::after {
  content: "";
  background: url(/freshers/assets/images/ic_outside_w.svg) no-repeat;
  background-size: 0.75em;
  background-position: right top 0.2em;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}



/*--------------------------------------------
IC 矢印 白
--------------------------------------------*/ 
.u-ic_arrow_w {
  display: inline-block;
  padding-right: 1.2em !important;
  position: relative;
}

.u-ic_arrow_w::after {
  content: "";
  background: url(/freshers/assets/images/ic_arrow_w.svg) no-repeat;
  background-size: cover;
  width: 4px;
  height: 8px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1em;
  margin: auto;
}


/*--------------------------------------------
段落
--------------------------------------------*/
.u-sentence {
  line-height: 2em;
  text-align: justify;
}


/*--------------------------------------------
カラー
--------------------------------------------*/
.u-fc_white {
  color: #fff;
}

.u-fc_blue {
  color: #0035C3;
}


/*--------------------------------------------
リンク　カラー
--------------------------------------------*/
.u-txtlink {
  color: #0035C3;
  border-bottom: solid 1px #0035C3;
}


/*--------------------------------------------
wavy
--------------------------------------------*/
/* wavy_01 */
.u-wavy_01 {
  margin-top: -4.5vw;
  position: relative;
  width: 100%;
  mask-image: url(/freshers/assets/images/mask.png);
  mask-size: 200% auto; /* マスク画像の2倍 */
  mask-position: center top;
  animation: mask-animation 35s infinite linear;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .u-wavy_01 {
    mask-image: url(/freshers/assets/images/mask_sp.svg); /* データ容量の問題でSVG */
    mask-size: 200vw auto; /* マスク画像の2倍 */
    mask-position: center top;
    animation: mask-animation 25s infinite linear;
  }
}

@keyframes mask-animation {
  0% {
    mask-position: 0% 0%;
  }
  100% {
    mask-position: 200% 0%; /* mask-sizeと同じ数値 */
  }
}


/* wavy_02 「wavy_01」のちょとずらし */
.u-wavy_02 {
  margin-top: -4.5vw;
  position: relative;
  width: 100%;
  mask-image: url(/freshers/assets/images/mask.png);
  mask-size: 200% auto; /* マスク画像の2倍 */
  mask-position: center top;
  animation: mask-animation_02 30s infinite linear;

}
/**** sp ****/
@media only screen and (max-width:750px) {
  .u-wavy_02 {
    mask-image: url(/freshers/assets/images/mask_sp.svg); /* データ容量の問題でSVG */
    mask-size: 200% auto; /* マスク画像の2倍 */
    mask-position: center top;
    animation: mask-animation 20s infinite linear;
  }
}

@keyframes mask-animation_02 {
  0% {
    mask-position: -40% 0%;
  }
  100% {
    mask-position: 160% 0%; /* mask-sizeと同じ数値 */
  }
}



/*--------------------------------------------
スクロールでフェードイン
--------------------------------------------*/
.u-fadein {
	opacity: 0;
	transform: translate(0, 1.111vw);
	transition: all 1s ease-out;
}


/*--------------------------------------------
スライド表示　共通
--------------------------------------------*/
.u-slidein {
  overflow: hidden;
  transform: translate(-100%, 0);
  transition: transform 1.5s;
}

.u-slidein span {
  display: inline-block;
  transform: translate(100%, 0);
  transition: transform 1.5s;
}

.u-visible,
.u-visible span {
  transform: translate(0, 0) !important;
  opacity: 1 !important;
}