@import url("global.css");
/* ------------------------------
 Index-Page
------------------------------ */
ul.newslist {
  border-top: #c9c9c9 1px solid;
  margin-bottom: 60px;
}
ul.newslist li {
  border-bottom: #c9c9c9 1px solid;
}
ul.newslist li a, ul.newslist li div {
  display: flex;
  align-items: flex-start;
  position: relative;
  padding: 20px 30px 20px 10px;
}
ul.newslist li a::after {
  content: "\f105";
  font-family: 'Font Awesome 6 free','Font Awesome 6 Brands';
  font-weight: 900;
  font-size: 16px;
  line-height: 20px;
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -10px;
  opacity: .5;
}
ul.newslist li a .text {
  text-decoration-color: rgba(74, 66, 52, 0.1);
  text-decoration-line: underline;
  text-decoration-thickness: 7px;
  text-underline-offset: -2px;
  text-decoration-skip-ink: none;
}
ul.newslist li .date {
  display: flex;
  align-items: center;
  width: 150px;
  flex-shrink: 0;
  gap: 8px;
  font-size: 14px;
  font-family: "Inter", "IBM Plex Sans JP", sans-serif;
}
ul.newslist li .date::before {
  content: "";
  width: 8px;
  height: 1px;
  background-color: #4A4234;
  display: block;
}
ul.newslist li .text {
  display: block;
}

/* ------------------------------
 Post-Page
------------------------------ */
.post {
  padding-bottom: 100px;
  border-bottom: #c9c9c9 1px solid;
}
.post .posttitle {
  line-height: 1.5;
  font-size: clamp(16px, 3.5vw, 28px);
  margin-bottom: 15px;
}
.post .postdate {
  gap: 10px;
  display: flex;
  align-items: center;
  font-family: "Inter", "IBM Plex Sans JP", sans-serif;
  font-weight: 200;
  margin-bottom: 60px;
}
.post .postdate::before {
  content: "";
  width: 12px;
  height: 1px;
  background-color: #999;
  display: block;
}
.post .pdfbutton {
  margin-top: 70px;
}
.post .pdfbutton a {
  display: flex;
  gap: 10px;
  align-items: center;
  height: 60px;
  padding-inline: 25px 20px;
  color: #fff;
  border-radius: 3px;
  background-color: #4A4234;
  position: relative;
}
.post .pdfbutton a::before {
  content: "\f1c1";
  font-family: 'Font Awesome 6 free','Font Awesome 6 Brands';
  font-weight: 900;
  font-size: 150%;
  line-height: 1;
}
.post .pdfbutton a::after {
  content: "\f105";
  font-family: 'Font Awesome 6 free','Font Awesome 6 Brands';
  font-weight: 900;
  line-height: 1;
  font-size: 120%;
  margin-left: auto;
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
}
@media (any-hover: hover) {
  .post .pdfbutton a:hover::after {
    translate: 10px 0;
  }
}

/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint ( 1300px )
 
------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 1300px) {
  /* ------------------------------
   Index-Page
  ------------------------------ */
  /* ------------------------------
   Post-Page
  ------------------------------ */
}
/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint-2 ( 959px )
 
------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 959px) {
  /* ------------------------------
   Index-Page
  ------------------------------ */
  ul.newslist li .date {
    width: 130px;
  }

  /* ------------------------------
   Post-Page
  ------------------------------ */
  .post {
    padding-bottom: 80px;
  }
  .post .posttitle {
    margin-bottom: 10px;
  }
  .post .postdate {
    margin-bottom: 50px;
  }
  .post .pdfbutton {
    margin-top: 60px;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint-3 ( 644px )
 
------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 644px) {
  /* ------------------------------
   Index-Page
  ------------------------------ */
  ul.newslist li a, ul.newslist li div {
    display: block;
    padding: 18px 30px 18px 5px;
  }
  ul.newslist li .date {
    width: auto;
    font-size: 13px;
    margin-bottom: 2px;
  }

  /* ------------------------------
   Post-Page
  ------------------------------ */
  .post {
    padding-bottom: 60px;
    text-align: center;
  }
  .post .posttitle {
    margin-bottom: 5px;
  }
  .post .postdate {
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    margin-bottom: 40px;
  }
  .post .postdate::before {
    width: 6px;
  }
  .post .postdate::after {
    content: "";
    width: 6px;
    height: 1px;
    background-color: #999;
    display: block;
  }
  .post .postbody {
    display: inline-block;
    text-align: left;
  }
  .post .pdfbutton {
    margin-top: 50px;
  }
  .post .pdfbutton a {
    height: 50px;
  }
}

/*# sourceMappingURL=news.css.map */
