/*
Theme Name: MyTheme
*/

/* 共通 */
body {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a {
  color: black;
  text-decoration: none;
}

main {
  background-color: #b39d7329;
  padding: 3rem 0 3rem 0;
  min-height: 100vh;
}

article {
  height: 100% !important;
}

p {
  line-height: 30px;
}

footer {
  margin-top: auto;
}

.main-content {
  padding: 15px;
  background-color: white;
  border-radius: 5px;
}

.section {
  border-left: 10px solid;
  padding-left: 18px;
  margin-top: 6px;
}

.front-article {
  border: 1px solid;
  border-color: #dccbcb;
  margin-top: 20px;
}

.front-article .mainvisual {
  border-right: 1px solid;
  border-color: #dccbcb;;
}

.front-article-title {
  font-size: 20px:
}

aside {
  background-color: #ffffff;
  padding: 20px;
  border: 1px solid;
  border-radius: 5px;
  border-color: #ffffff;
}

/* header.php */
.site-header {
  height: 70px;
  display: flex;
  align-items: center;
}

.header-nav {
  display: flex;
  justify-content: end;
  gap: 15px;
  margin-right: 50px;
}

.nav-link {
    color: black;
    text-decoration: none;
}

.nav-link:hover {
    color: gray;
}

.menu-modal-category {
  font-size: 22px;
  width: 85%;
  border: 1px solid;
  border-color: #beadad;
  border-radius: 5px;
  text-align: center;
  background-color: #fff5f5;
}

/* sidebar.php */
.category-section {
  border-left: 5px solid;
  padding-left: 8px;
  font-size: 18px;
  margin-bottom: 10px;
}

.list-group-item:hover {
  background-color: var(--bs-tertiary-bg);
}

.table-of-content {
  background: #f9f9f9;
  border: 1px solid #aaa;
  padding: 10px;
  margin-bottom: 3em;
  display: table;
  font-size: 95%;
  width: 100%;
}

.toc_title {
  margin-bottom: 10px;
  text-align: center;
  font-weight: 700;
}

.toc_list {
  list-style-type: none;
  text-decoration: none;
  padding-inline-start: 0px;
}

ul li a:hover {
  color: #0000004f
}

/* front-page.php */
.mainvisual {
  width: 100%;
  height: auto;
  padding: 10px;
}

/* single.php */
.pre {
  padding: 1rem;
  background-color: black;
}

.code {
  color: #198754;
}

.entry-content {
  white-space: normal;      
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.single-h2 {
  border-bottom: solid;
  border-bottom-width: 6px;
  padding-bottom: 7px;
  border-color: #3b2807a8;
  margin-top: 25px;
  margin-bottom: 25px;
}

.single-h3 {
  border-left: 5px solid;
  padding-left: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
  border-color: #3b2807a8;
}

/* footer.php */
.site-footer {
  height: 100px;
  align-content: center;
  background-color: black;
  color: white;
}

.site-info {
  text-align: center;

}

/* 携帯 */
@media screen and (width <= 992px) {
  .side-content {
    background-color: white;
  }

  .front-article-title {
    font-size: 14px;
    width: 98%;
  }
}

@media screen and (width >= 1400px) {
  .card-body {
    height: 120px;
  }
}

@media screen and (width >= 992px) {
  .card-body {
    height: 160px;
  }
}
