@charset "UTF-8";
* {
  line-height: 1.5;
  font-family: "Didot", "凸版文久明朝";
}

.sidebar_content {
  display: flex;
}

.sidebar_a {
  width: 80%;
}

.sidebar_b {
  width: 20%;
  text-align: left;
  margin-left: 5%;
}

.label {
  font-size: 32px;
  font-weight: bold;
  border-left: 3px solid #4b4a4a;
  padding: 0 8px;
  background-color: #e6e6e6;
  height: 48px;
}
.label:nth-of-type(n + 2) {
  margin-top: 16px;
}

.category_list {
  margin-top: 24px;
}
.category_list ul {
  display: flex;
  flex-direction: column;
}
.category_list li {
  padding-left: 28px;
  position: relative;
  display: inline-block;
}
.category_list li:nth-of-type(n + 2) {
  margin-top: 16px;
}
.category_list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 3px #000;
  border-right: solid 3px #000;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: 8px;
  bottom: 0;
  margin: auto;
  transition: all 0.3s;
}
.category_list li:hover::before {
  transform: translateX(6px) rotate(45deg);
}
.category_list a {
  color: #000;
  font-size: 20px;
}

.search-form {
  margin-bottom: 24px;
}

.search-field {
  border: none;
  background-color: #e6e6e6;
  border-radius: 8px;
  font-size: 16px;
  padding: 4px 8px;
  height: 36px;
}

.search-ico {
  border: none;
  background-color: unset;
}

.sticky {
  position: sticky;
  top: 20px;
}

.content {
  max-width: 1120px;
  margin: 0 auto;
  margin-top: 32px;
  padding: 0 2%;
  padding-bottom: 64px;
}

h2 {
  font-size: 32px;
  font-weight: bold;
}

.archive__ttl {
  text-align: center;
}

.intro_txt {
  text-align: center;
}
.intro_txt h2 {
  font-size: 32px;
  font-weight: bold;
  display: inline-block;
}

.top__ttl {
  position: relative;
}

.top__sub {
  font-size: 12px;
  font-weight: normal;
  position: absolute;
  top: 24px;
  right: -132px;
}

.introduce {
  text-align: left;
  margin-top: 16px;
  padding-left: 8px;
}

.nav-links {
  margin-top: 32px;
}
.nav-links span,
.nav-links a {
  display: inline-block;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  color: #000;
  font-size: 18px;
  border: 2px solid #e6e6e6;
}
.nav-links span:nth-child(n+2),
.nav-links a:nth-child(n+2) {
  margin-left: 8px;
}
.nav-links span {
  background-color: #e6e6e6;
  font-weight: bold;
}

.post_content {
  margin-top: 32px;
}

.thumb {
  aspect-ratio: 1/1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.post__data {
  text-align: left;
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.post__data .post__card {
  width: calc((100% - 32px) / 2);
  transition: .3s;
}

.post__data .post__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.post__data a {
  color: #000;
}

.date {
  margin-top: 8px;
  font-size: 14px;
  color: #4b4a4a;
}

.excerpt {
  margin-top: 8px;
  font-size: 14px;
}

.cat {
  display: flex;
  text-align: center;
  width: 100%;
}
.cat span {
  width: 40px;
  font-size: 10px;
  color: #f7f4f2;
  padding: 5.47px 14.5px;
}
.cat span:nth-child(n+2) {
  margin-left: 8px;
}
.cat .review {
  background-color: #6c1818;
}
.cat .inside {
  background-color: #020404;
}

.ttl {
  margin-top: 16px;
  font-weight: bold;
}

.detail {
  display: flex;
  align-items: center;
}
.detail .cat {
  margin-left: 24px;
}
.detail span {
  width: 90px;
  font-size: 14px;
}
.detail a {
  color: #f7f4f2;
  display: block;
  padding: 5.47px 14.5px;
}

.single_content .date {
  margin: 0;
}
.single_content p {
  line-height: 1.8;
  margin-top: 32px;
}
.single_content .thumb {
  aspect-ratio: 16/9;
  width: 100%;
  height: initial;
  margin-top: 32px;
}
.single_content h1 {
  font-weight: bold;
  font-size: 32px;
  margin-top: 16px;
}
.single_content h2 {
  margin: 32px 0;
  font-weight: bold;
  font-size: 28px;
  border-left: 3px solid #4b4a4a;
  padding-left: 8px;
  line-height: 1;
}
.single_content h3 {
  margin: 32px 0;
  font-weight: bold;
  font-size: 20px;
  border-left: 3px solid #4b4a4a;
  padding-left: 8px;
  line-height: 1;
}

.single_txt a {
  text-decoration: underline;
}

.page-nav {
  display: flex;
  gap: 32px;
  padding-bottom: 64px;
  font-size: 14px;
}

.post-link {
  color: #000;
  background-color: #e6e6e6;
  border-radius: 24px;
  padding: 5.47px 14.5px;
}
.post-link i {
  transition: 0.3s;
}

.prev-link:hover i {
  transform: translateX(-8px);
}

.next-link:hover i {
  transform: translateX(8px);
}

header {
  display: flex;
  align-items: center;
}
header h1 {
  width: 100%;
  text-align: center;
}
header a {
  display: block;
  width: 100%;
  color: #fff;
  font-size: 64px;
  text-shadow: 1px 1px 0px #000;
  line-height: 240px;
}

.header_img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 240px;
}

#breadcrumb {
  padding-bottom: 0;
  display: flex;
  align-items: center;
}
#breadcrumb span {
  color: #4b4a4a;
}
#breadcrumb i {
  color: #4b4a4a;
  padding: 0 8px;
}
#breadcrumb .fa-house {
  padding-left: 0;
  padding-right: 4px;
}

footer {
  background-color: #e6e6e6;
  padding-top: 64px;
  position: relative;
}

.footer_menu {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer_menu ul {
  display: flex;
  flex-direction: column;
}
.footer_menu ul li {
  text-align: center;
  border-bottom: 1px solid #4b4a4a;
  padding: 10px 0;
}
.footer_menu ul li:last-of-type {
  border: none;
}
.footer_menu ul li a {
  color: #4b4a4a;
}

.copyright {
  margin-top: 56px;
  padding-bottom: 8px;
}
.copyright small {
  display: block;
  text-align: center;
  color: #4b4a4a;
  font-size: 10px;
}

.top-btn {
  all: unset;
  display: inline-block;
  border-radius: 20px;
  padding: 4px 20px 4px 4px;
  border: 2px solid #4b4a4a;
  position: relative;
  position: absolute;
  top: 40px;
  right: 10%;
  cursor: pointer;
  font-weight: bold;
  background-color: #f2f2f2;
  color: #4b4a4a;
  font-size: 12px;
}
.top-btn::before {
  content: "";
  width: 6px;
  height: 6px;
  border-left: 3px solid #4b4a4a;
  border-top: 3px solid #4b4a4a;
  transform: rotate(45deg);
  position: absolute;
  top: 10px;
  right: 6px;
}

.contact_container h5 {
  font-weight: bold;
  font-size: 32px;
}
.contact_container .navtxt {
  line-height: 2.5;
}
.contact_container .contactform input,
.contact_container .contactform textarea {
  border: none;
  background-color: #faf8ee;
}
.contact_container .contactform textarea {
  resize: none;
}
.contact_container .contactform input {
  padding: 4px 8px;
}
.contact_container .contactform .formlist {
  display: flex;
  flex-wrap: wrap;
}
.contact_container .contactform .formlist dt {
  width: 30%;
  margin-top: 18px;
}
.contact_container .contactform .formlist dd {
  width: 70%;
  margin-top: 18px;
}
.contact_container .contactform .formlist .wpcf7-not-valid-tip,
.contact_container .contactform .formlist .wpcf7-response-output.wpcf7-validation-errors {
  font-weight: bold;
}
.contact_container .contactform .formlist .required,
.contact_container .contactform .formlist .optional {
  margin-right: 15px;
  padding: 6px 14px;
  color: #fff;
  font-size: 12px;
  vertical-align: 1px;
}
.contact_container .contactform .formlist .required {
  background-color: #f33838;
}
.contact_container .contactform .formlist .optional {
  background: #878d8e;
}
.contact_container .contactform .submit_btn {
  margin-top: 18px;
}
.contact_container .contactform .submit_btn input {
  cursor: pointer;
  padding: 16px 32px;
  background-color: #878d8e;
  color: #fff;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s;
  font-size: 18px;
}
.contact_container .contactform .submit_btn input:hover {
  opacity: 0.7;
}

.page__card a {
  text-decoration: underline;
}

.page__ttl {
  font-size: 32px;
  text-align: center;
}

.page__txt p {
  line-height: 1.8;
}
.page__txt strong {
  display: block;
  margin: 32px 0;
  font-weight: bold;
  font-size: 20px;
  border-left: 3px solid #4b4a4a;
  padding-left: 8px;
  line-height: 1;
}

.not-found {
  text-align: center;
  padding: 40px 0;
}

#toc_container {
  display: none;
}

.toc_side {
  margin-top: 16px;
}
.toc_side h3 {
  font-size: 32px;
  font-weight: bold;
  border-left: 3px solid #4b4a4a;
  padding: 0 8px;
  background-color: #e6e6e6;
  height: 48px;
}

.toc_widget_list {
  margin-top: 8px;
  padding-left: 8px;
}
.toc_widget_list a {
  color: #000;
  font-size: 14px;
}
.toc_widget_list a:hover {
  text-decoration: underline;
}

@media (max-width: 938px) {
  .sidebar_content {
    flex-direction: column;
  }
  .sidebar_a {
    width: 100%;
  }
  .sidebar_b {
    width: 100%;
    margin: 0;
    margin-top: 32px;
  }
  .top__sub {
    font-size: 10px;
    right: -110px;
  }
  .container_side_category {
    display: flex;
    flex-direction: column;
  }
  .category_list {
    margin-top: 8px;
  }
  .formlist dt {
    width: 100% !important;
  }
}
@media (max-width: 500px) {
  .container_side_category {
    display: block;
  }
  .label:nth-of-type(n + 2) {
    margin: 0;
  }
  #breadcrumb span {
    font-size: 10px;
  }
  #breadcrumb i {
    font-size: 10px;
  }
  .post-link {
  font-size: 12px;
  }
}/*# sourceMappingURL=style.css.map */