@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500&family=Noto+Sans+JP:wght@400;500;600&family=Zen+Old+Mincho&display=swap");
@import url("global.css");
:root {
  --ft_min: 15px;
  --title: 30px;
  --radius: 5px;
  --border: 10px;
  --wrapper_pd: 5vw;
  --divider_pd: 120px;
}

/* ------------------------------
 common
------------------------------ */
body {
  min-height: 100dvh;
}

footer {
  position: sticky;
  top: 100%;
}

/* ------------------------------
 index
------------------------------ */
.index #content {
  padding-block: 80px 110px;
}
.index #content ul {
  border-top: 1px solid #CECAC4;
}
.index #content ul li {
  border-bottom: 1px solid #CECAC4;
}
.index #content ul li .inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1fr auto;
  grid-template-columns: auto 1fr auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  text-align: left;
  position: relative;
  padding: 30px 50px 30px 10px;
  line-height: 1.6;
  min-height: 105px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.index #content ul li .inner time {
  color: #635D52;
  font-family: "EB Garamond", "Zen Old Mincho", serif;
}
.index #content ul li .inner time::after {
  content: "-";
  margin-inline: 0.8em;
}
.index #content ul li a.inner::after {
  content: "\f0a9";
  display: inline-block;
  color: #2396AA;
  line-height: 1;
  position: absolute;
  right: 10px;
  margin: auto;
  font-size: 1.6em;
  font-family: "Font Awesome 6 free", "Font Awesome 6 Brands";
  font-weight: 900;
}

/* ------------------------------
 entry
------------------------------ */
.entry .content {
  padding-block: 80px 110px;
}
.entry .content .post .post_body_wrap .post_titlearea {
  margin-bottom: 40px;
}
.entry .content .post .post_body_wrap .post_titlearea .post_title {
  line-height: 1.8;
  font-size: 30px;
  font-family: "Zen Old Mincho", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.entry .content .post .post_body_wrap .post_titlearea time {
  color: #2396AA;
  font-family: "EB Garamond", "Zen Old Mincho", serif;
}
.entry .content .post .post_body_wrap #postbody {
  padding-bottom: 100px;
}
.entry .content .post .post_body_wrap .pdf a {
  max-width: 450px;
  height: 60px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  color: #2396AA;
  border: 1px solid #2396AA;
  background-color: #F7F6EE;
  border-radius: var(--radius);
}
.entry .content .post .post_body_wrap .pdf a::before {
  content: "\f1c1";
  font-size: 1.35em;
  font-weight: 900;
  font-family: "Font Awesome 6 free", "Font Awesome 6 Brands";
  display: inline-block;
  vertical-align: -2px;
  line-height: 1;
}

/* ------------------------------
 anime
------------------------------ */
@media (any-hover: hover) {
  .index #content ul li a.inner {
    transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
    -webkit-transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }
  .index #content ul li a.inner::after {
    transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
    -webkit-transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }
  .index #content ul li a.inner:hover {
    background-color: rgba(99, 93, 82, 0.03);
  }
}
/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint-0 ( 1480px )

------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 1480px) {
  :root {
    --wrapper_pd: 5vw;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint-0 ( 1200px )

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

 Responsive-Breakpoint-2 ( 960px )

------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 959px) {
  :root {
    --ft_min: 13px;
    --title: 26px;
    --radius: 5px;
    --border: 7px;
    --wrapper_pd: 6vw;
    --divider_pd: 90px;
  }
  /* ------------------------------
   index
  ------------------------------ */
  .index #content {
    padding-block: 80px;
  }
  /* ------------------------------
   entry
  ------------------------------ */
  .entry .content {
    padding-block: 80px;
  }
  .entry .content .post .post_body_wrap .post_titlearea {
    margin-bottom: 30px;
  }
  .entry .content .post .post_body_wrap .post_titlearea .post_title {
    font-size: 25px;
  }
  .entry .content .post .post_body_wrap #postbody {
    padding-bottom: 60px;
  }
  .entry .content .post .post_body_wrap .pdf a {
    max-width: 410px;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint-2 ( 645px )

------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 644px) {
  :root {
    --ft_min: 13px;
    --title: 18px;
    --radius: 3px;
    --border: 7px;
    --wrapper_pd: 5vw;
    --divider_pd: 60px;
  }
  /* ------------------------------
   index
  ------------------------------ */
  .index #content {
    padding-block: 50px;
  }
  .index #content ul li .inner {
    min-height: none;
    padding: 20px 40px 20px 10px;
    -ms-grid-columns: 1fr auto;
    grid-template-columns: 1fr auto;
  }
  .index #content ul li .inner .post_title {
    -ms-grid-row: 2;
    grid-row: 2;
  }
  .index #content ul li .inner::after {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
    margin-left: 20px;
  }
  /* ------------------------------
   entry
  ------------------------------ */
  .entry .content {
    padding-block: 50px;
  }
  .entry .content .post .post_body_wrap .post_titlearea {
    margin-bottom: 25px;
  }
  .entry .content .post .post_body_wrap .post_titlearea .post_title {
    font-size: 20px;
  }
  .entry .content .post .post_body_wrap #postbody {
    padding-bottom: 40px;
  }
  .entry .content .post .post_body_wrap .pdf a {
    max-width: 320px;
    height: 55px;
  }
}