@charset "utf-8";

@media screen and (width > 768px) {
  .top__sec {
    padding: 40px 0 56px;
  }
}
@media screen and (width <= 768px) {
  .top__sec {
    padding: 32px 0 40px;
  }
}

.top__sec--title {
  border-left: solid 12px #ea7e5b;
  font-weight: 700;
  padding: 2px 0 3px 12px;
}
@media screen and (width > 768px) {
  .top__sec--title {
    font-size: 32px;
    margin: 0 auto 32px;
    max-width: 1080px;
  }
}
@media screen and (width <= 768px) {
  .top__sec--title {
    font-size: 24px;
    margin: 0 24px 24px;
  }
}

.top__sec--column__ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0 auto;
  max-width: 1112px;
  padding: 0 16px;
}
.top__sec--column__ul a {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  padding: 16px;
}
.top__sec--column__ul h3 {
  line-height: 1.3;
  font-size: 15px;
}
.top__sec--column__ul img {
  border-radius: 8px;
}
.top__sec--column__ul .category {
  background: #edece9;
  border-radius: 4px;
  display: inline-flex;
  font-size: 12px;
  padding: 4px 8px;
  width: fit-content;
}
.top__sec--column__ul .date {
  font-size: 11px;
}
@media screen and (width > 768px) {
  .top__sec--column__ul li {
    width: calc((100% - 48px) / 4);
  }
}
@media screen and (width <= 768px) {
  .top__sec--column__ul {
    flex-direction: column;
  }
  .top__sec--column__ul li {
    width: 100%;
  }
}

.link-btn {
  margin: 32px auto 0;
  min-width: 180px;
  width: fit-content;
}
.link-btn a {
  background: #fff;
  border: solid 1px #4a3e25;
  border-radius: 50px;
  display: block;
  padding: 16px 48px;
}

.top__sec--about--title {
  align-items: center;
  display: flex;
  flex-direction: column;
  font-weight: 700;
  gap: 8px;
}
@media screen and (width > 1024px) {
  .top__sec--about--title {
    font-size: 24px;
    margin-bottom: 48px;
  }
}
@media screen and (width <= 1024px) {
  .top__sec--about--title {
    font-size: 20px;
    margin-bottom: 32px;
  }
}

.top__sec--about__text {
  font-weight: 500;
  line-height: 1.8;
  margin: 0 auto 24px;
  max-width: 375px;
  padding: 0 16px;
  text-align: justify;
}
