@charset "UTF-8";
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  background-color: #f8f8f8;
  /** */
}
body .main-content {
  margin-bottom: 100px;
}
body a:link, body a:visited {
  color: #4682b4;
  text-decoration: none;
}
body a:hover, body a:active {
  color: #4682b4;
  text-decoration: underline;
}
body .bread-crumb {
  font-size: 12px;
}
body .bread-crumb .bread-crumb-list {
  margin-left: -45px;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
body .bread-crumb .bread-crumb-list li:not(:last-of-type)::after {
  content: " >";
  margin-right: 5px;
}
body .bread-crumb .bread-crumb-list li a {
  color: #555;
  text-decoration: none;
}
body .bread-crumb .bread-crumb-list li a:hover, body .bread-crumb .bread-crumb-list li a:active {
  color: #4682b4;
  text-decoration: none;
}

.topbar {
  height: 5px;
  background: #000;
}
@media (max-width: 575px) {
  .topbar {
    background: #880000;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  .topbar {
    background: #c0c0c0;
  }
}
@media (min-width: 769px) and (max-width: 992px) {
  .topbar {
    background: #808080;
  }
}
@media (min-width: 993px) and (max-width: 1200px) {
  .topbar {
    background: #4682b4;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .topbar {
    background: #880000;
  }
}
@media (min-width: 1400px) {
  .topbar {
    background: #000;
  }
}

.bc-btn {
  background: #000;
  color: #fff;
  border: 1px solid #000;
  padding: 10px;
  border-radius: 3px;
  text-decoration: none;
}

.header-pc {
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.header-pc .brand {
  display: flex;
  justify-content: flex-start; /* 左寄せ */
  align-items: center; /* 縦方向の中央揃え（必要に応じて） */
  flex-wrap: wrap; /* 必要に応じてアイテムを折り返す */
  width: 100%; /* コンテナの幅を100%にする */
}
.header-pc .brand .logo {
  width: 40px;
  height: 40px;
}
.header-pc .brand .site-name a:link, .header-pc .brand .site-name a:visited {
  font-size: 23px;
  margin-left: 10px;
  color: #333;
  text-decoration: none;
}
.header-pc .brand .menu {
  font-size: 16px;
}
@media (max-width: 768px) {
  .header-pc .brand .menu {
    display: none;
  }
}
@media (min-width: 769px) {
  .header-pc .brand .menu {
    display: block;
  }
}
.header-pc .brand .menu ul {
  margin: 0;
}
.header-pc .brand .menu ul li {
  display: inline-block;
  margin-right: 10px;
}
.header-pc .brand .menu ul li a {
  color: #000;
  text-decoration: none;
}
.header-pc .tools {
  display: flex;
  justify-content: flex-end; /* 左寄せ */
  align-items: center; /* 縦方向の中央揃え（必要に応じて） */
  flex-wrap: wrap; /* 必要に応じてアイテムを折り返す */
  width: 100%;
}
.header-pc .tools .user-avator {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #888;
  margin-right: 10px;
  object-fit: cover;
}
.header-pc .tools .user-name {
  margin-left: 10px;
  margin-right: 10px;
}
@media (max-width: 768px) {
  .header-pc .tools .user-name {
    display: none;
  }
}
@media (min-width: 769px) {
  .header-pc .tools .user-name {
    display: block;
  }
}
.header-pc .tools .not-logined {
  margin-right: 10px;
}

.footer {
  margin-bottom: -20px;
  background: #333;
  width: 100%;
  color: #fff;
  font-size: 13px;
}
.footer .footer-index {
  padding-top: 20px;
  margin-bottom: 15px;
  color: #fff;
}
.footer .footer-index a {
  color: #fff;
  text-decoration: none;
}
.footer .footer-index a:hover, .footer .footer-index a:active {
  color: #aaa;
  text-decoration: none;
}
.footer .footer-index ul {
  list-style: none;
}
.footer .footer-index ul li {
  list-style-type: none;
  line-height: 27px;
}
.footer .copyright {
  text-align: center;
  padding: 15px;
}

input::-webkit-input-placeholder {
  color: #c1c1c1 !important;
}

input::-moz-placeholder {
  color: #c1c1c1 !important;
}

input:-ms-input-placeholder {
  color: #c1c1c1 !important;
}

input:-moz-placeholder {
  color: #c1c1c1 !important;
}

textarea::-webkit-input-placeholder {
  color: #c1c1c1 !important;
}

textarea::-moz-placeholder {
  color: #c1c1c1 !important;
}

textarea:-ms-input-placeholder {
  color: #c1c1c1 !important;
}

textarea:-moz-placeholder {
  color: #c1c1c1 !important;
}

.error-message {
  color: #880000;
  font-size: 13px;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mt60 {
  margin-top: 60px;
}

.mt70 {
  margin-top: 70px;
}

.mt80 {
  margin-top: 80px;
}

.mt90 {
  margin-top: 90px;
}

.mt100 {
  margin-top: 100px;
}

.mt110 {
  margin-top: 110px;
}

.mt120 {
  margin-top: 120px;
}

.mt130 {
  margin-top: 130px;
}

.mt140 {
  margin-top: 140px;
}

.mt150 {
  margin-top: 150px;
}

.mt160 {
  margin-top: 160px;
}

.mt170 {
  margin-top: 170px;
}

.mt180 {
  margin-top: 180px;
}

.mt190 {
  margin-top: 190px;
}

.mt200 {
  margin-top: 200px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb90 {
  margin-bottom: 90px;
}

.mb100 {
  margin-bottom: 100px;
}

.mb110 {
  margin-bottom: 110px;
}

.mb120 {
  margin-bottom: 120px;
}

.mb130 {
  margin-bottom: 130px;
}

.mb140 {
  margin-bottom: 140px;
}

.mb150 {
  margin-bottom: 150px;
}

.mb160 {
  margin-bottom: 160px;
}

.mb170 {
  margin-bottom: 170px;
}

.mb180 {
  margin-bottom: 180px;
}

.mb190 {
  margin-bottom: 190px;
}

.mb200 {
  margin-bottom: 200px;
}

.ml10 {
  margin-left: 10px;
}

.ml20 {
  margin-left: 20px;
}

.ml30 {
  margin-left: 30px;
}

.ml40 {
  margin-left: 40px;
}

.ml50 {
  margin-left: 50px;
}

.ml60 {
  margin-left: 60px;
}

.ml70 {
  margin-left: 70px;
}

.ml80 {
  margin-left: 80px;
}

.ml90 {
  margin-left: 90px;
}

.ml100 {
  margin-left: 100px;
}

.mr10 {
  margin-right: 10px;
}

.mr20 {
  margin-right: 20px;
}

.mr30 {
  margin-right: 30px;
}

.mr40 {
  margin-right: 40px;
}

.mr50 {
  margin-right: 50px;
}

.mr60 {
  margin-right: 60px;
}

.mr70 {
  margin-right: 70px;
}

.mr80 {
  margin-right: 80px;
}

.mr90 {
  margin-right: 90px;
}

.mr100 {
  margin-right: 100px;
}

.news .news-archives h2 {
  font-size: 30px;
  margin-bottom: 20px;
}
.news .news-archives .news-archive ul {
  margin-left: -23px;
}
.news .news-archives .news-archive ul li {
  list-style: none;
  margin-bottom: 20px;
}
.news .news-archives .news-archive ul li h3 {
  font-size: 20px;
}
.news .news-archives .news-archive ul li .description {
  gap: 16px;
  align-items: flex-start;
}
.news .news-archives .news-archive ul li .description img {
  float: left;
  width: 80px;
  height: 80px;
  object-fit: cover;
  aspect-ratio: 1/1;
  margin-right: 10px;
  border-radius: 3px;
}
.news .news-archives .news-archive ul li .description .summary {
  font-size: 14px;
}
.news .news-archives .news-archive ul li .created_at {
  text-align: right;
  font-size: 12px;
}

/*# sourceMappingURL=style.css.map */
