@charset "utf-8";

html {
  font-size: 62.5%;
}
body {
  font-size: 1.4em;
  font-family: "Zen Old Mincho", serif;
  background-image: url(../img/index/firstview.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  max-width: 100%;
}
/* 上段で指定した10pxを14pxにしている（PC上）、レスポンシブで字を大きめに設定し直せる */


.first-view {
  height: calc(100vh - 190px);
  display: flex;
  align-items: center;
}

.shizuku-logo {
  padding-top: 470px;
  z-index: 2;
}

.brandtext {
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  background-image: url(../img/index/top-base.png);
  width: 100%;
  text-align: center;
  z-index: 5;
  padding-bottom: 500px;
}

.brandtext h1 {
  font-size: 36px;
  line-height: 3;
  filter: drop-shadow(0px 30px 1px rgba(147, 147, 147, 0.6));
  z-index: 100;
  letter-spacing: 0.12em;
}

.brandtext1 {
  font-size: 18px;
  line-height: 5;
  margin-top: 90px;
  z-index: 100;
}


.brandtext2 {
  font-size: 18px;
  line-height: 5;
  margin-top: 70px;
  /* margin-bottom: 100px; */
  z-index: 100;
}
.brandtext3 {
  position: relative;
  z-index: 10;
  font-size: 18px;
  line-height: 5;
  margin-top: 200px;
  padding-top: 200px;
  bottom: 100px;
  color: #fff;
  z-index: 100;
  text-align: center;
  letter-spacing: 0.12em;
}

.suiteki1 {
  position: absolute;
  transform: scaleY(-1)translateX(10.7vw);
  bottom: 0;
  top: auto;
}

.brandtextwhite {
  aspect-ratio: 136/148;
  background-image: url(../img/index/yama.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -60%;
  margin-bottom: 20%;
}

/* ↓ここからボタン↓ */

.products {
  position: relative;
  display: block;
  width: 200px;
  height: 78px;
  line-height: 78px;
  font-size: 20px;
  font-family: Lucida Console, sans-serif;
  text-decoration: none;
  background-color: #fff;
  color: #000000;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  z-index: 99;
  margin: 0 auto;
}

.first-view .btn-box {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
}

.products:hover:before {
  content: "";
  height: 25px;
  width: 25px;
  position: absolute;
  top: 0;
  left: 0;
  border: 3px solid rgb(255, 38, 0);
  border-width: 3px 0 0 3px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.products:hover::after {
  content: "";
  height: 25px;
  width: 25px;
  position: absolute;
  top: 53px;
  left: 174px;
  border: 3px solid rgb(255, 38, 0);
  border-width: 0 3px 3px 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.products:before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 3px solid rgb(255, 38, 0);
  border-width: 3px 0 0 3px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.products:after {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 3px solid rgb(255, 38, 0);
  border-width: 0 3px 3px 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.svg-move {
        fill: #004355;
}
.fade-in{
  transform: translateY(40px);
  opacity: 0;
  transition: all 1.7s;
}
.fade-in.inview {
  transform: translateY(0px);
  opacity: 1;
}