@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes focusItem {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 96, 16, 0);
            box-shadow: 0 0 0 0 rgba(255, 96, 16, 0);
  }
  40% {
    -webkit-box-shadow: 0 0 1px 3px rgba(255, 96, 16, 0.5);
            box-shadow: 0 0 1px 3px rgba(255, 96, 16, 0.5);
  }
  50% {
    -webkit-box-shadow: 0 0 0px 5px rgba(255, 96, 16, 0.3);
            box-shadow: 0 0 0px 5px rgba(255, 96, 16, 0.3);
  }
  85% {
    -webkit-box-shadow: 0 0 0 8px rgba(255, 96, 16, 0.1);
            box-shadow: 0 0 0 8px rgba(255, 96, 16, 0.1);
  }
  90% {
    -webkit-box-shadow: 0 0 0 8px rgba(255, 96, 16, 0.07);
            box-shadow: 0 0 0 8px rgba(255, 96, 16, 0.07);
  }
  100% {
    -webkit-box-shadow: 0 0 0 8px rgba(255, 96, 16, 0.05);
            box-shadow: 0 0 0 8px rgba(255, 96, 16, 0.05);
  }
}

@keyframes focusItem {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 96, 16, 0);
            box-shadow: 0 0 0 0 rgba(255, 96, 16, 0);
  }
  40% {
    -webkit-box-shadow: 0 0 1px 3px rgba(255, 96, 16, 0.5);
            box-shadow: 0 0 1px 3px rgba(255, 96, 16, 0.5);
  }
  50% {
    -webkit-box-shadow: 0 0 0px 5px rgba(255, 96, 16, 0.3);
            box-shadow: 0 0 0px 5px rgba(255, 96, 16, 0.3);
  }
  85% {
    -webkit-box-shadow: 0 0 0 8px rgba(255, 96, 16, 0.1);
            box-shadow: 0 0 0 8px rgba(255, 96, 16, 0.1);
  }
  90% {
    -webkit-box-shadow: 0 0 0 8px rgba(255, 96, 16, 0.07);
            box-shadow: 0 0 0 8px rgba(255, 96, 16, 0.07);
  }
  100% {
    -webkit-box-shadow: 0 0 0 8px rgba(255, 96, 16, 0.05);
            box-shadow: 0 0 0 8px rgba(255, 96, 16, 0.05);
  }
}

.scrollAction {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 74px;
  background-color: rgba(255, 243, 216, 0.9);
  -webkit-box-shadow: 0 -1px 6px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 -1px 6px 0 rgba(0, 0, 0, 0.1);
  z-index: 100;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

.scrollAction.is-show {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.scrollAction__contents {
  width: 569px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin: 10px auto 0;
}

.scrollAction__catchArea {
  width: 293px;
}

.scrollAction__catchArea img {
  width: 112px;
  margin-bottom: -5px;
}

.scrollAction__catchArea .scrollAction__title {
  font-weight: bold;
  font-size: 24px;
  line-height: 1;
  text-align: right;
}

.scrollAction__catchArea .scrollAction__title span {
  font-size: 20px;
}

.scrollAction__catchArea .scrollAction__title em {
  font-style: normal;
  color: #FF6010;
}

.scrollAction__btnArea .btnAct--inquiry {
  width: 244px;
  padding: 15px 15px 13px 47px;
  font-size: 16px;
}

.scrollAction__btnArea .btnAct--inquiry span {
  width: 30px;
  height: 44px;
  padding: 9px 10px;
  font-size: 12px;
  line-height: 1.3;
}

.scrollAction__btnArea .btnAct--inquiry em {
  font-style: normal;
}

.footer {
  padding: 30px 0 94px;
}
