html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  background: url(../img/bg-top.svg) left top/100% auto no-repeat, #fdf9c8;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", Meiryo, sans-serif, "Segoe UI Emoji";
  font-size: 15px;
  color: #000000;
  letter-spacing: 0.04em;
  line-height: 1.66666;
  word-break: break-word;
  word-wrap: break-word;
  line-break: strict;
}

button {
  color: inherit;
  	display: inline-block;

}

input,
textarea {
  border-radius: 0;
}

@media screen and (max-width: 768px) {
  body {
    background-size: auto 160px;
  }
}

.header__container {
  max-width: 1100px;
  margin: 0 auto;
}
.header__top {
  padding: 21px 0 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  flex-flow: row wrap;
  gap: 12px 18px;
}
.header__nav-item-link {
  display: flex;
  align-items: center;
  gap: 4px;
  color: inherit;
  text-decoration: inherit;
}
.header__user-nav {
  list-style: none;
  padding: 16px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  background: #f1e696;
  border-radius: 22px;
}
.header__user-nav::before {
  content: "会員menu";
  border-right: 2px solid #707070;
  padding: 10px 8px;
}
.header__user-nav-item-link {
  display: flex;
  align-items: center;
  gap: 4px;
  color: inherit;
  text-decoration: inherit;
}
#is-nav-opened {
  display: none;
}
.header__page {
  list-style: none;
  padding: 7px 34px;
  margin: 0;
  background: #fff;
  display: flex;
  flex-flow: row wrap;
  border-radius: 22px;
  gap: 3px;
}
.header__page-item-link {
  padding: 8px 15px 4px;
  text-decoration: inherit;
  color: inherit;
  display: inline-block;
}
.header__page-item-link:hover {
  background: #efe384;
}
@media screen and (max-width: 768px) {
  .header__container {
    width: calc(100% - 38px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 16px;
  }
  .header__top {
    padding: 0;
  }
  .header__bottom {
    flex-basis: 100%;
    display: none;
    padding-top: 18px;
  }
    .header__top img{
      width: 250px;
    }
  #is-nav-opened:checked + .header__bottom {
    display: block;
  }
  .header__page {
    padding: 8px;
    margin-top: 24px;
    border-radius: 16px;
  }
}

.bordered-title {
  font-size: 28px;
  font-weight: normal;
  letter-spacing: 0.08em;
  border-width: 0;
  border-bottom-width: 8px;
  border-style: solid;
  border-image: linear-gradient(
      90deg,
      #f0e384 0%,
      #f0e384 30%,
      #fff 30%,
      #fff 100%
    )
    30;
  padding-bottom: 5px;
}

.boxed-title {
  display: inline-block;
  border-radius: 22px;
  border: 1px solid #707070;
  background: #ffffff;
  font-size: 24px;
  font-weight: normal;
  padding: 10px 100px 10px 70px;
  margin: 0;
  position: relative;
}
.boxed-title::before {
  content: url(../img/boxed-title-marker.svg);
  position: absolute;
  top: -12px;
  left: 0;
}

.footer {
  background: url(../img/footer-bg.svg) left top/100% auto no-repeat;
  text-align: center;
  padding: 14px;
  margin-top: 150px;
}
@media screen and (max-width: 768px) {
  .footer {
    background-size: auto 100%;
    margin-top: 100px;
  }
}

.solid-table {
  width: 100%;
  border-collapse: collapse;
}
.solid-table a {
  color: inherit;
  text-decoration: none;
}
.solid-table a:hover {
  text-decoration: underline;
}
.solid-table th,
.solid-table td {
  border: 1px solid #707070;
}
.solid-table thead th {
  background: #919191;
  color: #fff;
  font-weight: normal;
  padding: 22px 16px 16px;
}
.solid-table tbody th,
.solid-table tbody td {
  text-align: left;
  font-weight: normal;
  background: #ffffff;
  padding: 20px 22px;
}
.solid-table tbody th {
  text-align: left;
}
.solid-table tbody td {
  text-align: center;
  min-width:80px;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  gap: 24px;
  margin: 0;
  padding: 0;
}
.pagination__prev-link,
.pagination__next-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: inherit;
  color: inherit;
  width: 39px;
  height: 39px;
  background: #f0e384;
  border-radius: 90%;
}
.pagination__prev {
  margin-right: 40px;
}
.pagination__next {
  margin-left: 40px;
}
.pagination__item-link {
  color: inherit;
  text-decoration: inherit;
}

  .solid-table tbody th img{
    width: 100%;
  }

   .solid-table tbody th .author-wrap img{
    width: 20px;
  }

@media screen and (max-width: 768px) {
  .pagination {
    gap: 16px;
  }
  .pagination__prev {
    margin-right: 24px;
  }
  .pagination__next {
    margin-left: 24px;
  }

  .solid-table tbody td {
  min-width:30px;
}


  .solid-table tbody th img{
    width: 100%;
  }


    
}

.back__link--wrap{
  margin: 30px auto 0 0;
  padding: 0;
  list-style-type: none;
}
.back__link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  list-style: none;
  gap: 24px;
  margin: 0;
  padding: 0;
}
.back__link::before {
  content: "<";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: inherit;
  color: inherit;
  width: 39px;
  height: 39px;
  background: #f0e384;
  border-radius: 90%;
}

@media not screen and (max-width: 768px) {
  .sp-only {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
}
