#main-wrap {
  display: flex;
  width: 100%;
  flex-flow: column;
}

.contents-wrap {
  color: #fff;
}

.top-title {
  text-align: center;
}

.top-title img {
  width: 42%;
}

/******************************************/
/*メインビジュアル*/
#mv-wrap {
  margin-top: 100px;
  text-align: right;
}

#mv-img-pc {
  display: inline;
  width: 55%;
}

#mv-logo {
  position: absolute;
  width: 30%;
  /*top: 20%;*/
  top: 16%;
  left: 13%;
}

#mv-yoyaku {
  position: absolute;
  width: 28%;
  top: 42%;
  left: 14%;
}

#mv-yoyaku:hover {
  opacity: 0.9;
}

#mv-text {
  position: absolute;
  width: 20%;
  /*top: 50%;*/
  top: 45%;
  left: 18%;
}

#mv-text2 {
  position: absolute;
  max-width: 800px;
  width: 100%;
  top: 80%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

#mv-text2 img {
  width: 100%;
}

.mv-text2-img-sp {
  display: none;
}

/*セール*/
#mv-sale {
  position: absolute;
  width: 25%;
  top: 57%;
  left: 16%;
}

#mv-sale img {
  width: 100%;
}

.ssbc-wrap {
  margin-top: 50px;
  font-size: 20px;
  text-align: center;
  color: #fff;
}

.ssbc-wrap a {
  color: #0000EE;
}

.ssbc-wrap a:hover {
  border-bottom: 1px solid #0000EE;
}

/******************************************/
/*更新情報*/
#news-wrap {
  position: relative;
  width: 1185px;
  margin: 80px auto 0;
}

.swiper {
  width: 100%;
  height: 381px;
  overflow: hidden;
}

.swiper-wrapper {
  width: 1198px;
}

.swiper-slide {
  position: relative;
  width: 386px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

.swiper-button-prev {
  left: -59px !important;
}

.swiper-button-next {
  right: -59px !important;
}

.swiper-topic-img {
  width: 343px;
  margin: 0 auto;
}

.swiper-topic-text-wrap {
  position: relative;
  max-width: 386px;
  margin: 0 auto;
}

.swiper-topic-bg {
  width: 100%;
}

.swiper-topic-bg img {
  width: 100%;
}

.swiper-topic-text {
  position: absolute;
  width: 90%;
  height: 60%;
  top: 20%;
  left: 5%;
  font-size: 14px;
  color: black;
  overflow: hidden;
}

.swiper-topic-text a {
  color: blue;
}

.swiper-topic-text a:hover {
  border-bottom: 1px solid blue;
}

.new-icon {
  position: absolute;
  width: 15%;
  top: -1%;
  left: 2%;
  animation: flash2 2s linear infinite;
}

@keyframes flash2 {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

/******************************************/
/*概要*/
#summary-wrap {
  width: 100%;
  margin-top: 50px;
  background: URL(/products/tenkassb/image/top/top02_bg.png) no-repeat;
}

#summary-item-wrap {
  display: flex;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  justify-content: center;
}

#summary-text-wrap {
  width: 50%;
}

#summary-text1 {
  width: 100%;
  margin-top: 10%;
  font-size: max(2.2vw, 40px);
  color: black;
}

#summary-text2 {
  width: 100%;
  margin-top: 3%;
  font-size: 1.5vw;
  font-size: max(1.2vw, 22px);
  color: black;
}

#summary-img {
  display: block;
  width: 40%;
}

#summary-img img {
  width: 100%;
}

/******************************************/
/*製品情報*/
#top-products-wrap {
  margin-top: 100px;
}

#top-products-item-wrap {
  max-width: 1102px;
  width: 100%;
  margin: 50px auto 0;
}

.top-products-item {
  display: flex;
  width: 100%;
  flex-flow: row;
  justify-content: space-between
}

.top-products-img {
  width: 40%;
}

.top-products-text {
  width: 56%;
}

.top-products-img img,
.top-products-text img {
  width: 100%;
}

.top-products-img-sp {
  display: none;
}

.top-products-img-sp,
.top-products-img-sp img {
  width: 100%;
}


/******************************************/
/*ポップアップ*/
.popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: 0.6s;
}

.popup.is-show {
  opacity: 1;
  visibility: visible;
}

.popup-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 800px;
  background-color: #fff;
  z-index: 301;
}

.popup-inner img {
  width: 100%;
}

.close-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
}

.close-btn i {
  font-size: 20px;
  color: #333;
}

.black-background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 300;
  cursor: pointer;
}

.popup-inner-movie {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 1200px;
  background-color: black;
  z-index: 301;
}

.movie-wrap {
  width: 100%;
  aspect-ratio: 16/9;
}

/******************************************/
/*更新情報2つ*/
@media screen and (max-width: 1330px) {
  #news-wrap {
    width: 936px;
  }

  .swiper {
    width: 100%px;
    margin: 0 auto;
  }

  .swiper-button-prev {
    left: 0 !important;
  }

  .swiper-button-next {
    right: 0 !important;
  }
}

/******************************************/
/*更新情報1つ*/
@media screen and (max-width: 962px) {
  #news-wrap {
    max-width: 556px;
    width: 90%;
  }

  .swiper {
    width: 96%;
    height: auto;
    margin: 0 auto;
  }

  .swiper-topic-img {
    width: 88%;
  }

  .swiper-topic-img img {
    width: 100%;
  }

  .swiper-topic-text-wrap {
    max-width: 100%;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 5% !important;
    top: 37% !important;
  }

  .swiper-button-prev {
    left: 2% !important;
  }

  .swiper-button-next {
    right: 2% !important;
  }

  .swiper-button-prev img,
  .swiper-button-next img {
    width: 100%;
  }
}

@media screen and (max-width: 700px) {
  #summary-text1 {
    font-size: 3vw;
  }

  #summary-text2 {
    font-size: 1.8vw;
  }

  .mv-text2-img-pc {
    display: none;
  }

  .mv-text2-img-sp {
    display: block;
  }

  .ssbc-wrap {
    margin-top: 100px;
  }
}

/******************************************/
/*SP表示*/
@media screen and (max-width: 428px) {
  #main-wrap {
    margin-top: -230px;
  }

  #mv-img-pc {
    display: none;
  }

  #mv-img-sp {
    width: 100%;
  }

  .top-title img {
    width: 100%;
  }

  #mv-text2 {
    position: relative;
  }

  .mv-text2-img-sp {
    display: block;
  }

  #mv-yoyaku {
    position: relative;
    display: block;
    width: 100%;
    margin: 10px auto;
    top: 0;
    left: 0;
  }

  .ssbc-wrap {
    margin-top: 10px;
  }

  /*更新情報*/
  #news-wrap {
    margin: 20px auto 0;
  }

  .swiper-button-prev,
  .swiper-button-next {
    top: 40% !important;
  }

  .swiper-button-prev {
    left: 0% !important;
  }

  .swiper-button-next {
    right: 0% !important;
  }

  .swiper-topic-text {
    font-size: 12px;
  }

  /*概要*/
  #summary-wrap {
    margin-top: 30px;
    padding: 5% 0;
    background: URL(/products/tenkassb/image/top/top_gaiyou_bg_sp.png) no-repeat;
  }

  #summary-item-wrap {
    display: block;
    width: 96%;
    text-align: center;
  }

  #summary-img {
    width: 100%;
  }

  #summary-text1-sp,
  #summary-text2-sp {
    color: black;
  }

  #summary-text1-sp {
    font-size: 30px;
    line-height: 35px;

  }

  /*製品情報*/
  #top-products-wrap {
    margin: 20px auto 0;
  }

  .top-products-item {
    display: none;
  }

  .top-products-img-sp {
    display: block;
  }

  /*セール*/
  #mv-sale {
    position: relative;
    display: block;
    width: 100%;
    margin: 10px auto 20px;
    left: 0;
  }
}

@-webkit-keyframes fadeInDownSmall {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -30%, 0);
    transform: translate3d(0, -30%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDownSmall {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -30%, 0);
    transform: translate3d(0, -30%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInDownSmall {
  -webkit-animation-name: fadeInDownSmall;
  animation-name: fadeInDownSmall;
}
