@charset "utf-8";

.title {
  height: 360px;
  background-image: url(../images/concept/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;
}

.title h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: bold;
  margin-top: -100px;
}

.title p {
  font-size: 14px;
  margin-top: 5px;
}

.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;
}

.reverse {
  flex-direction: row-reverse;
}

.reverse .feature-text {
  margin-left: 40px;
  margin-right: 0;
}

.feature-text h3 {
  font-size: 22px;
  font-weight: bold;
  line-height: 30px;
  margin-top: 30px;
}

.feature-text h3::after {
  content: '';
  display: block;
  width: 300px;
  height: 3px;
  background-color: rgb(255, 200, 0);
  margin-top: 20px;
}

.feature-text p {
  font-size: 15px;
  line-height: 28px;
  margin-top: 25px;
}

.link-button-area {
  text-align: center;
  margin-top: 80px;
}

.link-button {
  color: rgb(0, 0, 0);
}

.link-button:hover {
  color:  rgb(255, 255, 255);
}

.link-button {
  background-color: rgb(255,200,0);
  display: inline-block;
  min-width: 180px;
  line-height: 48px;
  border-radius: 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
}

.link-button:hover {
  background-color: rgb(233, 183, 0);
}


.footer {
  margin-top: 100px;
}

@media (max-width: 800px) {
  .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;
}