#main {
  padding-bottom: 138px;
}
@media screen and (max-width: 767px) {
  #main {
    padding-bottom: 71px;
  }
}
#main .news {
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #main .news_list {
    padding: 0 18px;
  }
}
#main .news_detail {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
@media print, screen and (max-width: 1350px) {
  #main .news_detail {
    padding-left: 20px;
    padding-right: 20px;
  }
}
#main .news_detail .news_image {
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #main .news_detail .news_image {
    margin: 0 10px;
    border-radius: 10px;
  }
}
#main .news_detail .news_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#main .news_detail .news_text {
  padding-right: 0;
  margin-top: 35px;
}
@media screen and (max-width: 767px) {
  #main .news_detail .news_text {
    margin-top: 24px;
  }
}
#main .news_detail .news_text .news_tag {
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  #main .news_detail .news_text .news_tag {
    gap: 10px;
    margin-bottom: 11px;
  }
}
#main .news_detail .news_text .news_tag .date {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}
@media print, screen and (min-width: 768px) {
  #main .news_detail .news_text .news_tag .date {
    color: #000;
  }
}
@media screen and (max-width: 767px) {
  #main .news_detail .news_text .news_tag .date {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0;
  }
}
#main .news_detail .news_text .news_tag .category {
  width: 100px;
}
#main .news_detail .news_text .news_title {
  margin-bottom: 27px;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  #main .news_detail .news_text .news_title {
    margin-bottom: 14px;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.625;
    letter-spacing: 0;
  }
}
#main .news_detail .news_text .news_contents p {
  font-weight: 500;
  font-size: 16px;
  line-height: 2.0625;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  #main .news_detail .news_text .news_contents p {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.7857142857;
    letter-spacing: -0.01em;
  }
}
#main .block-section .block.table table {
  width: 100%;
}
#main .block.buttons a {
  display: flex;
  align-items: center;
  flex-flow: row wrap;
  justify-content: center;
  width: 250px;
  height: 60px;
  margin: 80px auto 0;
  border: 1px solid var(--color-gray);
  border-radius: 30px;
  background-color: var(--color-gray);
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  position: relative;
  overflow: hidden;
  transition: background-color 0.2s, color 0.2s;
}
@media screen and (max-width: 767px) {
  #main .block.buttons a {
    width: 200px;
    height: 50px;
    margin: 50px auto 0;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0;
  }
}
#main .block.buttons a::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.5s ease;
  transition-property: transform;
}
#main .block.buttons a span.button_text {
  position: relative;
  z-index: 1;
}
#main .block.buttons a:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
#main .block.buttons a:hover span.button_text {
  color: var(--color-gray);
}
#main .block.buttons a:disabled, #main .block.buttons a.disabled {
  border-color: #B6B6B6;
  background-color: #B6B6B6;
  color: #fff;
}
#main .block.buttons a:hover {
  opacity: 1;
}
/*# sourceMappingURL=./news.css.map */