@charset "UTF-8";

/* -------------------
slideshow
------------------- */

.slideshow {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active{
  opacity: 1;
}

.slideshow::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

/* -------------------
top
------------------- */

.logo_white{
  width: 180px;
  height: 82px;
  position: absolute;
  bottom: 44px;
  right: 51px;
}

.logo_white.close{
  display: none;
}

.top_lead{
  color: #F9F8F6;
  font-size: 3rem;
  line-height: 56px;
  font-family: "Shippori Mincho";
  position: absolute;
  top: 10%;
  left: 68px;
}

.top_lead span{
  font-size: 5rem;
  margin-right: 10px;
}

.header__btn {
  display: block;
  width: 46px;
  height: 46px;
  cursor: pointer;
  z-index: 1000;
  position: absolute;
  top: 10%;
  right: 5%;
}

.header__btn.close{
  display: none;
}

.spBr2{
  display: none;
}

@media screen and (max-width: 769px) {
  .logo_white{
    width: 180px;
    height: 82px;
  }

  .logo_white.close{
    display: none;
  }

  .top_lead{
    font-size: 2.4rem;
  }

  .top_lead span{
    font-size: 3.4rem;
    margin-right: 10px;
  }

  .header__btn {
    display: block;
    width: 40px;
    height: 40px;
  }

  .header__btn.close{
    display: none;
  }  
}

@media screen and (max-width: 450px) {
  .spBr2{
    display: block;
  }

  .top_lead{
    left: 34px;
  }

  .header__btn{
    right: 34px;
  }

  .close__btn{
    right: 34px;

  }
  
}