body::-webkit-scrollbar {
  display: none;
}

body {
  scrollbar-width: none;
  -ms-overflow-style: none;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0;
  padding: 0;
}

.page {
  width: 100vw;
  height: 100vh;
  position: relative;
  padding-top: 50px;
  box-sizing: border-box;
}

.topContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.topContainer .name {
  font-size: 4vw;
  font-family: Roboto-Regular, Roboto;
  color: #1a1a1a;
}

.topContainer .en {
  font-size: 2vw;
  font-family: Roboto-Regular, Roboto;
  font-weight: 400;
  color: #1a1a1a;
}

.second_part {
  width: 100%;
  margin: 2vw 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  padding: 0 10vw;
}

.second_part .name {
  font-size: 1.5vw;
  font-family: Roboto-Regular, Roboto;
  font-weight: 400;
  color: #1a1a1a;
}

.second_part .title_box {
  width: 40%;
}

.second_part .desc p,
.second_part .desc span {
  font-family: Roboto-Regular, Roboto;
  font-size: 1.5vw;
  font-weight: bold;
  color: #1a1a1a;
}

.second_part .address {
  font-size: 1.3vw;
  font-weight: 500;
}

.contact_box {
  font-size: 1vw;
  color: aliceblue;
}

.contact_box a {
  color: aliceblue;
}

.phone_box {
  margin: 1vw 0;
}

.part2 {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  margin-top: 4vw;
  box-sizing: border-box;
  padding-bottom: 4vw;
}

.part2 .title{
  font-size: 2vw;
  font-weight: bold;
}

.part2 .info {
  position: relative;
}

.part2 .text {
  position: absolute;
  top: 0;
  z-index: 1;
  font-weight: 400;
  box-sizing: border-box;
  padding: 2vw;
}

.part2 .text p {
  width: 100%;
  font-size: 1.5vw;
}

.part2 .line {
  width: 80%;
  height: 2px;
  background-color: black;
  margin-bottom: 2vw;
}

.part2 .box{
  width: 40%;
}

.imgwrap{
  display: flex;
  justify-content: space-evenly;
  width: 90%;
  margin: 5vw auto;
}

.bg {
  width: 100%;
  height: 100vh;
  z-index: -1;
  position: fixed;
  top: 0;
}

@media only screen and (max-width: 800px) {
  .bg {
    width: 800px;
  }

  .topContainer .name {
    font-size: 6vw;
  }

  .topContainer .en {
    font-size: 2vw;
  }

  .title_box p,
  .title_box span {
    font-size: 2vw;
  }

  .second_part {
    display: block;
  }

  .second_part .title_box {
    width: 100%;
  }

  .part2 {
    flex-direction: column;
    align-items: center;
  }

  .part2 .box {
    width: 80%;
  }

  .part2 .title{
    font-size: 4vw;
  }
}