@charset "utf-8";

.title{
  height: 310px;
  background-image: url(../images/products/bg-main.JPG);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  text-shadow: 1px 1px 10px #4b2c14;
}
.title h1{
  font-size: 60px;
  font-weight: bold;
}
.title p{
  font-size: 30px;
  margin-top: 15px;
}
.feature{
  display: flex;
  justify-content: space-between;
  width: 930px;
  max-width: 90%;
  margin-top: 75px;
  margin-left: auto;
  margin-right: auto;
  align-items: flex-start;
}
.feature img{
  width: 360px;
}
.feature-text{
  max-width: 500px;
  margin-right: 40px;
}
.reverse{
  flex-direction: row-reverse;
}
.reverse .feature-text{
  margin-left: 40px;
  margin-right: 0;
}
.feature-text h2{
  font-size: 22px;
  font-weight: bold;
  line-height: 30px;
}
.feature-text h2::after{
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background-color: #000000;
  margin-top: 20px;
}
.feature-text p{
  font-size: 16px;
  line-height: 28px;
  margin-top: 25px;
}
.jump{
  margin: 80px auto;
  text-align: center;
}
.jump h2{
  font-size: 22px;
  font-weight: bold;
  text-align: center;
}
.jump h2::after{
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background-color: #000000;
  margin-top: 20px;
  margin-right: auto;
  margin-left: auto;
}
.jump p{
  line-height: 2;
  text-align: center;
}
.jump img{
  text-align: center;
  width: 40px;
  height: 40px;
}
.link-button-area{
  text-align: center;
  margin-top: 5px;
}
.link-button{
  background-color: #f4dd64;
  display: inline-block;
  min-width: 180px;
  line-height: 48px;
  border-radius: 24px;
  font-size: 14px;
}
.link-button:hover{
  background-color: #d8b500;
}

@media (max-width: 800px){
  .title{
    height: 150px;
  }
  .title h1{
    font-size: 40px;
  }
  .title p{
    font-size: 15px;
  }
  .feature{
    display: block;
    width: 500px;
    margin-top: 45px;
  }
  .feature-text{
    margin-right: 0;
  }
  .reverse .feature-text{
    margin-left: 0;
  }
  .feature img{
    width: 100%;
    height: auto;
    margin-top: 25px;
  }
  .jump h2{
    font-size: 20px;
  }
}