@charset "UTF-8";
@import url("global.css");
#catlist {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-block: -30px 20px;
}
#catlist .title {
  font-size: 18px;
  font-family: "Noto Serif JP", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  white-space: nowrap;
  padding-top: 2px;
}
#catlist ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
#catlist ul li a {
  display: block;
  background-color: #F1F1F1;
  border-radius: 100px;
  padding: 5px 20px;
  font-size: .9em;
  letter-spacing: .05em;
}

.selectarea {
  margin-block: 30px 0;
  background-color: #F1F1F1;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
  justify-content: center;
  display: flex;
  align-items: center;
}
.selectarea dl {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  box-sizing: border-box;
}
.selectarea dl dt {
  font-size: 14px;
  white-space: nowrap;
}
.selectarea dl dd {
  padding: 25px 0 25px 15px;
  position: relative;
}
.selectarea dl dd::after {
  content: "";
  font-family: 'Font Awesome 6 free','Font Awesome 6 Brands';
  font-weight: 900;
  position: absolute;
  width: 12px;
  height: 10px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  right: 10px;
  top: 50%;
  pointer-events: none;
  transform: translateY(-50%);
  background-color: #6B6B6B;
}
.selectarea dl dd form select {
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "游ゴシック Medium", "Yu Gothic Medium", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "Meiryo", "メイリオ", Helvetica, sans-serif;
  border: #6B6B6B 1px solid;
  background-color: #fff;
  border-radius: 2px;
  padding: 15px 35px 15px 15px;
  width: 100%;
  letter-spacing: 0;
  box-sizing: border-box;
  vertical-align: middle;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

/* ------------------------------
 Index-Page
------------------------------ */
ul#postlist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: min(60px,4vw);
}
ul#postlist li {
  display: contents;
}
ul#postlist li a {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  height: 100%;
  margin-top: 65px;
  line-height: 1.4;
}
ul#postlist li .image {
  aspect-ratio: 3 / 2;
  margin-bottom: 5px;
}
ul#postlist li .cat {
  letter-spacing: 0;
}
ul#postlist li .cat span {
  display: inline-block;
  font-size: 13px;
  margin: 5px 15px 0 0;
  color: #132240;
}
ul#postlist li .cat span::before {
  content: "#";
  display: inline-block;
  margin-right: 3px;
}
ul#postlist li .posttitle {
  font-size: 18px;
  margin-block: 18px 12px;
  color: #132240;
}
ul#postlist li .date {
  display: block;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 13px;
  letter-spacing: .05em;
  color: #6B6B6B;
}

#cattitle {
  text-align: center;
  font-size: clamp(20px, 3vw, 32px);
  font-family: "Noto Serif JP", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  margin-top: 70px;
}
#cattitle::before, #cattitle::after {
  content: "";
  width: 60px;
  height: 1px;
  display: inline-block;
  background-color: #6B6B6B;
  vertical-align: 10px;
}
#cattitle::before {
  margin-right: 25px;
}
#cattitle::after {
  margin-left: 25px;
}

/* ------------------------------
 Entry-Page
------------------------------ */
#postmain {
  margin-top: -90px;
}
#postmain .posthead {
  border-bottom: #dcdcdc 1px solid;
  padding-block: 25px 35px;
  margin-bottom: 50px;
}
#postmain .posthead .main {
  padding-top: 30px;
}
#postmain .posthead .main .date {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 14px;
  letter-spacing: .05em;
  color: #6B6B6B;
}
#postmain .posthead .main .posttitle {
  line-height: 1.5;
  color: #132240;
  font-size: clamp(18px, 3.2vw, 30px);
  font-family: "Noto Serif JP", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 600;
}
#postmain .posthead .main ul.cat {
  margin-top: 30px;
  display: flex;
  gap: 5px 15px;
}
#postmain .posthead .main ul.cat li a {
  display: block;
  font-size: 12px;
  letter-spacing: .05em;
}
#postmain .posthead .main ul.cat li a::before {
  content: "#";
  display: inline-block;
  margin-right: 3px;
}

.catposts {
  border-top: #dcdcdc 1px solid;
  padding-top: 50px;
  margin-block: 120px;
}
.catposts .title {
  text-align: center;
  margin-bottom: 45px;
}
.catposts .title span {
  display: block;
}
.catposts .title .ja {
  font-size: clamp(16px, 3vw, 22px);
  color: #132240;
}
.catposts .title .en {
  font-size: 13px;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  color: #6B6B6B;
}
.catposts #postlist {
  max-width: 1200px;
  margin-inline: auto;
}
.catposts #postlist li a {
  margin-top: 0;
}

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

 Responsive-Breakpoint-1 ( 1300px )
 
------------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint-2 ( 959px )
 
------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 959px) {
  #catlist {
    gap: 3vw;
    margin-block: -30px 20px;
  }
  #catlist .title {
    font-size: inherit;
    padding-top: 2px;
  }
  #catlist ul {
    gap: 10px;
  }

  .selectarea {
    margin-block: 0;
  }
  .selectarea dl {
    padding: 0 2vw;
  }

  /* ------------------------------
   Index-Page
  ------------------------------ */
  ul#postlist {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 5vw;
  }

  /* ------------------------------
   Entry-Page
  ------------------------------ */
  .catposts {
    margin-block: 80px;
  }
  .catposts ul#postlist {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 2vw;
  }
  .catposts ul#postlist li .cat span {
    font-size: 11px;
    margin: 5px 15px 0 0;
  }
  .catposts ul#postlist li .posttitle {
    font-size: 15px;
    margin-block: 10px 12px;
  }
  .catposts ul#postlist li .date {
    font-size: 12px;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint-3 ( 644px )
 
------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 644px) {
  #catlist {
    display: block;
    margin-block: -20px 0;
  }
  #catlist .title {
    text-align: center;
    margin-bottom: 10px;
  }
  #catlist ul {
    gap: 8px;
    justify-content: center;
  }
  #catlist ul li a {
    padding: 3px 15px 4px;
    font-size: 12px;
    letter-spacing: 0;
  }

  .selectarea {
    display: block;
    padding-block: 20px;
  }
  .selectarea dl dt {
    font-size: 13px;
    width: 110px;
  }
  .selectarea dl dd {
    padding: 5px 0 5px 15px;
  }
  .selectarea dl dd::after {
    width: 10px;
    height: 8px;
  }
  .selectarea dl dd form select {
    padding: 15px 30px 15px 15px;
  }

  /* ------------------------------
   Index-Page
  ------------------------------ */
  ul#postlist li a {
    margin-top: 40px;
  }
  ul#postlist li .image {
    aspect-ratio: 3 / 2;
    margin-bottom: 5px;
  }
  ul#postlist li .cat span {
    font-size: 10px;
    margin: 3px 10px 0 0;
  }
  ul#postlist li .cat span::before {
    margin-right: 2px;
  }
  ul#postlist li .posttitle {
    font-size: min(18px,3.6vw);
    margin-block: 8px;
  }
  ul#postlist li .date {
    font-size: 12px;
  }

  #cattitle {
    margin-top: 40px;
  }
  #cattitle::before, #cattitle::after {
    width: 30px;
    vertical-align: 7px;
  }
  #cattitle::before {
    margin-right: 15px;
  }
  #cattitle::after {
    margin-left: 15px;
  }

  /* ------------------------------
   Entry-Page
  ------------------------------ */
  #postmain {
    margin-top: -80px;
  }
  #postmain .posthead {
    padding-block: 30px;
    margin-bottom: 40px;
  }
  #postmain .posthead .main ul.cat {
    margin-top: 20px;
  }
  #postmain .posthead .author {
    font-size: 13px;
  }
  #postmain .posthead .author span {
    margin-left: 8px;
    width: 40px;
    height: 40px;
  }

  .catposts {
    padding-top: 30px;
    margin-block: 60px;
  }
  .catposts .title {
    margin-bottom: 30px;
  }
  .catposts ul#postlist {
    column-gap: 3vw;
  }
  .catposts ul#postlist li .cat span {
    font-size: 9px;
    margin: 0 10px 0 0;
  }
  .catposts ul#postlist li .cat span::before {
    margin-right: 2px;
  }
  .catposts ul#postlist li .posttitle {
    font-size: 13px;
    letter-spacing: 0;
    margin-block: 8px 10px;
  }
  .catposts ul#postlist li .date {
    font-size: 11px;
  }
}

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