@charset "UTF-8";

/*----------------------------------------------------
  fv
----------------------------------------------------*/
.fv {
  width: 100%;
  margin-top: 140px;
  position: relative;
}

.fv::after {
  display: block;
  content: '';
  width: 100%;
  height: 0;
  padding-top: 30%;
}

.fv .l-inner {
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.fv-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.fv-img>picture,
.fv-img img {
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
}

.fv-ttl {
  width: 40%;
  position: absolute;
  top: 55%;
  left: 0;
  transform: translate(0, -50%);
  z-index: 2;
  height: auto;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  filter: drop-shadow(1px 3px 0px rgba(0, 0, 0, 0.2));
}

.fv-ttl>span {
  order: 1;
  font-size: 5rem;
  letter-spacing: .1em;
  padding-bottom: 20px;
  font-weight: 500 !important;
  line-height: 1;
}

.fv-ttl>h2 {
  width: 100%;
  text-align: right;
  order: 2;
  padding-top: 10px;
  padding-left: 5px;
  box-sizing: border-box;
  position: relative;
}

.fv-ttl>h2::after {
  display: block;
  content: '';
  width: 100%;
  border-top: 1px solid #fff;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width:1280px) {}

@media screen and (max-width:1200px) {

  /*---fv---*/
  .fv {
    margin-top: 80px;
  }

}

@media screen and (max-width:1024px) {}

@media screen and (max-width:896px) {}

@media screen and (max-width:786px) {
  .fv::after {
    display: block;
    content: '';
    width: 100%;
    height: 0;
    padding-top: 60%;
  }
}

@media screen and (max-width:680px) {
  .fv::after {
    padding-top: 80%;
  }

  .fv-ttl {
    width: 50%;
  }
}

@media screen and (max-width:480px) {
  .fv {
    margin-top: 70px;
  }

  .fv-ttl>span {
    font-size: 2.6rem;
  }

  .fv-ttl>h2 {
    font-size: 1.8rem;
  }

}