@charset "utf-8";
/*  */
.element {
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 1s, visibility 1s, transform 1s;
}

.is-fadein {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.mv {
  width: 100%;
  height: 100vh;
  display: flex;
  background: url(../images/mv_bg.jpg) no-repeat bottom center;
  background-size: cover;
  align-items: center;
  justify-content: flex-end;
  padding-right: 5vw;
}
h1 {
  position: fixed;
  top: -1000px;
}
.fix {
  width: 35px;
  display: block;
  position: fixed;
  z-index: 1;
  right: 0;
  top: calc(50% - 150px);
}
.fix a {
  display: block;
  margin: 10px 0;
}
.greeting__items, .contact__items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 21vw;
  margin-bottom: 21vw;
  width: 100%;
}
.contact__items {
  margin-bottom: 10vw;
}
.greeting__items > div, .contact__items > div {
  width: 50%;
}
.greeting__txt, .contact__txt {
  padding-left: 8vw;
  padding-right: 12vw;
}
.greeting .en, .contact .en {
  margin-bottom: 50px;
}
.greeting h3, .contact h3 {
  margin-bottom: 50px;
  font-size: 2.4rem;
  letter-spacing: 4px;
}
.business {
  background: url("../images/bg.jpg");
  padding-top: 10vw;
  padding-bottom: 10vw;
  text-align: center;
}
.business .en {
  margin-bottom: 15px;
}
.business h3 {
  margin-bottom: 40px;
  font-size: 2.4rem;
  letter-spacing: 4px;
}
.business ul {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}
.business li {
  list-style: disc;
  text-align: left;
  font-size: 1.6rem;
  width: 250px;
  margin-left: 30px
}
.box__wht {
  background: #fff;
  padding: 55px 8vw 40px 8vw;
}
.box__wht h4 {
  font-size: 2.4rem;
  letter-spacing: 4px;
  display: inline-block;
  border-bottom: 1px solid #000;
  margin-bottom: 30px;
}
.txt__red {
  color: #D00003;
}
footer {
  padding: 0 6vw 40px 6vw;
}
.fot__items {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
address {
  font-size: 1.2rem;
  letter-spacing: 3px;
  color: #767676;
}
input[type=text],input[type=email], textarea {
  background: #f8f8f8;
  padding: 7px;
  box-sizing: border-box;
  width: 100%;
}
textarea {
    height: 120px;
}
.contact th {
  min-width: 90px;
  white-space: nowrap;
}
.contact th, .contact td {
  padding: 10px 0;
}
input[type=submit] {
  background: #000;
  padding: 10px;
  margin-top: 60px;
  margin-left: auto;
  text-align: center;
  color: #fff;
  width: 200px;
}
@media screen and (max-width:900px) {
  .mv {
    padding-left: 50vw;
  }
  .fix {
    display: none;
  }
  .fix a {}
  .greeting__items, .contact__items {
    flex-wrap: wrap;
    grid-row-gap: 60px;
  }
  .contact__items {}
  .greeting__items > div, .contact__items > div {
    width: 100%;
  }
  .greeting__txt, .contact__txt {
    padding: 0 10%;
  }
  .greeting .en, .contact .en {
    margin-bottom: 20px;
  }
  .greeting h3, .contact h3 {
    font-size: 2.0rem;
    line-height: 1.6;
  }
  .business {
    padding: 80px 10%;
  }
  .business .en {
    margin-bottom: 0;
  }
  .business h3 {
    margin-bottom: 20px;
    font-size: 2.0rem;
    letter-spacing: 3px;
  }
  .business .box__wht ul {
    margin-bottom: 0px;
  }
  .business li {
    font-size: 1.5rem;
    width: 100%;
  }
  .box__wht {
    padding: 50px 7%;
    text-align: left;
    line-height: 1.8;
  }
  .box__wht h4 {
    font-size: 1.8rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  footer {
    margin-top: 80px;
    padding: 0 6vw 40px 6vw;
  }
  .fot__items {
    flex-wrap: wrap;
    text-align: center;
    grid-row-gap: 40px;
  }
  .fot__items img {
    max-width: 80%;
  }
  address {
    line-height: 1.6;
    font-size: 1.1rem;
  }
}
/*  */
@media screen and (max-width:768px) {}