@charset "UTF-8";
/* webfont 変数　*/
/* common-title
-----------------------------------------------------*/
/* ofi */

/*====================================================================

topanimation.css

=====================================================================*/
.main-view {
  position: relative;
}

.main-view__filter {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  display: block;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0;
}

.main-view__add {
  z-index: 2;
  position: absolute;
  top: 0;
  right: 40%;
  width: 100%;
  height: 100%;
  -webkit-transform: skew(-20deg);
  transform: skew(-20deg);
  -webkit-transform-origin: top left;
  transform-origin: top left;
  background: rgba(9, 171, 11, 0.6);
  content: "";
}

.main-view .l-cont {
  z-index: 3;
  position: relative;
  width: 100%;
  height: 100%;
}

.main-view__txt {
  z-index: 4;
  position: absolute;
  top: 50%;
  left: 5%;
  width: 100%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.main-view__catch {
  display: inline-block;
  padding: 1.25em 8%;
  background: 2em;
  background: #fff;
  font-size: calc(1.5rem + 28 * (100vw - 280px) / 1160);
}

.main-view__catch__inner {
  color: #000;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.3;
}

.main-view__catch b {
  color: #09AB0B;
}

.catch-01,
.catch-02,
.catch-03 {
  display: block;
  position: relative;
  padding-right: 0.05em;
}

.catch-01__inner,
.catch-02__inner,
.catch-03__inner {
  display: inline-block;
  line-height: 1em;
}

/*----------------------------------------------
 top amimation用に
 ----------------------------------------------*/
@-webkit-keyframes fadeIn {
  0% {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    opacity: 0;
  }
  100% {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    opacity: 0;
  }
  100% {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    opacity: 1;
  }
}

@-webkit-keyframes overlayIn {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes overlayIn {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

/*伸びたブロックを横に追いやるアニメーション*/
@-webkit-keyframes overlayOutL {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(102%);
    transform: translateX(102%);
  }
}
@keyframes overlayOutL {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(102%);
    transform: translateX(102%);
  }
}

/* effect */
.ef-block1 {
  display: inline-block;
}

.ef-block2 {
  display: inline-block;
}

.ef-block3 {
  display: inline-block;
}

.ef-block4 {
  display: inline-block;
}

.blockeffects--left {
  display: inline-block;
  position: relative;
  width: 100%;
  overflow: hidden;
  vertical-align: bottom;
}

.blockeffects--left:after {
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: #09AB0B;
  -webkit-animation: overlayIn 0.6s 0s cubic-bezier(0.77, 0, 0.175, 1), overlayOutL 0.6s 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  animation: overlayIn 0.6s 0s cubic-bezier(0.77, 0, 0.175, 1), overlayOutL 0.6s 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  content: "";
}

.blockeffects--left > * {
  -webkit-animation: fadeIn 0.1s 0.5s;
  animation: fadeIn 0.1s 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.main-view__bg__img__inner {
  height: 100%;
}

.main-view__bg__img__inner img {
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

.main-view__bg__img__inner.active img {
  -webkit-animation: bg-scale 4s cubic-bezier(0.09, 0.35, 0.66, 0.99) forwards;
  animation: bg-scale 4s cubic-bezier(0.09, 0.35, 0.66, 0.99) forwards;
}

@-webkit-keyframes bg-scale {
  0% {
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

@keyframes bg-scale {
  0% {
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

@media (min-width: 376px) {
  /*====================================================================/
/*--iPhone 以上--
/====================================================================*/
}

@media (min-width: 576px) {
  /*====================================================================/
/*--スマホ 以上--
/====================================================================*/
}

@media (min-width: 576px) and (max-width: 767px) {
  /*====================================================================/
/*--スマホ以上 タブレット iPadmini未満--
/====================================================================*/
}

@media (min-width: 768px) {
  /*====================================================================/
/*--タブレット　iPadmini 以上--
/====================================================================*/
}

@media (min-width: 768px) and (max-width: 1023px) {
  /*====================================================================/
/*--タブレット iPadmini以上 XGAサイズ iPadPro未満--
/====================================================================*/
}

@media (min-width: 1024px) {
  /*====================================================================/
/*--XGAサイズ　iPadPro 以上--
/====================================================================*/
  .main-view__add {
    right: 60%;
  }
  .main-view__catch {
    padding: 1.5em 1.75em;
  }
}

@media (min-width: 1024px) and (max-width: 1535px) {
  /*====================================================================/
/*--XGAサイズ iPadPro以上 PC未満--
/====================================================================*/
}

@media (min-width: 1536px) {
  /*====================================================================/
/*---PC 以上--
/====================================================================*/
  .main-view__catch {
    font-size: 3.25rem;
  }
}

@media (min-width: 1536px) and (max-width: 1919px) {
  /*====================================================================/
/*--px以上 Large PC未満--
/====================================================================*/
}

@media (min-width: 1920px) {
  /*====================================================================/
/*--Large PC 以上--
/====================================================================*/
}

@media (max-width: 1919px) {
  /*====================================================================/
/*--Large PC 未満--
/====================================================================*/
}

@media (max-width: 1535px) {
  /*====================================================================/
/*--PC 未満--
/====================================================================*/
}

@media (max-width: 1023px) {
  /*====================================================================/
/*--XGAサイズ iPadPro 未満--
/====================================================================*/
}

@media (max-width: 767px) {
  /*====================================================================/
/*--タブレット iPadmini 未満--
/====================================================================*/
}

@media (max-width: 575px) {
  /*====================================================================/
/*--iPhone 以下--
/====================================================================*/
}

/*# sourceMappingURL=map/topanimation.css.map */
