@charset "utf-8";

.first-view-text {
  height: 270px;
  background-image: url(../images/essay/essay-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;
}

.first-view-text h1 {
  font-family: "Margarine", sans-serif;
  letter-spacing: 0.5px;
  font-size: 36px;
}

.first-view-text p {
  font-family: "Kiwi Maru", serif;
  font-size: 17px;
  margin-top: 15px;
  font-weight: bold;
}

.feature {
  display: flex;
  justify-content: space-between;
  width: 930px;
  max-width: 90%;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  align-items: flex-start;
  color: #696969;
}

.feature img {
  width: 360px;
  border-radius: 24px;
}

.feature-text {
  max-width: 500px;
  margin-right: 40px;
}

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

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

.feature-text h3 {
  font-family: "Margarine", sans-serif;
  letter-spacing: 0.5px;
  font-size: 22px;
  color: #610333;
}

.feature-text h3::after {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background-color: #660033;
  margin-top: 10px;
  margin-bottom: 20px;
}

.feature-text p {
  font-family: "Kiwi Maru", serif;
  letter-spacing: 1.5px;
  font-size: 19px;
  line-height: 35px;
}

.recommended {
  padding-top: 45px;
}

.recommended h2 {
  font-size: 26px;
  text-align: center;
  font-family: "Margarine", san-serif;
  color: #610333;
}  

.recommended h2::after {
  content: '';
  display: block;
  width: 35px;
  height: 2px;
  background-color: #610333;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}

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

.link-button-area p {
  font-family: "Kiwi Maru", serif;
  font-size: 18px;
  line-height: 40px;
}

.link-button {
  background-color: #faf0e6;
  display: inline-block;
  min-width: 180px;
  line-height: 48px;
  border-radius: 24px;
  font-family: "Margarine", san-serif;
  font-size: 19px;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  margin-top: 10px;
}

.link-button:hover {
  background-color: #f5deb3;
}

.footer {
  margin-top: 3px;
}

@media (max-width:800px) {
 
  .feature {
    display: block;
    width: 500px;
    margin-top: 50px;
  }

  .feature-text {
    margin-right: 0;
  }

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

  .feature img {
    width: 100%;
    height: auto;
    margin-top: 35px;
  }


  .link-button-area {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .link-button {
    width: 100%;
  }  

}