@charset "utf-8";

/**
  Archive
**/
/* .archive main ul.archives {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1em 2em;
}
.archive main ul.archives li {
  width: 240px;
}
.archive main ul.archives li img {
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  width: 80%;
} */

.archives li:not(:last-child) {
  margin-bottom: 20px;
}
.archives li a {
  display: flex;
  column-gap: 20px;
}
.archives li a figure {
  width: 150px;
}
.archives li a .txt_area {
  width: calc(100% - 170px);
}
.archives li a .txt_area h2 {
  font-size: unset;
}


.archive .main .pager {
  margin: 20px;
  text-align:center;
}
.archive .main .pager span,
.archive .main .pager a.page-numbers {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 .25em;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 2em;
  height: 2em;
}
.archive .main .pager a.page-numbers.prev,
.archive .main .pager a.page-numbers.next {
  border: 0;
}
.archive .main .pager span.current {
  background: rgba(0,0,0,.1);
}

.archive main #sidebar .widget:not(:last-child),
.single main #sidebar .widget:not(:last-child) {
  margin-bottom: 1em;
}

main .inner {
  display: flex;
  /* gap: 20px; */

  /* gap: 20px 60px; */
  gap: 20px 90px;
}
main .main {
  width: 70%;
}
main #sidebar {
  width: 30%;
}
@media screen and (max-width: 767px) {
  main section:not(.subpage_mv) .inner {
    flex-direction: column;
    align-items: center;
  }
  main .main {
    width: 100%;
  }
  main #sidebar {
    width: min(360px, 100%);
  }
}

/**
  Single
**/
.single main .page_mv .mv_area .inner p {
  color: #fff;
  font-weight: 700;
  text-align: center;
}
.single main .main .date {
  text-align: right;
}
.single main .main .single-title {
  font-size: 2.6rem;
    line-height: 1.6;
}
.single .post-area {
  margin: 20px 0;
}
.single .post-area p,
.single .post-area blockquote {
  margin-bottom: 1em;
}
.single .post-area figure {
  /* width: unset; */
  margin: 1em 0;
}
.single .post-area blockquote {
  padding: .5em;
  background: #efefef;
}

.single .main .pager {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.single .main .pager a {
  position: relative;
  padding: .5em;
}
.single .main .pager .next-left a {
  padding-left: 1em;
}
.single .main .pager .next-left a::before {
  content: "«";
  position: absolute;
  top: 50%;
  left: .2em;
  transform: translateY(-50%);
}
.single .main .pager .next-right a {
  padding-right: 1em;
}
.single .main .pager .next-right a::before {
  content: "»";
  position: absolute;
  top: 50%;
  right: .2em;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .single main .main .single-title {
    font-size: 2rem;
  }

.single .main .pager {
    flex-direction: column;
  }
  .single .main .pager .next-right {
    text-align: right;
  }
}


.archive main #sidebar .widget:not(:last-child),
.single main #sidebar .widget:not(:last-child) {
  margin-bottom: 40px;
}

#sidebar h3 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  /* margin: 0 auto; */
  border-radius: 20px;
  /* width: 80%; */
  font-weight: 500;
  color: #fff;
  background: var(--color-blue1);

  margin: 0 auto;
  border: 1px solid var(--color-blue1);
  width: 200px;
  font-size: 1.6rem;
  color: var(--color-blue1);
  background: #fff;
}
#sidebar ul {
  /* margin: -17.5px 0 50px; */
  margin-top: -17.5px;
  padding: 25px 10px 15px;
  border-radius: 10px;
  /* background: var(--bg-blue2); */

  background: #deebff;
}
#sidebar ul li {
  padding: 6px 3px;
  line-height: 1.2;
}

#sidebar #block-3 ul,
#sidebar #categories-2 ul {
  padding-bottom: unset;
}
#sidebar #block-3 ul li,
#sidebar #categories-2 ul li {
  padding: 20px 3px;
}
#sidebar #block-3 ul li:first-of-type,
#sidebar #categories-2 ul li:first-of-type {
  padding-top: 10px;
}
#sidebar #block-3 ul li:not(:last-of-type),
#sidebar #categories-2 ul li:not(:last-of-type) {
  border-bottom: 1px solid #222;
}

#sidebar #archives-dropdown-2 {
  position: relative;
  appearance: none;
  /* min-width: 200px; */
  height: 2.8em;
  padding: .4em 3.6em .4em .8em;
  border: none;
  border-radius: 3px;
  background: url(../images/common/bg_select.png) no-repeat center / contain;
  color: #333;
  font-size: 1em;
  cursor: pointer;
  display: block;
  /* margin: 20px auto 0; */
  margin: 12px auto 0;

  padding-left: 13px;
  width: 100%;
  background-size: cover;

}


@media screen and (max-width: 539px) {
  #sidebar #archives-dropdown-2 {
    font-size: 1.4rem;
  }
}
