@charset "UTF-8";
* {
  min-height: 0vw;
  list-style: none;
  box-sizing: border-box;
}

img {
  vertical-align: top;
}

:root {
  --main-color: rgb(35, 235, 158);
  --base-color: rgb(167, 140, 140);
  --accent-color: rgb(252, 215, 135);
  --pc-width: 1200px;
}

.container-width {
  max-width: var(--pc-width);
  margin: 0 auto;
}

.pagetop {
  cursor: pointer;
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: 0.3s;
  color: #00a6c4;
  background: #fff;
  /*   デフォルトは非表示 */
  opacity: 0;
}

.pagetop:hover {
  box-shadow: 0 0 10px #00a6c4;
}

.main-visual img {
  height: 30vh;
  object-fit: cover;
  width: 100%;
}

article > figure img {
  width: 150px;
  height: 150px;
  object-fit: cover;
}

h1.com-name {
  text-align: left;
  display: inline-block;
}

.headermenu {
  display: inline-block;
}

.title-menu {
  display: flex;
  justify-content: space-between;
}

.sidebar-left,
.subcontents {
  padding: 24px;
}

.text-area h1 {
  margin-bottom: 1rem;
}

ul.page-numbers {
  display: flex;
  justify-content: center;
}
ul.page-numbers li {
  width: 32px;
  text-align: center;
}
ul.page-numbers li a {
  display: block;
  width: 80%;
  margin: auto;
}
ul.page-numbers li:last-child,
ul.page-numbers li:first-child {
  width: 52px;
}

.searchform > input {
  height: 32px;
}