@font-face {
  font-family: NotoSansJP;
  src: url('../fonts/NotoSansJP-VariableFont_wght.ttf');
}

@font-face {
  font-family: NotoSerifJP;
  src: url('../fonts/NotoSerifJP-VariableFont_wght.ttf');
}

body {
  background-color: white;
  color: black;
  font-family: 'NotoSansJP', Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 2em;
  margin: 0;
}

.hyperlink {
  color: inherit;
  display: block;
  text-decoration: none;
}

.header-content-pc {
  align-items: center;
  background-color: white;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  gap: 0px 15px;
  height: 75px;
  justify-content: space-around;
  padding: 0 15px;
  width: 100%;
}

@media screen and (max-width: 599px) {
  .header-content-fill {
    height: 60px;
  }

  .header-content-pc {
    display: none !important;
  }
}

.header-content-sp {
  align-items: center;
  background-color: white;
  box-sizing: border-box;
  display: flex;
  height: 60px;
  justify-content: center;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100000;
}

@media screen and (min-width: 600px) {
  .header-content-sp {
    display: none !important;
  }
}

.header-content-logo {
  display: block;
  height: 35px;
}

.header-content-logo img {
  height: 100%;
}

.header-content-menu-icon {
  cursor: pointer;
  height: 28px;
  left: 10px;
  padding: 8px;
  position: absolute;
  width: 28px;
}

.header-menu {
  align-items: center;
  background-color: white;
  display: none;
  flex-direction: column;
  font-size: 115%;
  gap: 25px 0;
  height: calc(100% - 60px);
  opacity: 0;
  padding: 25px;
  position: fixed;
  top: 60px;
  transition: opacity 200ms ease-in-out;
  width: 100%;
}

.header-link {
  color: black;
  text-decoration: none;
}

.header-link-selected {
  border-bottom: 2px solid #d59b0a;
  color: #d59b0a;
  font-weight: bold;
  padding: 1px 0;
}

footer {
  align-items: center;
  background-color: white;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
  padding: 20px 0;
}

.footer-content {
  align-items: center;
  display: flex;
  gap: 20px 60px;
  max-width: 90%;
  width: 800px;
}

@media screen and (max-width: 599px) {
  .footer-content {
    flex-direction: column;
  }
}

.footer-logo {
  background-color: gray;
  max-width: 80px;
  min-width: 80px;
  width: 80px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 0;
}

@media screen and (max-width: 599px) {
  .footer-links {
    justify-content: center;
  }
}

.footer-link {
  color: inherit;
  display: block;
  font-size: 85%;
  font-weight: bold;
  text-decoration: none;
  width: 200px;
}

.footer-copyright {
  font-size: 85%;
}

.article {
  box-sizing: border-box;
  margin: 40px auto;
  padding: 20px;
  width: 80%;
}

@media screen and (max-width: 600px) {
  .article {
    width: 95%;
  }
}

.decoratedTitle {
  align-items: center;
  display: flex;
  gap: 30px;
}

.decoratedTitle-icon {
  height: 20px;
  width: 20px;
}

.decoratedTitle-text {
  font-size: 150%;
  font-weight: bold;
}

.filled-button {
  background-color: #eed491;
  border-radius: 3px;
  color: black;
  cursor: pointer;
  display: block;
  font-size: 110%;
  font-weight: bold;
  padding: 12px 50px;
  text-decoration: none;
  word-break: break-all;
}

.white-button {
  background-color: white;
  border: 1px solid black;
  border-radius: 3px;
  box-sizing: border-box;
  color: black;
  cursor: pointer;
  display: block;
  font-size: 110%;
  font-weight: bold;
  padding: 8px 50px;
  text-decoration: none;
  word-break: break-all;
}

/* 投稿 */

.post-parent {
  display: flex;
  gap: 20px;
}

@media screen and (max-width: 800px) {
  .post-parent {
    flex-direction: column;
  }
}

.post-wrapper {
  width: 100%;
}

.post-title {
  background-color: #c0aa65;
  color: white;
  font-size: 120%;
  font-weight: bold;
  padding: 15px;
}

.post {
  margin-top: 20px;
}

.post .entry-header {
  display: none;
}

.post .entry-footer {
  display: none;
}

.post h2 {
  border-left: 10px solid #c0aa65;
  font-size: 140%;
  padding-left: 5px;
  margin-top: 25px;
}

.post p {
  margin: 15px 0;
}

.post .wp-block-table {
  margin: 15px 0;
}

.post .wp-block-button {
  width: 100%;
}

.post .wp-block-button a {
  background-color: #eed491;
  border-radius: 8px;
  color: black;
  font-weight: bold;
  padding: 12px;
  text-align: center;
}

.post blockquote {
  border: 1px solid black;
  margin: 0;
  padding: 0 15px;
}

.post summary {
  margin: 15px 0;
}
