@charset "UTF-8";
@import url("global.css");
/* ------------------------------
 Index
------------------------------ */
ul.newslist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px min(3vw,50px);
  margin-bottom: 120px;
}
ul.newslist li .inner {
  display: block;
}
ul.newslist li .inner .img {
  width: 100%;
}
ul.newslist li .inner .img figure {
  aspect-ratio: 1.6 / 1;
  -webkit-border-radius: var(--radius-normal);
  border-radius: var(--radius-normal);
  overflow: hidden;
  background-color: #EAECEF;
}
ul.newslist li .inner .text {
  margin-top: 15px;
  text-align: justify;
  font-weight: 700;
  line-height: 1.4;
}
ul.newslist li .inner .text > p:not([class]) {
  color: #000000;
}
ul.newslist li .inner .text > .date {
  margin-top: 10px;
  font-size: .875em;
}
@media (any-hover: hover) {
  ul.newslist li a.inner:hover {
    opacity: .8;
  }
}

/* ------------------------------
 Entry
------------------------------ */
.entry #post:has(.img) {
  display: grid;
  gap: 50px 5vw;
  grid-template-columns: 1fr 600px;
  grid-template-rows: auto 1fr;
}
.entry #post:has(.img) .img {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
}
.entry #post .titlebox .posttitle {
  margin-bottom: 10px;
  font-size: clamp(18px, 2.3vw, 26px);
  font-family: "Shippori Mincho B1", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.entry #post .titlebox .date {
  display: block;
  font-size: 12px;
  letter-spacing: 0;
  line-height: 1;
}
.entry #post .img {
  width: 100%;
}
.entry #post .img > figure {
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  padding: 20px;
  border: #E2E2E2 solid 1px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.entry #post #postbody .postbody {
  text-align: justify;
}
.entry #post #postbody .postbody .wp-block-image {
  max-width: 700px;
  height: auto;
}
.entry #post .pdffile {
  margin-top: 35px;
}
.entry #post .pdffile a {
  display: flex;
  width: fit-content;
  column-gap: 8px;
  padding: 10px 25px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  font-weight: 500;
  border: rgba(26, 41, 84, 0.1) solid 1px;
}
.entry #post .pdffile a::before {
  content: "\f1c1";
  display: block;
  font-family: "Font Awesome 6 free", "Font Awesome 6 Brands";
  font-weight: 900;
}
@media (any-hover: hover) {
  .entry #post .pdffile a:hover {
    background-color: rgba(26, 41, 84, 0.03);
  }
}
.entry .pageback a.more .view, .entry .pageback a.more .arrow {
  border: #E2E2E2 solid 1px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.entry .pageback a.more .arrow::before {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
@media (any-hover: hover) {
  .entry .pageback a.more:has(.arrow):hover .arrow {
    translate: -5px 0;
  }
}

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

 Responsive-Breakpoint-1 ( 1600px )

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

 Responsive-Breakpoint-2 ( 1400px )

------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 1400px) {
  /* ------------------------------
   Index
  ------------------------------ */
  ul.newslist {
    margin-bottom: 100px;
  }

  /* ------------------------------
   Entry
  ------------------------------ */
  .entry #post:has(.img) {
    grid-template-columns: 1fr 460px;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint-3 ( 1200px )
 
------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 1200px) {
  /* ------------------------------
   Index
  ------------------------------ */
  ul.newslist {
    gap: 65px min(3vw,50px);
    margin-bottom: 90px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 959px) {
  ul.newslist {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 1200px) {
  /* ------------------------------
   Entry
  ------------------------------ */
  .entry #post:has(.img) {
    gap: 40px 4vw;
    grid-template-columns: 1fr 46%;
  }
  .entry #post .img > figure {
    padding: 15px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 959px) {
  .entry #post:has(.img) {
    display: block;
  }
  .entry #post .img {
    margin-block: 35px;
    width: auto;
  }
  .entry #post #postbody {
    margin-top: 35px;
  }
}

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

 Responsive-Breakpoint-4 ( 644px )

------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 644px) {
  /* ------------------------------
   Index
  ------------------------------ */
  ul.newslist {
    display: block;
    margin-bottom: 60px;
  }
  ul.newslist li + li {
    margin-top: 30px;
  }

  /* ------------------------------
   Entry
  ------------------------------ */
  .entry #post .titlebox .posttitle {
    margin-bottom: 5px;
  }
  .entry #post .titlebox .date {
    font-size: 11px;
  }
  .entry #post .img {
    margin-block: 25px;
  }
  .entry #post .img > figure {
    padding: 10px;
  }
  .entry #post #postbody {
    margin-top: 25px;
  }
  .entry #post #postbody .postbody .wp-block-image {
    max-width: 100%;
  }
}
