/* =====================
  loading animation
===================== */
#loading{
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #007BC3;
  z-index: 999999;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
	
#loading .logo{
  display: none;
  z-index: 10;
}
#loading .border1 {
  font-size: 45px;
  display: none;
  z-index: 8;
}	
#loading .border2 {
  font-size: 45px;
  display: none;
  z-index: 9;
}	

.border1 {
  animation-name: fadeInAnime;
  animation-fill-mode:backwards;
  animation-duration:1s;
  animation-timing-function:ease;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #5aafdb;
	
  left: 0;
}

@keyframes fadeInAnime{
  0% {
	  opacity: 1;
    height: 0%;
  }
  100% {
	  opacity: 1;
	  height: 80%;
  }
  }
	
@media (max-width: 767px) {
#loading .logo{
	width: 70%;
	}
}
	

.border2 {
animation-name: fadeInAnime2;
animation-fill-mode:backwards;
animation-duration:1s;
animation-timing-function:ease;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #fff;
  left: 0;
}

@keyframes fadeInAnime2{
  0% {
	  opacity: 1;
    height: 0%;
  }
  100% {
	  opacity: 1;
	  height: 75%;
  }
}



/* =====================
  topnews
===================== */

@keyframes topnews__day-anim{
  0%{
    transform: translateY(110%); /*表示範囲外から*/
  }
  10%{
    transform: translateY(0); /*通常の位置へ*/
  }
  20%{
    transform: translateY(0); /*文字が上に揃うまで待機*/
  }
  90%{
    transform: translateY(0); /*下がる*/
  }
  100%{
    transform: translateY(-110%); /*待機*/
  }
}

/*** アニメーションする要素の親 ***/
.topnews__day{
  display: flex; /*　横並びに */
  overflow: hidden; /* はみ出たものを非表示に */
}

/*** アニメーションを適用する要素 ***/
.topnews__day span {
  transform: translateY(110%); /*デフォルトで下に隠す*/
  display: block; /*ブロック要素に*/
  animation: 3.0s topnews__day-anim linear infinite; /* アニメーション */
}

/*** 各span(文字)に遅延時間delayを設定 ***/
.topnews__day span:nth-child(1) {
  animation-delay: 0s;
}
.topnews__day span:nth-child(2) {
  animation-delay: 0.05s;
}
.topnews__day span:nth-child(3) {
  animation-delay: 0.1s;
}
.topnews__day span:nth-child(4) {
  animation-delay: 0.15s;
}
.topnews__day span:nth-child(5) {
  animation-delay: 0.2s;
}
.topnews__day span:nth-child(6) {
  animation-delay: 0.25s;
}
.topnews__day span:nth-child(7) {
  animation-delay: 0.3s;
}
.topnews__day span:nth-child(8) {
  animation-delay: 0.35s;
}
.topnews__day span:nth-child(9) {
  animation-delay: 0.4s;
}
.topnews__day span:nth-child(10) {
  animation-delay: 0.45s;
}


@keyframes topnews__title-anim{
  0%{
    transform: translateY(110%); /*表示範囲外から*/
  }
  10%{
    transform: translateY(0); /*通常の位置へ*/
  }
  20%{
    transform: translateY(0); /*文字が上に揃うまで待機*/
  }
  90%{
    transform: translateY(0); /*下がる*/
  }
  100%{
    transform: translateY(-110%); /*待機*/
  }
}

/*** アニメーションする要素の親 ***/
.topnews__title{
  display: flex; /*　横並びに */
  overflow: hidden; /* はみ出たものを非表示に */
}

/*** アニメーションを適用する要素 ***/
.topnews__title span {
  transform: translateY(110%); /*デフォルトで下に隠す*/
  display: block; /*ブロック要素に*/
  animation: 3.0s topnews__day-anim linear infinite; /* アニメーション */
  animation-delay: .4s;
}


/* =====================
  topnews setting
===================== */

.topnews {
  margin-top: 100px;
  padding: 0 9.7222222222vw 0 5.5555555556vw;
}

.topnews ul li:not(:first-child){
	display: none;
}

@media screen and (max-width: 767px) {
  .topnews {
    margin-top: 80px;
	margin-bottom: 80px;
  }
}
.topnews ul {
  width: 710px;
  margin-left: auto;
}
@media screen and (max-width: 1020px) {
  .topnews ul {
    width: 100%;
  }
}
.topnews ul li a {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  flex-wrap: wrap;
}
.topnews ul li a p {
  margin-right: clamp(12px, 1.6666666667vw, 24px);
  font-weight: 700;
  font-size: 14px;
  color: #007BC3;
}
.topnews ul li a .topnews__day {
  margin-right: min(1.1111111111vw, 16px);
}
.topnews ul li a .topnews__day span {
  font-weight: 600;
  font-size: 12px;
  color: #007BC3;
}
.topnews ul li a .topnews__title span {
  font-size: 12px;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .topnews ul li a .topnews__title span {
    display: block;
    line-height: 150%;
  }
}


/* =====================
  fv setting
===================== */
.fv {
  margin-top: 55px;
  margin-bottom: min(17.36vw, 250px);
}
@media screen and (max-width: 767px) {
  .fv {
    height: 470px;
    margin-top: 25px;
    margin-bottom: 180px;
  }
}
.fv__inner {
    margin: 0 2.7777777778vw;
    position: relative;
    border-radius: 20px 20px 0 0;
	  overflow: hidden;
	  z-index: 1;
}
.fv__inner iframe{
    object-fit: cover;
    /*border-radius: 20px 20px 0 0;*/
}
@media screen and (max-width: 767px) {
  .fv__inner {
    height: 100%;
  }
  .fv__inner img {
    height: 100%;
    object-fit: cover;
  }
.fv__inner iframe{
	height: 100%;
	transform: scale(3)!important;
	}
}

.fv-iframe{
	padding:56.25% 0 0 0;
	position:relative;
}

@media screen and (max-width: 767px) {
.fv-iframe{
	padding:56.25% 0 0 0;
	position:relative;
	height:100%;
}
	
}

.fv__catch {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -59%);
  text-align: center;
  color: #007BC3;
}
.fv__catch h2 {
  margin-bottom: 15px;
  font-weight: 400;
  letter-spacing: 0.35em;
  font-size: clamp(40px, 4.1666666667vw, 60px);
}
@media screen and (max-width: 767px) {
  .fv__catch h2 {
    line-height: 130%;
    padding-left: 0.35em;
  }
}
.fv__catch p {
  font-size: 12px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .fv__catch p {
    font-size: 10px;
  }
}

/* =====================
  service setting
===================== */
.service {
  position: relative;
  margin-bottom: 17.3611111111vw;
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .service {
    margin-bottom: 130px;
    padding-bottom: 0;
  }
}
.service::before {
  content: "";
  width: 54.51%;
  height: 100%;
  background: #F8F8F8;
  border-radius: 0 20px 0 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .service::before {
    width: 80%;
    height: 45%;
  }
}
.service h2 {
  position: relative;
  top: 50px;
  color: #007BC3;
  font-size: clamp(70px, 13.8888888889vw, 200px);
  letter-spacing: 0.05em;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .service h2 {
    top: -40px;
    text-align: center;
  }
}
.service__block {
  display: -webkit-box;
  display: flex;
  position: relative;
  flex-wrap: wrap;
}
.service__figure {
  width: min(39.4444444444vw, 568px);
  position: absolute;
  top: 0;
  right: 60%;
}
@media screen and (max-width: 767px) {
  .service__figure {
    width: 250px;
    position: relative;
    top: 30px;
    right: auto;
    left: 0px;
  }
}
.service__figure svg {
  width: 100%;
}
.service__figure p {
  width: min(39.4444444444vw, 568px);
  font-weight: 900;
  font-size: clamp(10px, 1.6666666667vw, 24px);
  color: #666666;
  text-align: center;
  /*text-shadow: 4px 4px 0 #FFF, -4px -4px 0 #FFF, -4px 4px 0 #FFF, 4px -4px 0 #FFF, 0px 4px 0 #FFF, -4px 0 #FFF, -4px 0 0 #FFF, 4px 0 0 #FFF;*/
  text-shadow: 2px 2px 2px #fff, -2px -2px 2px #fff,-2px 2px 2px #fff,  2px -2px 2px #fff;
  position: absolute;
  /*top: 48%;
  left: -26px;*/
  top: 43%;
  left: -22px;
}
@media screen and (max-width: 767px) {
  .service__figure p {
    left: calc(50% - 1.5em);
    transform: translate(-50%, 0);
    /*text-shadow: 2px 2px 0 #FFF, -2px -2px 0 #FFF, -2px 2px 0 #FFF, 2px -2px 0 #FFF, 0px 2px 0 #FFF, -2px 0 #FFF, -2px 0 0 #FFF, 2px 0 0 #FFF;*/
    text-shadow: 2px 2px 2px #fff, -2px -2px 2px #fff,-2px 2px 2px #fff,  2px -2px 2px #fff;
  }
}
.service .img-pc {
  width: clamp(500px, 42.8472222222vw, 617px);
  position: absolute;
  top: 53%;
  right: 30%;
}
@media screen and (max-width: 767px) {
  .service .img-pc {
    width: 250px;
    top: 18%;
    right: auto;
    left: 80px;
  }
}
.service__text {
  width: 40%;
  height: 100%;
  margin: 80px 0 0 auto;
}
@media screen and (max-width: 767px) {
  .service__text {
    width: 100%;
  }
}
.service__text h3 {
  margin-bottom: 20px;
  font-size: min(2.0833333333vw, 30px);
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .service__text h3 {
    font-size: 20px;
  }
}
.service__text p {
  line-height: 200%;
  font-size: clamp(14px, 1.1111111111vw, 16px);
}
.service__text .viewmore-large {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .service__text .viewmore-large {
    margin-top: 30px;
  }
}

/* =====================
  aboutus setting
===================== */
.aboutus {
  position: relative;
  margin-bottom: 17.3611111111vw;
}
@media screen and (max-width: 767px) {
  .aboutus {
    margin-bottom: 210px;
  }
}
.aboutus .textflow {
  display: -webkit-box;
  display: flex;
  margin: 0 auto 40px;
  width: 100%;
  font-size: 28px;
  text-align: center;
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .aboutus .textflow {
    top: -50px;
  }
}
.aboutus .textflow p {
  display: inline-block;
  margin-right: 70px;
  white-space: nowrap;
  animation: flow 45s linear infinite;
  font-size: min(13.8888888889vw, 200px);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #F8F8F8;
}
@media screen and (max-width: 767px) {
  .aboutus .textflow p {
    font-size: 120px;
  }
}
@keyframes flow {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.aboutus h2 {
  margin-bottom: 20px;
  padding-top: 9.7222222222vw;
  font-size: min(3.4722222222vw, 50px);
  letter-spacing: 0.15em;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .aboutus h2 {
    font-size: 29px;
  }
}
.aboutus h2 span {
  display: block;
}
.aboutus__text {
  margin-bottom: 40px;
  line-height: 200%;
}
@media screen and (max-width: 767px) {
  .aboutus__text {
    margin-bottom: 30px;
  }
}

/* =====================
  recruit setting
===================== */
.recruit {
  margin-bottom: 17.3611111111vw;
}
@media screen and (max-width: 767px) {
  .recruit {
    margin-bottom: 200px;
  }
}
.recruit__catch {
  color: #007BC3;
  font-size: min(6.5277777778vw, 94px);
  line-height: 130%;
  font-weight: 700;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .recruit__catch {
    font-size: 32px;
  }
}
.recruit__title {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  margin-top: 8.3333333333vw;
  margin-bottom: 54px;
}
@media screen and (max-width: 767px) {
  .recruit__title {
    display: block;
    margin-top: 25px;
    margin-bottom: 35px;
  }
}
.recruit__title > div:first-child {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  gap: 0 30px;
}
@media screen and (max-width: 767px) {
  .recruit__title > div:first-child {
    gap: 0 10px;
  }
}
.recruit__title > div:first-child h2 {
  color: #007BC3;
  font-weight: 600;
  font-size: 32px;
}
@media screen and (max-width: 767px) {
  .recruit__title > div:first-child h2 {
    font-size: 22px;
  }
}
.recruit__title > div:first-child .jp {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .recruit__title > div:first-child .jp {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .recruit__title .viewmore-small {
    display: none;
  }
}
.recruit__links {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  gap: 40px 0;
}
@media screen and (max-width: 767px) {
  .recruit__links {
    margin-bottom: 60px;
    gap: 30px 0;
  }
}
.recruit__box {
  width: 50%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .recruit__box {
    width: 100%;
  }
}
.recruit__pic {
  width: 100%;
  overflow: hidden;
  border-radius: 20px 0 0 0;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .recruit__pic {
    height: 135px;
    border-radius: 10px 0 0 0;
  }
}
.recruit__pic .thumbnail {
  width: 100%;
  overflow: hidden;
}
.recruit .businessform {
  border-radius: 0 20px 0 0;
}
@media screen and (max-width: 767px) {
  .recruit .businessform {
    border-radius: 10px 0 0 0;
  }
}
.recruit .recruit__pic > div {
  width: 100%;
  height: 240px;
}
@media screen and (max-width: 767px) {
  .recruit .recruit__pic > div {
    height: auto;
  }
}
.recruit .recruit__pic:hover > div {
  transform: scale(1.05, 1.05);
  transition: all 1s ease 0s;
}
.recruit .workstyle {
  border-radius: 0 0 0 20px;
}
@media screen and (max-width: 767px) {
  .recruit .workstyle {
    border-radius: 10px 0 0 0;
  }
}
.recruit .peopleculture {
  border-radius: 0 0 20px 0;
}
@media screen and (max-width: 767px) {
  .recruit .peopleculture {
    border-radius: 10px 0 0 0;
  }
}
.recruit .new {
  border-radius: 0 20px 0 0;
}
@media screen and (max-width: 767px) {
  .recruit .new {
    border-radius: 10px 0 0 0;
  }
}
.recruit__btn {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  margin-top: 10px;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .recruit__btn {
    flex-wrap: wrap;
    -webkit-box-pack: end;
    justify-content: flex-end;
    padding: 0;
  }
}
.recruit__btn h3 {
  font-weight: 600;
  font-size: clamp(16px, 1.6666666667vw, 24px);
}
@media screen and (max-width: 767px) {
  .recruit__btn h3 {
    width: 100%;
    font-size: 18px;
    text-align: right;
  }
}
.recruit__btn h3 span {
  display: inline-block;
  margin-left: 10px;
  font-weight: 700;
  font-size: 12px;
}
@media screen and (max-width: 1020px) {
  .recruit__btn h3 span {
    display: block;
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .recruit__btn h3 span {
    display: inline-block;
    margin-left: 10px;
    font-size: 14px;
  }
}
.recruit .link {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.recruit .saiyou .recruit__btn h3 {
  font-size: 20px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .recruit .saiyou .recruit__btn h3 { 
    font-size: 18px;
  }
}

/* =====================
  blog setting
===================== */
.blog__title {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .blog__title {
    margin-bottom: 35px;
  }
}
.blog__title h2 {
  font-weight: 600;
  font-size: 32px;
  letter-spacing: 0.06em;
  color: #007BC3;
}
@media screen and (max-width: 767px) {
  .blog__title h2 {
    font-size: 22px;
  }
}
.blog li {
  position: relative;
}
.blog li:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .blog li:not(:last-child) {
    margin-bottom: 55px;
  }
}
.blog li .post {
  display: -webkit-box;
  display: flex;
  position: relative;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .blog li .post {
    flex-wrap: wrap;
  }
}
.blog li .post__thumbnail {
  width: min(33.3333333333vw, 480px);
  height: 250px;
  margin-right: 4.17vw;
  overflow: hidden;
  border-radius: 20px 0 0 0;
  transition: all 0.25s ease 0s;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .blog li .post__thumbnail {
    width: 100%;
    height: 175px;
    margin-right: 0;
    border-radius: 10px 0 0 0;
  }
}
.blog li .post__thumbnail span {
  display: block;
  height: 250px;
}
@media screen and (max-width: 767px) {
  .blog li .post__thumbnail span {
    height: 175px;
  }
}
.blog li .post__thumbnail span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog li .post__text {
  width: min(45.8333333333vw, 660px);
  border-top: 1px solid #DCDCDC;
  padding-top: min(2.0833333333vw, 30px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .blog li .post__text {
    width: 100%;
    border: none;
    padding-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .blog li .post__head {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
  }
}
.blog li .post__head .cat {
  color: #007BC3;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.06em;
}
.blog li .post__head .time {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.06em;
}
.blog li .post__title {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 15px;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .blog li .post__title {
    margin-top: 5px;
    position: static;
    transform: none;
  }
}
.blog li .post__title p {
  display: inline;
  font-weight: 400;
  font-size: clamp(14px, 1.3888888889vw, 20px);
  background-image: linear-gradient(90deg, #666666, #666666);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0 1px;
  -webkit-transition: background-size 0.6s;
  transition: background-size 0.6s;
  line-height: 200%;
}
@media screen and (max-width: 767px) {
  .blog li .post__title p {
    line-height: 180%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}
.blog li .post .viewmore-small {
  position: absolute;
  left: 0;
  bottom: 1vw;
}
@media screen and (max-width: 767px) {
  .blog li .post .viewmore-small {
    left: auto;
    right: 0;
    bottom: -5vw;
  }
}
section .post__head {
  width: auto;
  margin: 0;
  display: block;
}
.blog li .post:hover span {
  transform: scale(1.05, 1.05);
  transition: all 1s ease 0s;
}
.blog li .post:hover .post__title p {
  background-size: 100% 1px;
}
.blog li .post:hover .arrow {
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2237%22%20height%3D%228%22%20viewBox%3D%220%200%2037%208%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M36.3536%204.35355C36.5488%204.15829%2036.5488%203.84171%2036.3536%203.64645L33.1716%200.464466C32.9763%200.269204%2032.6597%200.269204%2032.4645%200.464466C32.2692%200.659728%2032.2692%200.976311%2032.4645%201.17157L35.2929%204L32.4645%206.82843C32.2692%207.02369%2032.2692%207.34027%2032.4645%207.53553C32.6597%207.7308%2032.9763%207.7308%2033.1716%207.53553L36.3536%204.35355ZM0%204.5H36V3.5H0V4.5Z%22%20fill%3D%22%23007BC3%22%2F%3E%3Cpath%20d%3D%22M36.3536%204.35355C36.5488%204.15829%2036.5488%203.84171%2036.3536%203.64645L33.1716%200.464466C32.9763%200.269204%2032.6597%200.269204%2032.4645%200.464466C32.2692%200.659728%2032.2692%200.976311%2032.4645%201.17157L35.2929%204L32.4645%206.82843C32.2692%207.02369%2032.2692%207.34027%2032.4645%207.53553C32.6597%207.7308%2032.9763%207.7308%2033.1716%207.53553L36.3536%204.35355ZM16%204.5H36V3.5H16V4.5Z%22%20fill%3D%22white%22%2F%3E%3C%2Fsvg%3E") no-repeat;
  background-size: 100%;
}
.blog li .post:hover .viewmore-small__circle {
  background: #22AEE5;
  border: 1px solid #22AEE5;
  transform: scale(1.4);
}


/* =====================
  明日が楽しみになる世界をつくる。の登場
===================== */
.aboutus .content-wrap h2{
	width:45%;
}
@media screen and (max-width: 767px) {
.aboutus .content-wrap h2{
	width:86%;
}
}
.aboutus__title{
}
	
/*** 下から登場するアニメーション1 ***/
@keyframes up-animation1{
  0%{
    transform: translateY(110%); /*表示範囲外から*/
	  opacity: 0;
  }
  100%{
    transform: translateY(0); /*通常の位置へ*/
	  opacity: 1;
  }
}

/*** アニメーションさせる要素1 ***/
.title_scroll_up1{
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
}
.title_scroll_up1 span{
	transform: translateY(200%); /*下（範囲外）に隠しておく*/
	display: block;
}

/*** スクロールで画面に入った場合 ***/
.title_scroll_up1.active span{
	animation: 0.4s up-animation1 linear forwards; /*一度だけのアニメーション（終了時点で固定）*/
	animation-timing-function:ease-out;
}

/*** 各文字のアニメーション遅延時間 ***/
.title_scroll_up1 span:nth-child(1) {
  animation-delay: 0s;
}
.title_scroll_up1 span:nth-child(2) {
  animation-delay: 0.07s;
}
.title_scroll_up1 span:nth-child(3) {
  animation-delay: 0.14s;
}
.title_scroll_up1 span:nth-child(4) {
  animation-delay: 0.21s;
}
.title_scroll_up1 span:nth-child(5) {
  animation-delay: 0.28s;
}
.title_scroll_up1 span:nth-child(6) {
  animation-delay: 0.35s;
}
.title_scroll_up1 span:nth-child(7) {
  animation-delay: 0.42s;
}
.title_scroll_up1 span:nth-child(8) {
  animation-delay: 0.49s;
}
.title_scroll_up1 span:nth-child(9) {
  animation-delay: 0.56s;
}
.title_scroll_up1 span:nth-child(10) {
  animation-delay: 0.63s;
}
.title_scroll_up1 span:nth-child(11) {
  animation-delay: 0.70s;
}
.title_scroll_up1 span:nth-child(12) {
  animation-delay: 0.77s;
}
.title_scroll_up1 span:nth-child(13) {
  animation-delay: 0.84s;
}
.title_scroll_up1 span:nth-child(14) {
  animation-delay: 0.91s;
}
.title_scroll_up1 span:nth-child(15) {
  animation-delay: 1.08s;
}
.title_scroll_up1 span:nth-child(16) {
  animation-delay: 1.15s;
}
.title_scroll_up1 span:nth-child(17) {
  animation-delay: 1.22s;
}
.title_scroll_up1 span:nth-child(18) {
  animation-delay: 1.29s;
}
.title_scroll_up1 span:nth-child(19) {
  animation-delay: 1.36s;
}
.title_scroll_up1 span:nth-child(20) {
  animation-delay: 1.43s;
}

/* =====================
  would you like to work with us?の登場
===================== */
/*** 下から登場するアニメーション2 ***/
@keyframes up-animation2{
  0%{
    transform: translateY(110%); /*表示範囲外から*/
	  opacity: 0;
  }
  100%{
    transform: translateY(0); /*通常の位置へ*/
	  opacity: 1;
  }
}
/*** アニメーションさせる要素2 ***/
.title_scroll_up2 {
	overflow: hidden;
}
.title_scroll_up2 div{
	/*display: flex;
	flex-wrap: wrap;*/
	float: left;
	margin-right:30px;
	display: flex;
	overflow: hidden;
}
@media screen and (max-width: 767px) {
  .title_scroll_up2 div {
    margin-right: 15px;
  }
}
.title_scroll_up2 div span{
  transform: translateY(200%); /*下（範囲外）に隠しておく*/
	display: block;
}

/*** スクロールで画面に入った場合 ***/
.title_scroll_up2.active div span{
	animation: 0.4s up-animation2 linear forwards; /*一度だけのアニメーション（終了時点で固定）*/
	animation-timing-function:ease-out;
}

/*** 各文字のアニメーション遅延時間 ***/
.title_scroll_up2 div span.a {
  animation-delay: 0s;
}
.title_scroll_up2 div span.b {
  animation-delay: 0.1s;
}
.title_scroll_up2 div span.c {
  animation-delay: 0.2s;
}
.title_scroll_up2 div span.d {
  animation-delay: 0.3s;
}
.title_scroll_up2 div span.e {
  animation-delay: 0.4s;
}
.title_scroll_up2 div span.f {
  animation-delay: 0.5s;
}
.title_scroll_up2 div span.g {
  animation-delay: 0.6s;
}
.title_scroll_up2 div span.h {
  animation-delay: 0.7s;
}
.title_scroll_up2 div span.i {
  animation-delay: 0.8s;
}
.title_scroll_up2 div span.j {
  animation-delay: 0.9s;
}
.title_scroll_up2 div span.k {
  animation-delay: 1.0s;
}
.title_scroll_up2 div span.l {
  animation-delay: 1.1s;
}
.title_scroll_up2 div span.m {
  animation-delay: 1.2s;
}
.title_scroll_up2 div span.n {
  animation-delay: 1.3s;
}
.title_scroll_up2 div span.o {
  animation-delay: 1.4s;
}
.title_scroll_up2 div span.p {
  animation-delay: 1.5s;
}
.title_scroll_up2 div span.q {
  animation-delay: 1.6s;
}
.title_scroll_up2 div span.r {
  animation-delay: 1.7s;
}
.title_scroll_up2 div span.s {
  animation-delay: 1.8s;
}
.title_scroll_up2 div span.t {
  animation-delay: 1.9s;
}
.title_scroll_up2 div span.u {
  animation-delay: 2.0s;
}
.title_scroll_up2 div span.v {
  animation-delay: 2.1s;
}
.title_scroll_up2 div span.w {
  animation-delay: 2.2s;
}
.title_scroll_up2 div span.x {
  animation-delay: 2.3s;
}
.title_scroll_up2 div span.y {
  animation-delay: 2.4s;
}
.title_scroll_up2 div span.z {
  animation-delay: 2.5s;
}

/* =====================
  各コンテンツのふわっとする表示
===================== */

