/* ====================
Layout
 ==================== */
.l-in {
  position: relative;
  margin: 0 auto;
  padding: 50px 0 0;
  width: 100%;
}

@media screen and (max-width: 960px) {
  .l-in {
    padding: 0 0;
  }
}

.l-in__container {
  position: relative;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  margin: 0 auto;
  width: 100%;
}

.is-load .l-in__container {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
  -webkit-transition: opacity 1.2s cubic-bezier(0.5, 1, 0.89, 1);
  transition: opacity 1.2s cubic-bezier(0.5, 1, 0.89, 1);
}

.l-in__header {
  position: relative;
  margin: 0 auto 42px;
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 960px) {
  .l-in__header {
    padding: 18px 0;
  }
}

.l-in__bg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

@media screen and (min-width: 961px) {
  .l-in__bg {
    display: none;
  }
}

.l-in__bg-item {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  -webkit-transition: opacity 1.2s cubic-bezier(0.5, 1, 0.89, 1), -webkit-transform 0s linear 1.2s;
  transition: opacity 1.2s cubic-bezier(0.5, 1, 0.89, 1), -webkit-transform 0s linear 1.2s;
  transition: opacity 1.2s cubic-bezier(0.5, 1, 0.89, 1), transform 0s linear 1.2s;
  transition: opacity 1.2s cubic-bezier(0.5, 1, 0.89, 1), transform 0s linear 1.2s, -webkit-transform 0s linear 1.2s;
  width: 100%;
  height: 100%;
  content: "";
}

.l-in__bg-item.is-current {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
  -webkit-transition: opacity 1.2s cubic-bezier(0.5, 1, 0.89, 1), -webkit-transform 8s cubic-bezier(0.5, 1, 0.89, 1);
  transition: opacity 1.2s cubic-bezier(0.5, 1, 0.89, 1), -webkit-transform 8s cubic-bezier(0.5, 1, 0.89, 1);
  transition: opacity 1.2s cubic-bezier(0.5, 1, 0.89, 1), transform 8s cubic-bezier(0.5, 1, 0.89, 1);
  transition: opacity 1.2s cubic-bezier(0.5, 1, 0.89, 1), transform 8s cubic-bezier(0.5, 1, 0.89, 1), -webkit-transform 8s cubic-bezier(0.5, 1, 0.89, 1);
}

.is-load .l-in__bg-item.is-current {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.l-in__title {
  display: inline-block;
  position: relative;
  z-index: 0;
  padding: 22px 0;
  text-align: center;
}

.l-in__title::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  width: 96px;
  height: 96px;
  content: "";
}

@media screen and (max-width: 960px) {
  .l-in__title::before {
    width: 60px;
    height: 60px;
  }
}

.l-in__title::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  width: 80px;
  height: 80px;
  content: "";
}

@media screen and (max-width: 960px) {
  .l-in__title::after {
    width: 50px;
    height: 50px;
  }
}

.l-in__title-main {
  display: block;
  position: relative;
  z-index: 1;
  font-size: 28px;
  letter-spacing: 2px;
}

@media screen and (max-width: 960px) {
  .l-in__title-main {
    font-size: 18px;
  }
}

.l-in__title-sub {
  display: block;
  position: relative;
  z-index: 1;
  margin-top: 8px;
  font-size: 14px;
  letter-spacing: 1px;
}

@media screen and (max-width: 960px) {
  .l-in__title-sub {
    margin-top: 4px;
    font-size: 11px;
  }
}

.l-in__inner {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.p-tab_list {
  -webkit-justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto 75px;
  width: 90%;
  font-size: 17px;
}

@media screen and (max-width: 960px) {
  .p-tab_list {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-justify-content: space-between;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 35px;
    font-size: 12px;
  }
}

.p-tab_list__switch {
  position: relative;
  background: #4D4D4D;
  width: 190px;
  text-align: center;
}

@media screen and (min-width: 961px) {
  .p-tab_list__switch + .p-tab_list__switch {
    margin-left: 15px;
  }
}

@media screen and (max-width: 960px) {
  .p-tab_list__switch {
    margin-bottom: 8px;
    width: calc(50% - 4px);
  }
}

.p-tab_list__switch a {
  display: block;
  padding: 15px 0;
  color: #FFF;
}

@media screen and (max-width: 960px) {
  .p-tab_list__switch a {
    padding: 7px 0;
  }
}

@media screen and (min-width: 961px) {
  .p-tab_list__switch {
    -webkit-transition: background 0.5s cubic-bezier(0.5, 1, 0.89, 1);
    transition: background 0.5s cubic-bezier(0.5, 1, 0.89, 1);
  }
  .p-tab_list__switch a {
    -webkit-transition: color 0.5s cubic-bezier(0.5, 1, 0.89, 1);
    transition: color 0.5s cubic-bezier(0.5, 1, 0.89, 1);
  }
  .p-tab_list__switch:hover {
    background: #E6E6E6;
  }
  .p-tab_list__switch:hover a {
    color: #000;
  }
}

.p-tab_list__switch.is-current {
  background: #E6E6E6;
}

.p-tab_list__switch.is-current::after {
  position: absolute;
  bottom: -8px;
  left: calc(50% - 9px);
  border-width: 9px 9px 0 9px;
  border-style: solid;
  border-color: #e6e6e6 transparent transparent transparent;
  width: 0;
  height: 0;
  content: "";
}

@media screen and (max-width: 960px) {
  .p-tab_list__switch.is-current::after {
    bottom: -4px;
    left: calc(50% - 2px);
    border-width: 5px 5px 0 5px;
  }
}

.p-tab_list__switch.is-current a {
  color: #000;
}
/*# sourceMappingURL=heicat.in.css.map */