@font-face {
  font-family: "Instrument Serif";
  src: url("../fonts/InstrumentSerif-Regular.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Bebas Neue";
  src: url("../fonts/BebasNeue-Regular.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Sawarabi Gothic";
  src: url("../fonts/SawarabiGothic-Regular.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Noto Serif JP";
  src: url("../fonts/NotoSerif-Light.woff") format("woff");
  font-style: normal;
  font-display: swap;
  font-weight: 300;
}
.news-container {
  max-width: 1080px;
  margin: 50px auto 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 50px;
}
@media (max-width: 1367px) {
  .news-container {
    max-width: 900px;
  }
}
@media (max-width: 1024px) {
  .news-container {
    margin: 50px 60px 100px;
  }
}
.news-container .news-box {
  border: 2px solid #dccb39;
  border-radius: 10px;
  width: calc(33.3333333333% - 20px);
  transition: all 0.6s;
  background: rgba(220, 203, 57, 0.15);
  padding: 40px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .news-container .news-box {
    padding: 20px;
  }
}
@media (max-width: 769px) {
  .news-container .news-box {
    width: calc(50% - 15px);
  }
}
@media (max-width: 640px) {
  .news-container .news-box {
    width: 100%;
  }
}
.news-container .news-box:hover {
  transform: scale(0.95);
  transition: all 0.6s;
}
.news-container .news-box .text {
  text-align: left;
  margin-bottom: 15px;
}
.news-container .news-box .text .date-category {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}
.news-container .news-box .text .date-category .category-title {
  background: #dccb39;
  border-radius: 5px;
  padding: 5px 20px;
  font-size: 12px;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 640px) {
  .news-container .news-box .text .date-category .category-title {
    padding: 3px 10px;
  }
}
.news-container .news-box .text .date-category .date {
  display: inline-block;
}
@media (max-width: 640px) {
  .news-container .news-box .text .date-category .date {
    font-size: 12px;
  }
}
.news-container .news-box .text .date-category .new-post {
  color: #df4440;
}
@media (max-width: 850px) {
  .news-container .news-box .text .date-category .new-post {
    font-size: 0.75rem;
  }
}
.news-container .news-box .text .content {
  font-size: 20px;
}
@media (max-width: 1367px) {
  .news-container .news-box .text .content {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  .news-container .news-box .text .content {
    font-size: 16px;
  }
}
@media (max-width: 640px) {
  .news-container .news-box .text .content {
    font-size: 12px;
  }
}
.news-container .news-box .image {
  margin-top: auto;
}
.news-container .news-box .image img {
  border-radius: 10px;
  border: 1px solid #dccb39;
  width: 100%;
  height: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin: 30px auto 50px;
}
@media (max-width: 640px) {
  .pagination {
    gap: 20px;
  }
}
.pagination .page-numbers {
  padding: 6px 12px;
  border: 1px solid #583918;
  margin: 0 5px;
}
.pagination .current {
  background: #583918;
  color: #ffffff;
}

.news-wrapper {
  max-width: 1300px;
  display: flex;
  justify-content: center;
  gap: 200px;
  margin: 0 auto;
}
@media (max-width: 1367px) {
  .news-wrapper {
    max-width: 1000px;
    gap: 100px;
  }
}
@media (max-width: 850px) {
  .news-wrapper {
    gap: 50px;
    margin: 0 40px;
  }
}
@media (max-width: 640px) {
  .news-wrapper {
    flex-direction: column;
    margin: 0 20px;
  }
}
.news-wrapper .news-main {
  width: 70%;
}
@media (max-width: 640px) {
  .news-wrapper .news-main {
    width: 100%;
  }
}
.news-wrapper .news-main .news-detail-container {
  padding: 100px 40px 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(192, 215, 20, 0.05);
  line-height: 1.8;
}
@media (max-width: 640px) {
  .news-wrapper .news-main .news-detail-container {
    padding: 50px 20px 20px;
  }
}
.news-wrapper .news-main .news-detail-container .date-category {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 10px;
}
.news-wrapper .news-main .news-detail-container .date-category .date {
  font-size: 18px;
}
.news-wrapper .news-main .news-detail-container .date-category .new-post {
  color: #df4440;
}
@media (max-width: 850px) {
  .news-wrapper .news-main .news-detail-container .date-category .new-post {
    font-size: 0.75rem;
  }
}
.news-wrapper .news-main .news-detail-container .date-category .category-name {
  background: #583918;
  padding: 3px 10px;
  border-radius: 5px;
  font-size: 12px;
  transition: all 0.6s;
}
.news-wrapper .news-main .news-detail-container .date-category .category-name:hover {
  transform: scale(0.95);
  transition: all 0.6s;
}
.news-wrapper .news-main .news-detail-container .date-category .category-name li a {
  color: #ffffff;
}
.news-wrapper .news-main .news-detail-container .title {
  font-size: 26px;
  font-weight: bold;
  margin: 20px 0 30px;
  color: #1f1f1f;
}
@media (max-width: 640px) {
  .news-wrapper .news-main .news-detail-container .title {
    font-size: 20px;
  }
}
.news-wrapper .news-main .news-detail-container .image {
  margin-bottom: 30px;
}
.news-wrapper .news-main .news-detail-container .image img {
  width: 100%;
  max-height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  border: 1px solid #dccb39;
}
@media (max-width: 769px) {
  .news-wrapper .news-main .news-detail-container .image img {
    max-height: 300px;
  }
}
@media (max-width: 640px) {
  .news-wrapper .news-main .news-detail-container .image img {
    max-height: 200px;
  }
}
.news-wrapper .news-main .news-detail-container .content {
  font-size: 16px;
  color: #1f1f1f;
}
@media (max-width: 640px) {
  .news-wrapper .news-main .news-detail-container .content {
    font-size: 14px;
  }
}
.news-wrapper .news-main .news-detail-container p {
  margin-bottom: 1em;
}
.news-wrapper .news-main .pagelist {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
  margin: 0 20px 50px;
}
@media (max-width: 1367px) {
  .news-wrapper .news-main .pagelist {
    gap: 50px;
  }
}
@media (max-width: 850px) {
  .news-wrapper .news-main .pagelist {
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media (max-width: 850px) {
  .news-wrapper .news-main .pagelist li:nth-child(1) {
    order: 1;
  }
}
@media (max-width: 850px) {
  .news-wrapper .news-main .pagelist li:nth-child(2) {
    order: 3;
  }
}
@media (max-width: 850px) {
  .news-wrapper .news-main .pagelist li:nth-child(3) {
    order: 2;
  }
}
.news-wrapper .news-sub {
  width: 30%;
  padding: 20px;
  margin-top: 80px;
}
@media (max-width: 1024px) {
  .news-wrapper .news-sub {
    margin-top: 0;
  }
}
@media (max-width: 640px) {
  .news-wrapper .news-sub {
    width: 100%;
    text-align: center;
  }
}
.news-wrapper .news-sub .lately-post {
  margin-bottom: 50px;
}
.news-wrapper .news-sub .lately-post .title {
  font-size: 24px;
  margin-bottom: 25px;
  color: #583918;
}
.news-wrapper .news-sub .lately-post .lately-post-box {
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
  transition: all 0.6s;
}
.news-wrapper .news-sub .lately-post .lately-post-box:hover {
  transform: scale(0.95);
  transition: all 0.6s;
}
.news-wrapper .news-sub .lately-post .lately-post-box .date {
  margin-bottom: 5px;
}
@media (max-width: 640px) {
  .news-wrapper .news-sub .lately-post .lately-post-box .date {
    text-align: left;
  }
}
.news-wrapper .news-sub .lately-post .lately-post-box .news-title {
  font-size: 16px;
  margin-bottom: 10px;
}
@media (max-width: 640px) {
  .news-wrapper .news-sub .lately-post .lately-post-box .news-title {
    text-align: left;
  }
}
.news-wrapper .news-sub .lately-post .lately-post-box .image img {
  width: 200px;
  height: 150px;
  border: 1px solid #1f1f1f;
  border-radius: 10px;
}
@media (max-width: 640px) {
  .news-wrapper .news-sub .lately-post .lately-post-box .image img {
    width: 100%;
    height: auto;
    aspect-ratio: 3/2;
  }
}
.news-wrapper .news-sub .category-post {
  margin-bottom: 50px;
}
.news-wrapper .news-sub .category-post .title {
  font-size: 24px;
  margin-bottom: 25px;
  color: #583918;
}
.news-wrapper .news-sub .category-post .category-list {
  margin-left: 10px;
}
.news-wrapper .news-sub .category-post .category-list .item {
  display: inline-block;
  margin-bottom: 20px;
  margin-left: 5px;
  background: #583918;
  padding: 10px 15px;
  line-height: 0;
  border-radius: 50%;
  color: #ffffff;
}
@media (max-width: 640px) {
  .news-wrapper .news-sub .category-post .category-list .item {
    margin-left: 0;
  }
}
.news-wrapper .news-sub .category-post .category-list .item:hover {
  opacity: 0.7;
}
.news-wrapper .news-sub .archive-post {
  margin-bottom: 50px;
}
.news-wrapper .news-sub .archive-post .title {
  font-size: 24px;
  margin-bottom: 25px;
  color: #583918;
}
.news-wrapper .news-sub .archive-post .archive-list {
  margin-left: 10px;
}
.news-wrapper .news-sub .archive-post .archive-list .item {
  display: inline-block;
  margin-bottom: 20px;
  margin-left: 5px;
  background: #583918;
  padding: 10px 15px;
  line-height: 0;
  border-radius: 50%;
  color: #ffffff;
}
@media (max-width: 640px) {
  .news-wrapper .news-sub .archive-post .archive-list .item {
    margin-left: 0;
  }
}
.news-wrapper .news-sub .archive-post .archive-list .item:hover {
  opacity: 0.7;
}/*# sourceMappingURL=news.css.map */