@charset "UTF-8";
@import url("global.css");
@import url("https://fonts.googleapis.com/css2?family=Amita:wght@400;700&family=Redressed&family=Shippori+Mincho:wght@400;600;800&display=swap");
/*--------- Archive ---------*/
.archive .list {
  max-width: 1200px;
  margin: 130px auto;
}
.archive .list li {
  background: #E5E7EB;
}
.archive .list li + li {
  margin-top: 20px;
}
.archive .list li a {
  display: flex;
  align-items: center;
  position: relative;
  padding: 25px 30px;
  padding-right: 70px;
  align-items: center;
  font-weight: 600;
  font-size: 20px;
}
.archive .list li a:hover {
  opacity: .6;
}
.archive .list li a .num {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-radius: 100px;
  background: #fff;
  font-size: 18px;
  width: 40px;
  height: 40px;
  min-width: 40px;
  margin-right: 20px;
  letter-spacing: 0;
}
.archive .list li a::before {
  content: "\f105";
  font-family: 'Font Awesome 6 free','Font Awesome 6 Brands';
  font-weight: 900;
  width: 20px;
  text-align: center;
  font-size: 32px;
  line-height: 1;
  color: #1F2A44;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}

/*--------- Entry ---------*/
.single .post {
  background-color: rgba(229, 231, 235, 0.5);
  padding: 35px 35px 40px;
  margin-bottom: 80px;
}
.single .post .post_title {
  font-family: "Shippori Mincho", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.7;
  margin: 0 10px;
  margin-bottom: 25px;
  text-align: center;
}
.single .post .postbody {
  background-color: #FFF;
  border: 1px solid rgba(116, 116, 116, 0.2);
  padding: 40px 30px;
}

/* 英語サイト */
.english.single {
  letter-spacing: 0;
}
.english.single .post .postbody {
  letter-spacing: 0;
  word-break: normal;
  overflow-wrap: break-word;
  text-align: justify;
}

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

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

 Responsive-Breakpoint-2 ( 1280px )
 
------------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint-3 ( 959px )
 
------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 959px) {
  /*--------- Archive ---------*/
  .archive .list li {
    line-height: 1.5;
  }
  .archive .list li a {
    padding: 20px 25px;
    padding-right: 65px;
    font-size: 18px;
  }
  .archive .list li a .num {
    font-size: 18px;
    width: 38px;
    height: 38px;
    min-width: 38px;
    line-height: 2;
  }
  .archive .list li a::before {
    font-size: 28px;
    right: 25px;
  }

  /*--------- Entry ---------*/
  .single .post {
    padding: 30px 25px 35px;
    margin-bottom: 65px;
  }
  .single .post .post_title {
    font-size: 22px;
    line-height: 1.6;
  }
  .single .post .postbody {
    padding: 40px 20px;
  }
  .single .post .postbody table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .single .post .postbody table th, .single .post .postbody table td {
    min-width: 300px;
  }
  .single .post .postbody table::-webkit-scrollbar {
    height: 7px;
  }
  .single .post .postbody table::-webkit-scrollbar-track {
    background: rgba(79, 98, 130, 0.2);
  }
  .single .post .postbody table::-webkit-scrollbar-thumb {
    background: #4F6282;
    -webkit-border-radius: 10px;
    border-radius: 10px;
  }

  /* 英語サイト */
  .english.single .post .postbody {
    text-align: left;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint-4 ( 644px )
 
------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 644px) {
  /*--------- Archive ---------*/
  .archive .list {
    margin: 40px auto 60px;
  }
  .archive .list li {
    line-height: 1.2;
  }
  .archive .list li + li {
    margin-top: 10px;
  }
  .archive .list li a {
    padding: 15px 30px;
    padding-left: 45px;
    font-size: 14px;
  }
  .archive .list li a .num {
    font-size: 13px;
    width: 25px;
    height: 25px;
    min-width: 25px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
  .archive .list li a::before {
    font-size: 25px;
    right: 5px;
  }

  /*--------- Entry ---------*/
  .single .post {
    padding: 20px 10px 30px;
    margin-bottom: 50px;
  }
  .single .post .post_title {
    font-size: 16px;
    line-height: 1.5;
    width: fit-content;
    max-width: 95%;
    margin: 0 auto;
    margin-bottom: 20px;
    text-align: left;
  }
  .single .post .postbody {
    padding: 30px 20px;
    text-align: justify;
    line-height: 1.6;
  }
  .single .post .postbody p {
    font-size: 14px;
  }
  .single .post .postbody p + p {
    margin-top: 14px;
  }
  .single .post .postbody table th, .single .post .postbody table td {
    min-width: 160px;
  }
}
