 @charset "UTF-8";
 
 @import url(https://fonts.googleapis.com/css?family=Roboto:400,500,700,300);
/** {
  margin: 0;
  padding: 0;
  outline: none;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
  color: #000;
  background: transparent;
  border: none;
}*/
body {
  /*background: #202020;*/
  font-family: 'Roboto', sans-serif;
}
/*.wrap {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: linear-gradient(to bottom, #000, #2581d1, #0f1760, #000, #00ac00, #8e8522, #961e1e);
  width: 100%;
}*/
section {
 /*height: 200vh;
  background: url(slidimg/001.jpg);
  background-size: cover;
  mix-blend-mode: overlay;
  background-attachment: fixed;*/
}
/*section:nth-of-type(2) {
  background-image: url(slidimg/002.jpg);
}
section:nth-of-type(3) {
  background-image: url(slidimg/003.jpg);
}
section:nth-of-type(4) {
  background-image: url(slidimg/004.jpg);
}
section:nth-of-type(5) {
  background-image: url(slidimg/005.jpg);
}*/
h1 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  text-align: center;
  height: 100px;
  line-height: 100px;
  font-size: 48px;
  color: #fff;
  text-transform: uppercase;
  z-index: 2;
}
h1:before {
  content: "株式会社イエティハウス";
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  font-size: 14px;
  letter-spacing: 3px;
}
h1:after {
  content: "";
  height: 2px;
  width: 12%;
  opacity: 0.2;
  left: 0;
  top: -70px;
  right: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
  position: absolute;
}
.mypens {
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  position: fixed;
  /*bottom: 50px;*/
  top: 60%;
  right: 48.5%;
  transition: 0.2s all ease-out;
}
.mypens a {
	color: aliceblue;
}
.mypens:before {
  content: "CONTACT";
  position: absolute;
  width: 200px;
  left: -75px;
  bottom: -40px;
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  transform: scale(0.2) translateY(100px);
  transition: 0.2s all ease-out;
}
.mypens:hover {
  background: #fff;
  color: #000;
  transform: scale(1.2);
}
.mypens:hover:before {
  transform: scale(1) translateY(0);
  opacity: 1;
}
