/* --------------- variables --------------------- */
/* Break Point */
#mv .mvCatch {
  font-weight: 700;
  line-height: 1;
}
@keyframes barExpand {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
@keyframes textFade {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    color: #153AB7;
  }
}
#mv .mvCatch span {
  display: inline-block;
  position: relative;
  overflow: hidden;
  color: transparent;
  animation: textReveal 0.6s ease forwards;
  animation-delay: 0.6s;
}
#mv .mvCatch span:before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  z-index: 1;
  animation: barExpand 0.6s ease forwards;
}
#mv .mvCatch span:after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: #000;
  opacity: 0;
  transform: translateY(10px);
  z-index: 2;
  animation: textFade 0.6s ease forwards;
  animation-delay: 0.6s;
}

.h2 h2 {
  color: #153AB7;
  font-weight: 400;
  line-height: 1;
}
.h2 .entitle {
  font-weight: 700;
  line-height: 1;
}

.commonBtn {
  display: inline-block;
  background-color: #153AB7;
  color: #fff;
  font-weight: 700;
  text-align: center;
  position: relative;
  line-height: 1;
}
.commonBtn.white {
  color: #000000;
  background-color: #fff;
}

#kyoka .kyokaWrap h2 {
  color: #fff;
  font-weight: 700;
  line-height: 1.3;
}
#kyoka .kyokaWrap p {
  color: #fff;
}

#works .h2 {
  text-align: center;
}
#works .worksList li p {
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  #mv {
    background: url(../images/home/mv.webp) no-repeat center/cover;
    width: 100%;
    height: 381px;
  }
  #mv .mvInner {
    max-width: 1206px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    height: 100%;
    padding-bottom: 45px;
  }
  #mv .mvCatch {
    display: flex;
    flex-direction: column;
    gap: 11px;
    font-size: 34px;
  }
  #mv .mvCatch span {
    padding: 8px 10px;
  }
  #mv .mvCatch span:after {
    left: 10px;
    top: 6px;
  }
  .h2 h2 {
    font-size: 16px;
  }
  .h2 .entitle {
    font-size: 28px;
    margin-top: 10px;
  }
  .commonBtn {
    min-width: 195px;
    padding: 15px 23px;
  }
  .commonBtn:after {
    content: "";
    display: inline-block;
    background: url(../images/common/arrow.svg) no-repeat center/cover;
    width: 73px;
    height: 15px;
    position: absolute;
    right: -50px;
    top: calc(50% - 11px);
    transition: 0.3s;
  }
  #aboutus {
    padding: 50px 0 58px;
  }
  #aboutus .aboutusWrap .textWrap > p {
    margin-top: 30px;
  }
  #aboutus .aboutusWrap .textWrap .btnWrap {
    margin-top: 30px;
    text-align: center;
  }
  #aboutus .aboutusWrap figure {
    margin: 30px auto 0;
    max-width: 90%;
    position: relative;
  }
  #aboutus .aboutusWrap figure:after {
    content: "";
    width: 100%;
    height: 100%;
    background: #153AB7;
    background: linear-gradient(180deg, rgb(21, 58, 183) 0%, rgb(255, 255, 25) 100%);
    position: absolute;
    right: -10px;
    bottom: -10px;
  }
  #aboutus .aboutusWrap figure img {
    position: relative;
    z-index: 2;
  }
  #kyoka {
    background: url(../images/home/kyoka_img.webp) no-repeat center/cover;
    width: 100%;
    padding: 40px 20px;
  }
  #kyoka .kyokaWrap {
    padding: 20px;
    background: #153AB7;
    background: linear-gradient(90deg, rgba(21, 58, 183, 0.6) 0%, rgba(255, 255, 25, 0.6) 100%);
  }
  #kyoka .kyokaWrap .btnWrap {
    margin-top: 20px;
    text-align: center;
  }
  #kyoka .kyokaWrap h2 {
    font-size: 20px;
  }
  #kyoka .kyokaWrap p {
    margin-top: 15px;
  }
  #works {
    padding: 45px 0 25px;
  }
  #works .worksList {
    margin-top: 45px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 16px;
  }
  #works .worksList li {
    width: calc(50% - 8px);
  }
  #works .worksList li figure {
    position: relative;
    aspect-ratio: 380/442;
  }
  #works .worksList li figure:after {
    content: "";
    width: 100%;
    height: 100%;
    background: #153AB7;
    background: linear-gradient(180deg, rgb(21, 58, 183) 0%, rgb(255, 255, 25) 100%);
    position: absolute;
    right: -6px;
    bottom: -6px;
  }
  #works .worksList li figure img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #works .worksList li p {
    margin-top: 15px;
    font-size: 16px;
  }
  #works .btnWrap {
    margin-top: 30px;
    text-align: center;
  }
  #recruit {
    padding: 25px 0 45px;
  }
  #recruit .recruitWrap .textWrap > p {
    margin-top: 30px;
  }
  #recruit .recruitWrap .textWrap .btnWrap {
    margin-top: 30px;
    text-align: center;
  }
  #recruit .recruitWrap figure {
    margin: 30px auto 0;
    max-width: 90%;
    position: relative;
  }
  #recruit .recruitWrap figure:after {
    content: "";
    width: 100%;
    height: 100%;
    background: #153AB7;
    background: linear-gradient(180deg, rgb(21, 58, 183) 0%, rgb(255, 255, 25) 100%);
    position: absolute;
    right: -10px;
    bottom: -10px;
  }
  #recruit .recruitWrap figure img {
    position: relative;
    z-index: 2;
  }
}
@media print, screen and (min-width: 768px) {
  #mv {
    background: url(../images/home/mv.webp) no-repeat center/cover;
    width: 100%;
    height: 762px;
  }
  #mv .mvInner {
    max-width: 1206px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    height: 100%;
    padding-bottom: 90px;
  }
  #mv .mvCatch {
    display: flex;
    flex-direction: column;
    gap: 22px;
    font-size: 68px;
  }
  #mv .mvCatch span {
    padding: 16px 20px;
  }
  #mv .mvCatch span:after {
    left: 20px;
    top: 11px;
  }
  .h2 h2 {
    font-size: 22px;
  }
  .h2 .entitle {
    font-size: 48px;
    margin-top: 15px;
  }
  .commonBtn {
    min-width: 195px;
    padding: 15px 23px;
  }
  .commonBtn:hover:after {
    right: -55px;
  }
  .commonBtn:after {
    content: "";
    display: inline-block;
    background: url(../images/common/arrow.svg) no-repeat center/cover;
    width: 73px;
    height: 15px;
    position: absolute;
    right: -50px;
    top: calc(50% - 11px);
    transition: 0.3s;
  }
  #aboutus {
    padding: 100px 0 116px;
  }
  #aboutus .aboutusWrap {
    display: flex;
    align-items: center;
    gap: 58px;
  }
  #aboutus .aboutusWrap .textWrap {
    width: 41%;
  }
  #aboutus .aboutusWrap .textWrap > p {
    margin-top: 40px;
  }
  #aboutus .aboutusWrap .textWrap .btnWrap {
    margin-top: 40px;
  }
  #aboutus .aboutusWrap figure {
    width: 59%;
    position: relative;
  }
  #aboutus .aboutusWrap figure:after {
    content: "";
    width: 100%;
    height: 100%;
    background: #153AB7;
    background: linear-gradient(180deg, rgb(21, 58, 183) 0%, rgb(255, 255, 25) 100%);
    position: absolute;
    right: -12px;
    bottom: -12px;
  }
  #aboutus .aboutusWrap figure img {
    position: relative;
    z-index: 2;
  }
  #kyoka {
    background: url(../images/home/kyoka_img.webp) no-repeat center/cover;
    width: 100%;
    min-height: 554px;
    display: flex;
    align-items: center;
  }
  #kyoka .kyokaWrap {
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 8vw;
    margin-left: auto;
    padding-right: calc((100% - 1206px) / 2);
    width: 70%;
    background: #153AB7;
    background: linear-gradient(90deg, rgba(21, 58, 183, 0.6) 0%, rgba(255, 255, 25, 0.6) 100%);
  }
  #kyoka .kyokaWrap .btnWrap {
    margin-top: 30px;
  }
  #kyoka .kyokaWrap h2 {
    font-size: 35px;
    padding-right: 20px;
  }
  #kyoka .kyokaWrap p {
    margin-top: 30px;
    max-width: 460px;
  }
  #works {
    padding: 90px 0 50px;
  }
  #works .worksList {
    margin-top: 45px;
    display: flex;
    gap: 32px;
  }
  #works .worksList.fade {
    opacity: 1;
  }
  #works .worksList.fade.active {
    animation: none;
  }
  #works .worksList.fade.active li {
    animation: fadeIn 0.6s linear forwards;
    animation-delay: 0.3s;
  }
  #works .worksList.fade.active li:nth-of-type(2) {
    animation-delay: 0.6s;
  }
  #works .worksList.fade.active li:nth-of-type(3) {
    animation-delay: 0.9s;
  }
  #works .worksList li {
    flex: 1;
    opacity: 0;
  }
  #works .worksList li figure {
    position: relative;
    aspect-ratio: 380/442;
  }
  #works .worksList li figure:after {
    content: "";
    width: 100%;
    height: 100%;
    background: #153AB7;
    background: linear-gradient(180deg, rgb(21, 58, 183) 0%, rgb(255, 255, 25) 100%);
    position: absolute;
    right: -10px;
    bottom: -10px;
  }
  #works .worksList li figure img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #works .worksList li p {
    margin-top: 37px;
    font-size: 24px;
  }
  #works .btnWrap {
    margin-top: 45px;
    text-align: center;
  }
  #recruit {
    padding: 50px 0 120px;
  }
  #recruit .recruitWrap {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 58px;
  }
  #recruit .recruitWrap .textWrap {
    width: 41%;
  }
  #recruit .recruitWrap .textWrap > p {
    margin-top: 40px;
  }
  #recruit .recruitWrap .textWrap .btnWrap {
    margin-top: 40px;
  }
  #recruit .recruitWrap figure {
    width: 59%;
    position: relative;
  }
  #recruit .recruitWrap figure:after {
    content: "";
    width: 100%;
    height: 100%;
    background: #153AB7;
    background: linear-gradient(180deg, rgb(21, 58, 183) 0%, rgb(255, 255, 25) 100%);
    position: absolute;
    left: -12px;
    bottom: -12px;
  }
  #recruit .recruitWrap figure img {
    position: relative;
    z-index: 2;
  }
}
/*# sourceMappingURL=map/home.css.map */
