@import 'https://fonts.googleapis.com/css2?family=Noto+Emoji&display=swap';
:root {
  --font-family-noto-emoji:
    'Noto Emoji', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
    emoji;
}
body {
  font-family: 'Hiragino Sans', sans-serif;
  margin: 0;
  background-color: #f4f4f4;
  color: #484848;
}
a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  color: #222;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.urllist-categories,
.recent-entries-categories,
.entry-categories,
.categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.urllist-categories a,
.recent-entries-categories a,
.entry-categories a,
.categories a {
  background-color: #ff9d00;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 0 15px;
  border-radius: 100px;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  height: 27px;
  line-height: 27px;
  box-sizing: border-box;
  margin: 0;
}
.urllist-categories a:hover,
.recent-entries-categories a:hover,
.entry-categories a:hover,
.categories a:hover {
  background-color: #e68a00;
}
.header {
  background-color: #9950ff;
}
.header-content {
  max-width: 1440px;
  margin: 0 auto;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 1000px) {
  .header-content {
    height: 74px;
  }
}
.header-nav {
  position: absolute;
  left: 20px;
}
@media (max-width: 1000px) {
  .header-nav {
    left: 15px;
  }
}
.header-nav-link {
  color: #000;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}
.header-nav-link:hover {
  color: #222;
}
@media (max-width: 1000px) {
  .header-nav-link {
    font-size: 12px;
  }
}
.header-title-logo {
  margin: 0;
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1000px) {
  .header-title-logo {
    top: calc(50% + 3px);
    transform: translate(-50%, -50%);
  }
}
.header-title-logo a {
  display: block;
}
.header-title-logo a img {
  display: block;
  height: 105px;
  width: auto;
}
@media (max-width: 1000px) {
  .header-title-logo a img {
    height: 60px;
  }
}
.news-title {
  font-size: 0;
  margin: 55px auto;
  text-align: center;
}
@media (max-width: 1000px) {
  .news-title {
    margin: 30px auto;
  }
}
.news-title img {
  display: block;
  width: 206px;
  height: 42px;
  margin: 0 auto;
}
@media (max-width: 1000px) {
  .news-title img {
    width: 157px;
  }
}
#container {
  margin: 0 auto;
}
#content {
  max-width: 1440px;
  margin: 0 auto 100px;
}
@media (max-width: 800px) {
  #content {
    margin: 0 auto 80px;
  }
}
#content-inner {
  display: flex;
  gap: 35px;
  padding: 0 65px;
}
@media (max-width: 1000px) {
  #content-inner {
    padding: 0 40px;
  }
}
@media (max-width: 800px) {
  #content-inner {
    flex-direction: column;
    padding: 0 15px;
  }
}
#wrapper {
  flex: 1;
}
#wrapper::before {
  content: '';
  display: block;
  height: 5px;
  border-radius: 3px;
  background-color: #a7a7a7;
}
@media (max-width: 800px) {
  #wrapper::before {
    content: none;
  }
}
.hatena-module-title {
  font-size: 26px;
  font-weight: 600;
  margin: 35px 0 16px;
}
@media (max-width: 800px) {
  .hatena-module-title {
    margin: 0 0 16px;
    font-size: 20px;
  }
}
.hatena-module-title a {
  color: #484848;
  text-decoration: none;
}
.recent-entries.hatena-urllist.urllist-with-thumbnails {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.recent-entries.hatena-urllist.urllist-with-thumbnails > li {
  padding: 20px 0;
  border-bottom: 1px dashed #484848;
}
.recent-entries.hatena-urllist.urllist-with-thumbnails
  > li:hover
  .urllist-image {
  box-shadow: 0 0 0 3px #484848;
}
@media (max-width: 800px) {
  .recent-entries.hatena-urllist.urllist-with-thumbnails > li:first-child {
    border-top: 1px dashed #484848;
  }
}
.urllist-image-link,
.recent-entries-image-link {
  grid-column: 1;
  grid-row: 1/-1;
}
.urllist-item-inner,
.recent-entries-item-inner {
  width: 100%;
  display: grid;
  grid-template-columns: 200px 1fr;
  grid-template-rows: auto auto auto auto;
  gap: 0 20px;
}
@media (max-width: 600px) {
  .urllist-item-inner,
  .recent-entries-item-inner {
    grid-template-columns: 110px 1fr;
  }
}
.urllist-image,
.recent-entries-image {
  display: block;
  width: 200px;
  border-radius: 14px;
  object-fit: cover;
  background-color: #d3d3d3;
  box-shadow: 0 0 0 1px #484848;
  transition: box-shadow 0.1s ease;
  height: 145px;
}
@supports (aspect-ratio: 1) {
  .urllist-image,
  .recent-entries-image {
    height: auto;
    aspect-ratio: 200/145;
  }
}
@media (max-width: 600px) {
  .urllist-image,
  .recent-entries-image {
    border-radius: 8px;
    width: 110px;
    height: 79.75px;
  }
  @supports (aspect-ratio: 1) {
    .urllist-image,
    .recent-entries-image {
      height: auto;
    }
  }
}
.urllist-date-link,
.recent-entries-date-link {
  color: #e76d00;
  font-family: 'Courier New', monospace;
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 1.4px;
  margin-bottom: 10px;
  grid-column: 2;
  grid-row: 1;
}
.urllist-date-link:hover,
.recent-entries-date-link:hover {
  color: #d05f00;
}
.urllist-title-link,
.recent-entries-title-link {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 10px;
  color: #484848;
  text-decoration: none;
  display: block;
  grid-column: 2;
  grid-row: 2;
}
.urllist-title-link:hover,
.recent-entries-title-link:hover {
  color: #222;
}
.urllist-entry-body,
.recent-entries-entry-body {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.4;
  color: rgba(0, 0, 0, 0.5);
  margin: 0 0 10px;
  grid-column: 2;
  grid-row: 3;
}
.urllist-categories,
.recent-entries-categories {
  grid-column: 2;
  grid-row: 4;
}
.urllist-see-more {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
}
.archive-header-category {
  margin: 0;
}
.archive-header-category .archive-heading,
.archive-heading {
  font-size: 26px;
  font-weight: 600;
  margin: 35px 0 16px;
}
@media (max-width: 800px) {
  .archive-header-category .archive-heading,
  .archive-heading {
    margin: 0 0 16px;
    font-size: 20px;
  }
}
.archive-entries {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.archive-entries .archive-entry {
  padding: 20px 0;
  border-bottom: 1px dashed #484848;
  display: grid;
  grid-template-columns: 200px 1fr;
  grid-template-rows: auto auto auto auto;
  gap: 0 20px;
}
@media (max-width: 800px) {
  .archive-entries .archive-entry:first-child {
    border-top: 1px dashed #484848;
  }
}
@media (max-width: 600px) {
  .archive-entries .archive-entry {
    grid-template-columns: 110px 1fr;
  }
}
.archive-entries .entry-thumb-link {
  grid-column: 1;
  grid-row: 1/-1;
}
.archive-entries .entry-thumb {
  display: block;
  width: 200px;
  border-radius: 14px;
  object-fit: cover;
  background-size: cover;
  background-position: center;
  background-color: #d3d3d3;
  box-shadow: 0 0 0 1px #484848;
  transition: box-shadow 0.1s ease;
  height: 145px;
}
@supports (aspect-ratio: 1) {
  .archive-entries .entry-thumb {
    height: auto;
    aspect-ratio: 200/145;
  }
}
@media (max-width: 600px) {
  .archive-entries .entry-thumb {
    border-radius: 8px;
    width: 110px;
    height: 79.75px;
  }
  @supports (aspect-ratio: 1) {
    .archive-entries .entry-thumb {
      height: auto;
    }
  }
}
.archive-entries .archive-entry-header {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
}
.archive-entries .archive-date {
  margin-bottom: 10px;
}
.archive-entries .archive-date a {
  color: #e76d00;
  font-family: 'Courier New', monospace;
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 1.4px;
  text-decoration: none;
}
.archive-entries .archive-date a:hover {
  color: #d05f00;
}
.archive-entries .archive-date time {
  font-family: 'Courier New', monospace;
}
.archive-entries .archive-entry .entry-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 10px;
}
.archive-entries .archive-entry .entry-title .entry-title-link {
  color: #484848;
  text-decoration: none;
  display: block;
}
.archive-entries .archive-entry .entry-title .entry-title-link:hover {
  color: #222;
}
.archive-entries .archive-entry-body {
  grid-column: 2;
  grid-row: 2;
}
.archive-entries .archive-entry-body .archive-entry-tags-wrapper,
.archive-entries .archive-entry-body .social-buttons {
  display: none;
}
.archive-entries .entry-description {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.4;
  color: rgba(0, 0, 0, 0.5);
  margin: 0 0 10px;
}
.archive-entries .categories {
  grid-column: 2;
  grid-row: 3;
}
.pager {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 40px 0 60px;
  padding: 0;
}
@media (max-width: 600px) {
  .pager {
    gap: 20px;
    margin: 30px 0 40px;
  }
}
.pager a {
  color: #484848;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}
.pager a:hover {
  color: #222;
}
.entry {
  border-bottom: 1px dashed #484848;
  padding-bottom: 35px;
}
.entry-header {
  position: relative;
  margin: 35px 0;
}
@media (max-width: 800px) {
  .entry-header {
    margin: 0 0 35px;
  }
}
.date {
  color: #e76d00;
  font-family: 'Courier New', monospace;
  font-weight: 600;
  font-size: 16px;
  font-style: normal;
  line-height: 100%;
  letter-spacing: 1.6px;
}
.date a {
  color: #e76d00;
  text-decoration: none;
}
.date a:hover {
  color: #d05f00;
}
.entry-title {
  color: #484848;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
  margin: 15px 0;
}
.entry-header-menu {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 13px;
}
.entry-header-menu a {
  color: rgba(72, 72, 72, 0.5);
}
.entry-header-menu a:hover {
  color: rgba(72, 72, 72, 0.8);
}
.entry-content {
  margin: 30px 0 0;
  line-height: 1.8;
}
.entry-content a {
  color: #0091ff;
  text-decoration: underline;
}
.entry-content a:hover {
  color: #003d80;
}
.entry-content ul {
  list-style: revert;
  padding: revert;
  margin: revert;
}
.entry-content table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  margin: 1em 0;
  border: 2px solid #ddd;
}
.entry-content table th,
.entry-content table td {
  padding: 8px 12px;
  border: 1px solid #ddd;
}
.entry-content table thead th {
  background-color: #eaeaea;
  font-weight: 700;
  text-align: left;
}
.entry-content table tbody {
  background-color: #fafafa;
}
.hatena-asin-detail {
  border-radius: 15px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.3);
  background: #fff;
}
.pager {
  display: flex;
  justify-content: space-between;
  padding: 20px 0 0;
  gap: 40px;
}
.pager a {
  color: #484848;
  font-size: 14px;
  line-height: 1.4;
  display: inline-flex;
  overflow: hidden;
  text-overflow: ellipsis;
  gap: 8px;
}
.pager a:hover {
  color: #222;
}
.pager-arrow {
  display: none;
}
.pager-prev,
.pager-next {
  flex: 1;
  min-width: 0;
}
.pager-prev {
  text-align: left;
}
.pager-prev a::before {
  content: '◀ ';
  flex-shrink: 0;
}
.pager-next {
  text-align: right;
}
.pager-next a::after {
  content: ' ▶';
  flex-shrink: 0;
}
body.page-entry #content-inner {
  position: relative;
  padding-top: 152px;
}
@media (max-width: 1000px) {
  body.page-entry #content-inner {
    padding-top: 102px;
  }
}
body.page-entry #entry-header-modules {
  position: absolute;
  top: -192px;
  left: 0;
  right: 0;
}
@media (max-width: 1000px) {
  body.page-entry #entry-header-modules {
    top: -142px;
  }
}
@media (max-width: 800px) {
  body.page-entry #entry-header-modules {
    top: -102px;
  }
}
#box2 {
  width: 400px;
  flex-shrink: 0;
}
@media (max-width: 1000px) {
  #box2 {
    width: 300px;
  }
}
@media (max-width: 800px) {
  #box2 {
    width: 100%;
  }
}
#box2 .hatena-module {
  background-color: #fff;
  border: 2px dashed rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  padding: 24px 20px;
  margin-bottom: 35px;
}
@media (max-width: 800px) {
  #box2 .hatena-module {
    margin-bottom: 16px;
  }
}
#box2 .hatena-module-title {
  font-size: 0;
  margin: 0 0 16px;
}
#box2 .hatena-module-body {
  padding: 0 0 0 31px;
}
#box2 .hatena-module-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#box2 .hatena-module-body li {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}
#box2 .hatena-module-body li a {
  color: #484848;
  text-decoration: none;
}
#box2 .hatena-module-body li a:hover {
  color: #222;
}
#box2 .hatena-module-links .hatena-module-title::before {
  content: '';
  display: inline-block;
  width: 23px;
  height: 26px;
  background-image: url('https://cdn.blog.st-hatena.com/files/17179246901360041128/17179246901377460444');
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 8px;
  vertical-align: middle;
}
#box2 .hatena-module-links .hatena-module-title::after {
  content: '';
  display: inline-block;
  width: 107px;
  height: 26px;
  background-image: url('https://cdn.blog.st-hatena.com/files/17179246901360041128/17179246901377460456');
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}
#box2 .hatena-module-links li::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
}
#box2 .hatena-module-archive .hatena-module-title a {
  font-size: 0;
  display: block;
  align-items: center;
  text-decoration: none;
}
#box2 .hatena-module-archive .hatena-module-title a::before {
  content: '';
  display: inline-block;
  width: 23px;
  height: 26px;
  background-image: url('https://cdn.blog.st-hatena.com/files/17179246901360041128/17179246901377460480');
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 8px;
  vertical-align: middle;
}
#box2 .hatena-module-archive .hatena-module-title a::after {
  content: '';
  display: inline-block;
  width: 124px;
  height: 26px;
  background-image: url('https://cdn.blog.st-hatena.com/files/17179246901360041128/17179246901377460489');
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}
#box2 .hatena-module-archive ul ul {
  padding-left: 24px;
  margin-top: 10px;
}
#box2 .hatena-module-archive .archive-module-button {
  position: relative;
  top: -2px;
  margin: 0 10px 0 0;
  color: #ff9d00;
  font-size: 14px;
  opacity: 1;
}
#box2 .hatena-module-category .hatena-module-title::before {
  content: '';
  display: inline-block;
  width: 23px;
  height: 26px;
  background-image: url('https://cdn.blog.st-hatena.com/files/17179246901360041128/17179246901377460503');
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 8px;
  vertical-align: middle;
}
#box2 .hatena-module-category .hatena-module-title::after {
  content: '';
  display: inline-block;
  width: 159px;
  height: 26px;
  background-image: url('https://cdn.blog.st-hatena.com/files/17179246901360041128/17179246901387153535');
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}
#box2 .hatena-module-category li::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
}
.footer {
  position: relative;
  background-color: #dfdfdf;
  padding: 40px 64px 60px;
  box-sizing: border-box;
}
@media (max-width: 750px) {
  .footer {
    padding: 40px 30px 60px;
  }
}
@media (max-width: 600px) {
  .footer {
    padding: 30px 15px 40px;
  }
}
.footer-shadow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  background-color: rgba(0, 0, 0, 0.4);
}
.footer-content {
  margin: 0 auto 30px;
}
@media (max-width: 600px) {
  .footer-content {
    margin: 0 auto 20px;
  }
}
.footer-logo {
  margin: 0 0 16px;
  text-align: center;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  color: #484848;
}
.footer-nav a {
  color: #484848;
  text-decoration: none;
}
.footer-nav a:hover {
  color: #222;
}
.footer-copyright {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: #000;
}
.footer-copyright p {
  margin: 0;
}
.footer-abj {
  width: 85px;
  height: 66px;
  margin: 35px auto 16px;
}
.footer-abj img {
  width: 100%;
  height: 100%;
}
.footer-abj-text {
  font-size: 11px;
  color: #000;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
