@charset "utf-8";
* {
    margin: 0;
    padding: 0;
}

html, body{
  font-family: Archivo Black, Archivo Black;
  font-size: calc(100vw / 100);
}

body {
    width: 100%;
    height: 100%;
    color:#fff;    
}
img {
    width: 100%;
}
a {
  display: block;
}
.img{
  line-height: 0;
}
h2{
  font-size: 3rem;
  line-height: 200%;
}
li{
  list-style: none;
}

.main{
  width: 70%;
  margin: 0 auto;
}

.top-bg{
  position: relative;
}

.top{
  position: absolute;
  top:0;
  z-index: 10;
  height: 100%;
  width: 100%;
}

header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-top:0.85rem;
}

.logo{
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  width: 12rem;
  color:#000;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
}

.logo img{
  width: 13%;
  margin-right: 5px;
}

.menu{
  flex:1;
  display: flex;
  justify-content: flex-end;
}

.menu li{
  margin-left: 2rem;
}

.menu a{
  font-size: 0.9rem;
  color:#fff;
  text-decoration: none;
  line-height: 200%;
}

.menu .active span, .line{
  display: block;
  height: 2px;
  background: #FF7075;
  width: 2.5rem;  
}

.menu .active span{
  margin:0 auto;
}

.top-txt{
  margin: 8% 0 0 50%;
}

.top-txt h1{
  font-size: 2.8rem;
  line-height: 120%;
}

.top-txt p{
  font-size: 1.3rem;
  line-height: 150%;
  margin-top: 1rem;
}

.profile, .culture, .product, .contact{
  padding: 5rem 0 7rem;
}

.profile, .product{
  background: #5B5B5B; 
}

.profile-info, .culture-info, .product-info{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.title{
  font-size: 1.5rem;
  margin-top: 1rem;
  line-height: 120%;
}

.profile-txt{
  width: 65%;  
  font-weight: normal;
  margin-top: 5rem;
}

.profile-info h4{
  font-size: 1rem;
  margin-bottom: 1.2rem; 
}

.profile-info p{
  font-size: 0.8rem;
  line-height: 170%;
}

.profile-info .img{
  width: 30%;
}

.culture, .contact{
  background: #424242;
}

.culture-info{
  margin-top:3.8rem;
}

.culture-info .img{
  width: 36%;
  margin-right: 10%;
}

.culture-txt{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex:1;
}

.culture-txt > div{
  width: 45%;
  border-radius: 2rem;
  border: 3px solid #FF7075;
  padding:1.1rem 0 1.2rem 1.3rem;
  margin-top: 1.3rem;
}

.culture-txt > div:first-child, .culture-txt > div:nth-child(2){
  margin-top:0;
}

.culture-txt h4{
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
}

.product-txt{
  width: 45%;
}

.app-icon {
  display: flex;
  align-items: center;
  font-size: 1.3rem;
}

.app-icon img {
  margin-right: 0.6rem;
  width: 7%;
}

.app-info{
  font-size: 0.8rem;
  margin-top: 1rem;
  line-height: 150%;
}

.product-info{
  align-items:flex-start;
  margin-top:3rem;
}

.product-img{
  width: 50%;
  display: flex;
  justify-content: space-between;
}
.product-img img{
  width: 30%;
  border-radius: 13px;
}

.contact-info a {
  color:#fff;
  text-decoration: none;
  display: inline-block;
}

.contact-info >div{
  margin-top:2.7rem;
  font-size: 0.7rem;
  line-height: 200%;
}

footer{
  background: #282828;
  text-align: center;
  padding: 1rem 0;
  font-size: 0.7rem;
}

@media screen and (max-width: 1024px){
  .main{
    width: 90%;
  }
  .logo{
    font-size: 6rem;
    width: 100%;
  }
  .logo img{
    width: 9%;
  }
  .menu{
    justify-content: flex-start;    
    margin-top:2rem;
  }
  .menu a{
    font-size: 2.4rem;
  }
  .top-txt{
    margin:5% 0 0 60%;
  }
  .title{
    font-size: 5.5rem;
    margin-top: 5rem;
  }
  .profile-txt, .product-txt{
    width: 100%;
  }
  .profile-info .img, .culture-info .img, .product-img{
    width: 100%;
    margin:4rem auto;
  }
  .profile-info h4{
    font-size: 5rem;
    margin-bottom: 4rem;
  }
  .profile-info p, .app-info, .contact-info >div, footer{
    font-size: 3rem;
  }
  .culture-txt > div{
    border-radius: 4rem;
    margin-top: 4rem;
  }
  .culture-txt h4{
    font-size: 4.3rem;
    margin-bottom: 1rem;
  }
  .culture-txt p{
    font-size: 2rem;
  }
  .product-info{
    margin-top: 8rem;
  }
  .app-icon{
    font-size: 5.3rem;
  }
  .app-icon img{
    width: 11%;
  }
  .contact-info{
    font-size: 4rem;
  }
}