.main-1 .content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.main-1 .content .ency-link:nth-of-type(1) {
  grid-column: 1/2;
}
.main-1 .content .ency-link:nth-of-type(2) {
  grid-column: 2/3;
}
.main-1 .content .ency-link:nth-of-type(3) {
  grid-column: 3/4;
}
.main-2 .content {
  display: flex;
  gap: 3rem;
}
.main-2 .detail {
  flex: 1;
  min-width: 0;
}
.main-2 .detail .tit {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #f0f0f0;
}
.main-2 .detail .tit h1 {
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.main-2 .detail .tit .time {
  display: flex;
  gap: 2rem;
}
.main-2 .detail .tit .time p {
  font-size: 0.7rem;
}
.main-2 .detail .tit .time p * {
  color: #999;
}
.main-2 .detail .rich-text {
  padding: 2rem 0;
}
.main-2 .detail .other {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  border: 1px solid #f0f0f0;
  gap: 2rem;
}
.main-2 .detail .other p {
  flex: 1;
}
.main-2 .rec {
  flex-shrink: 0;
  width: 21rem;
}
.main-2 .rec .form {
  display: grid;
  gap: 1.2rem;
  padding: 1.2rem;
  border: 1px solid #f0f0f0;
  border-radius: 0.5rem;
  margin-bottom: 2.5rem;
}
.main-2 .rec .form h6 {
  font-size: 1rem;
  font-weight: bold;
}
.main-2 .rec .form input,
.main-2 .rec .form textarea,
.main-2 .rec .form button {
  width: 100%;
  border: 1px solid #f0f0f0;
  border-radius: 0.5rem;
  padding: 1rem;
}
.main-2 .rec .form input,
.main-2 .rec .form button {
  height: 2.8rem;
}
.main-2 .rec .form button {
  padding: 0;
  border: none;
  background-color: #d1ae6c;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
}
.main-2 .rec .tit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 1.5rem;
}
.main-2 .rec .tit h6 {
  font-size: 1.2rem;
}
.main-2 .rec .tit a {
  font-size: 0.7rem;
  color: #999;
}
.main-2 .rec .tit a:hover {
  color: #d1ae6c;
}
.main-2 .rec .ot .c {
  display: grid;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .main-1 .content {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  .main-2 .detail .tit h1 {
    font-size: 1.2rem;
  }
  .main-2 .content {
    flex-direction: column;
  }
  .main-2 .rec {
    width: 100%;
  }
  .main-2 .rec .ot .c {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  .main-2 .rec .ot .c .ency-link {
    grid-column: unset;
  }
  .main-2 .rec .ot .c .ency-link:nth-of-type(3) {
    display: none;
  }
}
