@charset "UTF-8";

/* ==========================================================================
   共通（ベース：主にSP向け）
   ========================================================================== */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  line-height: 1.7;
  font-family:
    Verdana, Arial, Helvetica, sans-serif, "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}
.breadcrumbs a {
  color: #005533;
  text-decoration: none;
  overflow: hidden;
}
.g-cts-wrapper .c-breadcrumb {
  padding: 20px 0;
  font-size: 10px;
}
@media screen and (max-width: 768px) {
  .g-cts-wrapper .c-breadcrumb {
    padding: 4.267vw 0;
    font-size: 2.667vw;
  }
}
.g-cts-wrapper .c-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.g-cts-wrapper .c-breadcrumb__item {
  display: flex;
  align-items: center;
  margin-right: 12px;
}
@media screen and (max-width: 768px) {
  .g-cts-wrapper .c-breadcrumb__item {
    margin-right: 2.133vw;
  }
}
.g-cts-wrapper .c-breadcrumb__item:after {
  content: "＞";
  margin-left: 12px;
}
@media screen and (max-width: 768px) {
  .g-cts-wrapper .c-breadcrumb__item:after {
    margin-left: 2.133vw;
  }
}
.g-cts-wrapper .c-breadcrumb__item:last-child:after {
  content: none;
}
.main-content {
  padding: 0 10px;
  margin: 30px auto 0; /* 上30px、左右中央 */
}

.main-content img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
.l-article-container {
  margin: 0 0 60px;
}
.l-container {
  font-size: 12px; /* SPサイズ */
  letter-spacing: 1px;
}

/* -- メインページ -- */
.archive-tit {
  font-size: 23px;
  margin-bottom: 30px;
}

.archive-lists {
  display: flex;
  flex-wrap: wrap;
}

.archive-lists li {
  width: 100%; /* SPは1列 */
  margin-bottom: 40px;
}

.archive-lists li a span {
  display: block;
}

.archive-lists__image {
  margin-bottom: 10px;
}

.archive-lists__tit {
  margin-bottom: 5px;
}
.c-btn-wrap {
  text-align: right;
}
/* -- ページャー -- */
.pager {
  text-align: right;
}

.pager a,
.pager span {
  color: #666;
  margin: 0 0 0 2px;
}

.pager a {
  text-decoration: underline;
}

.pager span {
  color: #000;
}

/* -- エントリー -- */
#entries strong {
  font-weight: bold;
}

#entries dt {
  padding-bottom: 2px;
  background: url(/res/p/img/blog/common/lineDotGreen.gif) 0 bottom repeat-x;
}

#entries dt .inner {
  padding: 5px 10px 10px 18px;
  border-left: 5px solid #668566;
}

#entries h2 {
  text-align: center;
  font-size: 16px;
  margin-bottom: 1em;
}

#entries h3 {
  text-align: center;
  font-size: 14px;
  margin-bottom: 1em;
}

#entries dt .title {
  color: #003300;
  font-weight: bold;
  text-align: left;
  line-height: 1.4;
  font-size: 18px;
  margin-bottom: 0;
}

#entries dt .cap {
  color: #666;
  padding-top: 8px;
}

#entries dl,
#entries dd {
  padding-left: 0;
  padding-right: 0;
}

#entries dd {
  padding: 30px 0 50px;
  color: #333;
  line-height: 1.8;
}

#entries dd p {
  margin-bottom: 1.5em;
  font-size: 12px;
}

#entries dd img {
  border: 1px solid #c0c0c0;
  padding: 4px;
  margin-top: 0.3em;
  margin-bottom: 1.8em;
}

/* -- ローディング（共通） -- */
.p-loading-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  width: 100%;
  background-color: #fff;
}

.p-loading-content {
  text-align: center;
}

.p-loading-spinner {
  width: 40px;
  height: 40px;
  margin: 0 auto 15px;
  border: 1px solid #eeeeee;
  border-top: 1px solid #333;
  border-radius: 50%;
  animation: spinner-rotate 0.8s linear infinite;
}

.p-loading-text {
  font-family: "Optima", "Times New Roman", serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: #999;
  text-indent: 0.3em;
}

@keyframes spinner-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ==========================================================================
   PC向け設定（画面幅768px以上など、適宜調整してください）
   ========================================================================== */
@media screen and (min-width: 768px) {
  .main-content {
    width: 990px;
    padding: 0;
    margin-top: 0;
  }

  .main-content-left {
    width: 745px;
    margin: 0 auto;
  }

  .l-container {
    font-size: 14px;
  }

  /* -- メインページ（PC） -- */
  .archive-tit {
    margin-bottom: 40px;
  }

  .archive-lists li {
    width: 310px;
    margin: 0 30px 50px 0;
  }

  .archive-lists li:nth-child(3n) {
    margin-right: 0;
  }

  .archive-lists li a:hover img {
    opacity: 0.6;
  }

  .pager a:hover {
    opacity: 0.6;
  }

  /* -- エントリー（PC） -- */
  #entries h2 {
    font-size: 20px;
  }

  #entries h3 {
    font-size: 16px;
  }

  #entries dt .title {
    font-size: 24px;
  }

  #entries dd {
    padding: 30px 22px 50px;
  }

  #entries dd p {
    font-size: 16px;
  }
}
