#wrap {
  overflow-x: hidden;
}

.new-content1 {
  width: 1200px;
  padding: 50px 0 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 3px solid #e94a23;
  margin: 0 auto 70px;
  position: relative;
  letter-spacing: .04em;
}

.new-content1 .new-content1__text1 {
  font-size: 24px;
  font-weight: 700;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  top: -40px;
  padding: 20px 40px;
  background-color: #fff;
}

.new-content1 .new-content1__block1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
}

.new-content1 .new-content1__link1 {
  color: #fff;
  width: 100%;
  max-width: 480px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #000;
  -webkit-transition: all ease .2s;
  transition: all ease .2s;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  text-decoration: none;
}

.new-content1 .new-content1__link1:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.new-content1 .new-content1__link1:first-child {
  margin-right: 40px;
}

.new-content1 .new-content1__link1::before {
  content: "";
  border-bottom: solid 2px #e94a23;
  border-right: solid 2px #e94a23;
  width: 12px;
  height: 12px;
  -webkit-transform: rotate(45deg) translateY(-5px);
          transform: rotate(45deg) translateY(-5px);
  display: inline-block;
  margin-right: 24px;
}

.new-content2 {
  margin: 0 auto 50px;
  text-align: center;
}

.new-content2 .new-content2__text1 {
  font-size: 2.4rem;
  line-height: 1.9;
  font-weight: 700;
  margin-bottom: 15px;
}

.new-content2 .new-content2__text2 {
  font-size: 18px;
  line-height: calc(30 /18);
}

.new-content3 {
  width: 1000px;
  margin: 0 auto 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
}

.new-content3::before {
  content: "";
  background-color: #e9e6e5;
  width: 100vw;
  height: 578px;
  position: absolute;
  top: 80px;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  z-index: -1;
}

.new-content3 .new-content3__slider1 {
  width: 480px;
  position: relative;
  padding-bottom: 30px;
}

.new-content3 .new-content3__slider1::before {
  content: "";
  width: 60px;
  height: 60px;
  background-color: #e94a23;
  border-radius: 30px;
  position: absolute;
  left: -30px;
  top: -30px;
  z-index: -1;
}

.new-content3 .new-content3__slider1 .new-content3__content {
  width: 100%;
}

.new-content3 .new-content3__slider1 .new-content3__image {
  overflow: hidden;
  width: 100%;
  position: relative;
  cursor: pointer !important;
}

.new-content3 .new-content3__slider1 .new-content3__image img {
  width: 100%;
  -webkit-transition: all ease .2s;
  transition: all ease .2s;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.new-content3 .new-content3__slider1 .new-content3__image::after {
  content: "";
  background-color: rgba(255, 255, 255, 0.2);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: ease all .2s;
  transition: ease all .2s;
}

.new-content3 .new-content3__slider1 .new-content3__image:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.new-content3 .new-content3__slider1 .new-content3__image:hover::after {
  opacity: 1;
}

.new-content3 .new-content3__slider1 .new-content3__text1 {
  font-size: 20px;
  font-weight: 700;
  margin: 30px 0;
}

.new-content3 .new-content3__slider1 .new-content3__text2 {
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 40px;
}

@-webkit-keyframes underLine {
  0% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: right top;
            transform-origin: right top;
  }
  50% {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: right top;
            transform-origin: right top;
    opacity: 1;
  }
  51% {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: right top;
            transform-origin: right top;
    opacity: 0;
  }
  52% {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
    opacity: 0;
  }
  53% {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
}

@keyframes underLine {
  0% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: right top;
            transform-origin: right top;
  }
  50% {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: right top;
            transform-origin: right top;
    opacity: 1;
  }
  51% {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: right top;
            transform-origin: right top;
    opacity: 0;
  }
  52% {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
    opacity: 0;
  }
  53% {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
}

.new-content3 .new-content3__slider1 .new-content3__link1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.new-content3 .new-content3__slider1 .new-content3__link1 a {
  font-size: 16px;
  font-weight: 700;
  color: #e94a23;
  padding-bottom: 7px;
  position: relative;
  text-decoration: none;
  overflow: hidden;
}

.new-content3 .new-content3__slider1 .new-content3__link1 a::before {
  content: "";
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
  position: absolute;
  width: 100%;
  height: 3px;
  background: #e94a23;
  bottom: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

.new-content3 .new-content3__slider1 .new-content3__link1 a:hover::before {
  -webkit-animation: underLine 1.4s ease;
          animation: underLine 1.4s ease;
}

.new-content3 .new-content3__slider2 {
  width: 480px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.new-content3 .new-content3__slider2 .new-content3__item {
  width: 230px;
  margin-bottom: 22px;
  position: relative;
  cursor: pointer;
}

.new-content3 .new-content3__slider2 .new-content3__item::after {
  content: "";
  background-color: rgba(255, 255, 255, 0.2);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: ease all .2s;
  transition: ease all .2s;
}

.new-content3 .new-content3__slider2 .new-content3__item:hover::after {
  opacity: 1;
}

.new-content3 .new-content3__slider2 .new-content3__item:nth-child(n + 5) {
  margin-bottom: 0;
}

.new-content3 .new-content3__slider2 .new-content3__item img {
  width: 100%;
}

.new-content3 .new-content3__slider2 .new-content3__item.thumbnail-current {
  border: 3px solid #e94a23;
}

.new-content3 .prev-arrow {
  display: block;
  width: 61px;
  height: 61px;
  position: absolute;
  bottom: 0;
  right: -430px;
}

.new-content3 .prev-arrow::before {
  content: "";
  width: 61px;
  height: 61px;
  background-image: url("/ihinavi/common/img/whats_hebelhaus/arrow_prev.png");
  background-size: cover;
  background-position: 0 0;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  -webkit-transition: .4s ease all;
  transition: .4s ease all;
}

.new-content3 .prev-arrow::after {
  content: "";
  width: 61px;
  height: 61px;
  background-image: url("/ihinavi/common/img/whats_hebelhaus/arrow_prev_hover.png");
  background-size: cover;
  background-position: 0 0;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: .4s ease all;
  transition: .4s ease all;
}

.new-content3 .prev-arrow:hover::before {
  opacity: 0;
}

.new-content3 .prev-arrow:hover::after {
  opacity: 1;
}

.new-content3 .next-arrow {
  display: block;
  width: 61px;
  height: 61px;
  position: absolute;
  bottom: 0;
  right: -520px;
}

.new-content3 .next-arrow::before {
  content: "";
  width: 61px;
  height: 61px;
  background-image: url("/ihinavi/common/img/whats_hebelhaus/arrow_next.png");
  background-size: cover;
  background-position: 0 0;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  -webkit-transition: .4s ease all;
  transition: .4s ease all;
}

.new-content3 .next-arrow::after {
  content: "";
  width: 61px;
  height: 61px;
  background-image: url("/ihinavi/common/img/whats_hebelhaus/arrow_next_hover.png");
  background-size: cover;
  background-position: 0 0;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: .4s ease all;
  transition: .4s ease all;
}

.new-content3 .next-arrow:hover::before {
  opacity: 0;
}

.new-content3 .next-arrow:hover::after {
  opacity: 1;
}

.new-content4 {
  width: 100%;
  margin: 0 auto 74px;
}

.new-content4 img {
  width: 100%;
}

.lightboxOverlay {
  position: fixed;
  top: 0;
  left: 0;
}

#lightbox {
  position: fixed;
  top: 50% !important;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .new-content1 {
    width: 100%;
    padding: 50px 0 40px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border: 3px solid #e94a23;
    border-right: none;
    border-left: none;
    margin: 45px auto 50px;
    position: relative;
    letter-spacing: .04em;
  }
  .new-content1 .new-content1__text1 {
    font-size: 16px;
    font-weight: 700;
    width: 100%;
    max-width: 240px;
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
    top: -40px;
    text-align: center;
    padding: 17px;
    background-color: #fff;
  }
  .new-content1 .new-content1__block1 {
    display: block;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 auto;
  }
  .new-content1 .new-content1__link1 {
    color: #fff;
    width: 100%;
    max-width: 480px;
    height: auto;
    padding: 20px 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: #000;
    -webkit-transition: all ease .2s;
    transition: all ease .2s;
    font-size: 15px;
    font-weight: 700;
    position: relative;
    text-decoration: none;
    margin: 0 auto;
    text-align: center;
  }
  .new-content1 .new-content1__link1:hover {
    background-color: rgba(0, 0, 0, 0.7);
  }
  .new-content1 .new-content1__link1:first-child {
    margin-right: auto;
    margin-bottom: 8px;
  }
  .new-content1 .new-content1__link1::before {
    content: "";
    border-bottom: solid 2px #e94a23;
    border-right: solid 2px #e94a23;
    width: 10px;
    height: 10px;
    -webkit-transform: rotate(45deg) translateY(-5px);
            transform: rotate(45deg) translateY(-5px);
    display: inline-block;
    margin-right: 24px;
  }
  .new-content2 {
    margin: 0 auto 50px;
    text-align: center;
  }
  .new-content2 .new-content2__text1 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.368;
  }
  .new-content2 .new-content2__text2 {
    font-size: 15px;
    line-height: calc(30 /18);
    text-align: left;
  }
  .new-content3 {
    width: 100%;
    margin: 0 auto;
    display: block;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    position: relative;
  }
  .new-content3::before {
    content: "";
    background-color: #e9e6e5;
    width: 100vw;
    height: 80%;
    position: absolute;
    top: auto;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
    z-index: -1;
  }
  .new-content3 .new-content3__slider1 {
    width: 100%;
    position: relative;
    padding: 0 10px 250px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 auto;
  }
  .new-content3 .new-content3__slider1 img {
    width: 100%;
  }
  .new-content3 .new-content3__slider1::before {
    content: "";
    width: 30px;
    height: 30px;
    background-color: #e94a23;
    border-radius: 30px;
    position: absolute;
    left: -5px;
    top: -15px;
    z-index: -1;
  }
  .new-content3 .new-content3__slider1 .new-content3__content {
    width: 100%;
  }
  .new-content3 .new-content3__slider1 .new-content3__text1 {
    font-size: 18px;
    font-weight: 700;
    margin: 20px 0;
  }
  .new-content3 .new-content3__slider1 .new-content3__text2 {
    font-size: 13px;
    margin: 0 0 15px;
  }
  @-webkit-keyframes underLine {
    0% {
      -webkit-transform: scale(1, 1);
              transform: scale(1, 1);
      -webkit-transform-origin: right top;
              transform-origin: right top;
    }
    50% {
      -webkit-transform: scale(0, 1);
              transform: scale(0, 1);
      -webkit-transform-origin: right top;
              transform-origin: right top;
      opacity: 1;
    }
    51% {
      -webkit-transform: scale(0, 1);
              transform: scale(0, 1);
      -webkit-transform-origin: right top;
              transform-origin: right top;
      opacity: 0;
    }
    52% {
      -webkit-transform: scale(0, 1);
              transform: scale(0, 1);
      -webkit-transform-origin: left top;
              transform-origin: left top;
      opacity: 0;
    }
    53% {
      -webkit-transform: scale(0, 1);
              transform: scale(0, 1);
      -webkit-transform-origin: left top;
              transform-origin: left top;
      opacity: 1;
    }
    100% {
      -webkit-transform: scale(1, 1);
              transform: scale(1, 1);
      -webkit-transform-origin: left top;
              transform-origin: left top;
    }
  }
  @keyframes underLine {
    0% {
      -webkit-transform: scale(1, 1);
              transform: scale(1, 1);
      -webkit-transform-origin: right top;
              transform-origin: right top;
    }
    50% {
      -webkit-transform: scale(0, 1);
              transform: scale(0, 1);
      -webkit-transform-origin: right top;
              transform-origin: right top;
      opacity: 1;
    }
    51% {
      -webkit-transform: scale(0, 1);
              transform: scale(0, 1);
      -webkit-transform-origin: right top;
              transform-origin: right top;
      opacity: 0;
    }
    52% {
      -webkit-transform: scale(0, 1);
              transform: scale(0, 1);
      -webkit-transform-origin: left top;
              transform-origin: left top;
      opacity: 0;
    }
    53% {
      -webkit-transform: scale(0, 1);
              transform: scale(0, 1);
      -webkit-transform-origin: left top;
              transform-origin: left top;
      opacity: 1;
    }
    100% {
      -webkit-transform: scale(1, 1);
              transform: scale(1, 1);
      -webkit-transform-origin: left top;
              transform-origin: left top;
    }
  }
  .new-content3 .new-content3__slider1 .new-content3__link1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .new-content3 .new-content3__slider1 .new-content3__link1 a {
    font-size: 14px;
    font-weight: 700;
    color: #e94a23;
    padding-bottom: 7px;
    position: relative;
    text-decoration: none;
    overflow: hidden;
  }
  .new-content3 .new-content3__slider1 .new-content3__link1 a::before {
    content: "";
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
    position: absolute;
    width: 100%;
    height: 3px;
    background: #e94a23;
    bottom: 0;
    left: 0;
    pointer-events: none;
    z-index: 2;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
  .new-content3 .new-content3__slider1 .new-content3__link1 a:hover::before {
    -webkit-animation: underLine 1.4s ease-in-out;
            animation: underLine 1.4s ease-in-out;
  }
  .new-content3 .new-content3__slider2 {
    width: 100vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-bottom: 100px;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
  }
  .new-content3 .new-content3__slider2 .new-content3__item {
    width: 163px;
    margin: 0 5px;
    margin-bottom: auto;
  }
  .new-content3 .new-content3__slider2 .new-content3__item:nth-child(n + 5) {
    margin-bottom: 0;
  }
  .new-content3 .new-content3__slider2 .new-content3__item img {
    width: 100%;
  }
  .new-content3 .new-content3__slider2 .new-content3__item.thumbnail-current {
    border: 3px solid #e94a23;
  }
  .new-content3 .prev-arrow {
    display: block;
    width: 40px;
    height: 40px;
    background-image: url("/ihinavi/common/img/whats_hebelhaus/arrow_prev.png"), url("/ihinavi/common/img/whats_hebelhaus/arrow_prev_hover.png");
    background-size: cover,0 0;
    background-position: 0 0;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 40px;
    right: auto;
    left: 0;
    z-index: 3;
  }
  .new-content3 .prev-arrow::before, .new-content3 .prev-arrow::after {
    content: none;
  }
  .new-content3 .next-arrow {
    display: block;
    width: 40px;
    height: 40px;
    background-image: url("/ihinavi/common/img/whats_hebelhaus/arrow_next.png"), url("/ihinavi/common/img/whats_hebelhaus/arrow_next_hover.png");
    background-size: cover,0 0;
    background-position: 0 0;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 40px;
    right: 0;
    z-index: 3;
  }
  .new-content3 .next-arrow::before, .new-content3 .next-arrow::after {
    content: none;
  }
  .new-content3 .slick-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: absolute;
    bottom: 55px;
    left: 50%;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
    z-index: 3;
  }
  .new-content3 .slick-dots li {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background-color: #fff;
    margin: 0 7px;
  }
  .new-content3 .slick-dots li.slick-active {
    background-color: #e94a23;
  }
  .new-content3 .slick-dots button {
    display: none;
  }
  .new-content4 {
    width: 100%;
    margin: 0 auto 45px;
  }
  .new-content4 img {
    width: 100%;
  }
  .pc-only {
    display: none !important;
  }
  .main__lead {
    text-align: center;
    font-size: 19px;
    line-height: 1.368;
    margin-bottom: 20px;
  }
}
