@charset "utf-8";

/* コンテンツ */
.visual {
  height: 400px;
  background: url(../images/store.jpg) center / cover no-repeat;
  width: 100%;
  position: relative;
}

h1 {
  color: #fff;
  font-size: 15vw;
  position: absolute;
  bottom: -7.3vw;
  right: 3vw;
  font-weight: lighter;
  letter-spacing: .5rem;
}


.inner div:first-child {
  margin-top: 100px;
}

.flex figure img {

  width: 460px;
  height: 300px;
  margin-top: 0;
  margin-bottom: 145px;

}

main address {
  font-style: normal;
  width: 430px;
  font-size: 16px;
  line-height: 1.7em;
  padding-top: 30px;
  letter-spacing: .1rem;
}

.store_name {
  font-size: 30px;
  margin-bottom: 35px;
  letter-spacing: .3rem;
}

.tel {
  margin-top: 30px;
}

.marunouchi {
  flex-direction: row-reverse;
}

.inview {
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px);
  transition: opacity 1s, visibility 1s, transform 1s;
}

.is-fadein {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}



/* レスポンシブ */
@media screen and (max-width: 768px) {

  .visual {
    height: 300px;
    width: 100%;
  }

  h1 {
    color: #fff;
    font-size: 20vw;
    bottom: -9.5vw;
    right: 3vw;
    font-weight: lighter;
    letter-spacing: .5rem;
  }

  .flex figure img {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
  }

  main address {
    width: 100%;
    margin-bottom: 130px;
    padding-top: 0;
  }

  figure {
    margin: 0 auto;
  }




}