/**
 * Default Setting
 */
/**
 * SuperGradient
 * SASS MULTI-COLOR GRADIENT MIXIN (LINEAR & RADIAL)
 * Options
 * $type: linear*, radial
 * $from: top*, left, top left, top right, bottom right, bottom left, center (radial)
 * $colors: hex, rgba
 * *default
 *
 * Include: bower install super-gradient
 *
 * Demo: http://super-gradient.ib.gs/
 */
.header-soudan {
  background-color: #D3EFF8;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 100%;
}
@media (min-width: 768px) {
  .header-soudan {
    background-image: url(/column/wp-content/themes/theme-mushinkoku/assets/img/header/bg_img@2x.jpg);
  }
}
.header-soudan__inner {
  padding: 0;
}
@media (min-width: 768px) {
  .header-soudan__inner {
    display: flex;
    align-items: flex-end;
    padding: 30px 40px;
  }
}
@media (max-width: 767px) {
  .header-soudan .image {
    padding: 13px 10px 28px;
    background-color: #D3EFF8;
    background-repeat: no-repeat;
    background-position: right center;
    background-size: auto 100%;
    background-image: url(/column/wp-content/themes/theme-mushinkoku/assets/img/header/bg_img-sp@2x.jpg);
  }
  .header-soudan .image img {
    max-width: 429px;
    width: 64.5%;
  }
}
@media (min-width: 768px) {
  .header-soudan .image {
    max-width: 791px;
    width: 65%;
  }
}
.header-soudan .link {
  flex: 1 1 0%;
}
@media (min-width: 768px) {
  .header-soudan .link {
    margin-left: 20px;
  }
}
.header-soudan .link a {
  position: relative;
  display: block;
  padding: 16px;
  line-height: 1;
  font-weight: bold;
  font-size: 1.8rem;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #0080CC;
  transition: 235ms ease;
}
@media (min-width: 768px) {
  .header-soudan .link a {
    display: inline-block;
    padding: 28px 20px;
  }
}
.header-soudan .link a:hover {
  opacity: 0.8;
}
.header-soudan .link .icon-arrow-right {
  display: inline-block;
  margin-left: 14px;
}
@media (max-width: 767px) {
  .header-soudan .link .icon-arrow-right {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
  }
}
.header-soudan .link .icon-arrow-right svg {
  display: block;
  width: 6px;
  height: 11px;
}

.pager {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
@media (max-width: 575px) {
  .pager {
    flex-wrap: wrap;
    margin-top: 60px;
  }
}
.pager ul {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 575px) {
  .pager ul {
    order: 1;
    width: 100%;
    margin-top: 15px;
  }
}
.pager li {
  margin: 5px;
  font-family: var(--font-en);
}
.pager li:before {
  display: none;
}
.pager li a, .pager li.current span {
  padding-bottom: 5px;
}
.pager li a {
  position: relative;
  overflow: hidden;
  color: #1c1c1c;
  transition: 235ms linear;
}
.pager li a:hover {
  border-bottom: 1px solid currentColor;
}
.pager li.current span {
  color: #bcbcbc;
  border-bottom: 1px solid #bcbcbc;
}
.pager li.dot {
  line-height: 0;
  color: #0080CC;
}
.pager a,
.pager span {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-weight: bold;
  font-size: 1.2rem;
  text-decoration: none;
}
.pager a svg,
.pager span svg {
  width: 1em;
  height: 1em;
  line-height: 0;
}
.pager .prev,
.pager .next {
  width: 40px;
  height: 44px;
  color: #0080CC;
  border: 1px solid #0080CC;
}
.pager .prev svg,
.pager .next svg {
  animation: angleOut 500ms ease 0s 1 forwards;
}
.pager .prev {
  margin-right: 40px;
}
.pager .prev svg {
  margin: 0;
}
.pager .prev:hover svg {
  animation: angleLeft 500ms ease 0s infinite alternate;
}
.pager .next {
  margin-left: 40px;
}
.pager .next svg {
  margin: 0;
}
.pager .next:hover svg {
  animation: angleLeft 500ms ease 0s infinite alternate;
}

@keyframes angleOut {
  from {
    transform: translateX(0);
  }
}
@keyframes angleLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(5px);
  }
}
.layout-wrapper {
  background-color: #fff;
}

.post-archive {
  margin: 60px 0 120px;
}
@media (min-width: 992px) {
  .post-archive {
    margin: 120px 0 240px;
  }
}

.post-detail {
  margin: 40px 0 120px;
}
@media (min-width: 992px) {
  .post-detail {
    margin: 80px 0 240px;
  }
}

.post-layout {
  position: relative;
  z-index: 1;
  padding: 0 24px;
}
@media (min-width: 992px) {
  .post-layout {
    padding: 0 40px;
  }
}
.post-layout__container {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
.post-layout__row {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 992px) {
  .post-layout__row {
    flex-direction: row-reverse;
    gap: 94px;
  }
}
.post-layout__content {
  flex: 1 1 0%;
}
.post-layout__content .pager {
  margin-top: 60px;
}
@media (min-width: 992px) {
  .post-layout__content .pager {
    margin-top: 120px;
  }
}
@media (min-width: 992px) {
  .post-layout__sidebar {
    width: 250px;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .sidebar__inner {
    columns: 2;
    column-gap: 30px;
  }
}

.column-archive {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 46px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 768px) {
  .column-archive {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 76px 46px;
  }
}
.column-archive a {
  color: currentColor;
  text-decoration: none;
  text-underline-offset: 4px;
}
.column-archive a:hover .title {
  text-decoration: underline;
}
.column-archive .thumbnail {
  position: relative;
  margin: 0 0 24px;
  padding-bottom: 70.3947%;
  overflow: hidden;
}
.column-archive .thumbnail img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.column-archive .thumbnail-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/common/logo.png);
  background-size: 70% auto;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #fff;
  box-shadow: inset 0 0 0 1px #E0E0E0;
}
.column-archive .thumbnail-image .not-thumbanil {
  background-color: #f8f8f8;
}
.column-archive .content time {
  display: flex;
  flex-direction: column;
  margin: 0 0 16px;
  font-family: var(--font-en);
}
.column-archive .content time .year {
  font-size: 12px;
}
.column-archive .content time .month {
  font-size: 24px;
}
.column-archive .content .title {
  margin: 0;
  font-size: 16px;
  letter-spacing: 0.1em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 4.8em;
  line-height: 1.6;
}
.column-archive .content .category {
  margin: 26px 0 0;
  font-size: 10px;
}

.news-archive {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
}
.news-archive li {
  position: relative;
  margin: 40px 0 0;
  padding: 0 0 40px;
  border-bottom: 1px solid #E0E0E0;
}
.news-archive li:first-child {
  margin-top: 0;
}
.news-archive li:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 140px;
  height: 1px;
  background-color: #0080CC;
}
.news-archive a {
  display: flex;
  gap: 16px;
  color: currentColor;
  text-decoration: none;
  transition: 235ms ease;
}
@media (min-width: 768px) {
  .news-archive a {
    gap: 30px;
  }
}
.news-archive a:hover .title {
  text-decoration: underline;
}
.news-archive .l-data {
  display: flex;
  flex-direction: column;
  gap: 11px;
  width: 80px;
}
.news-archive .l-data .new {
  width: 50px;
  padding: 5px 4px;
  font-family: var(--font-en);
  font-size: 12px;
  color: #fff;
  text-align: center;
  background-color: #E34C63;
}
.news-archive .l-data time {
  display: flex;
  flex-direction: column;
  font-family: var(--font-en);
}
.news-archive .l-data time .year {
  font-size: 12px;
}
.news-archive .l-data time .month-day {
  font-size: 24px;
  white-space: nowrap;
}
.news-archive .content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.news-archive .content .category {
  margin: 0;
  font-size: 10px;
}
.news-archive .content .title {
  margin: 0;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-underline-offset: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}
.news-archive .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: auto 0;
  color: #fff;
  background: linear-gradient(90deg, #0080cc 0%, #00b8f0 100%);
}
.news-archive .arrow svg {
  width: 16px;
  height: 11px;
}

.post-categories {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -2px;
  padding: 0;
  list-style: none;
}
.post-categories li {
  padding: 2px;
}

.entry-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 56px;
}
@media (min-width: 992px) {
  .entry-header {
    gap: 50px;
    flex-direction: row;
    align-items: center;
  }
}
.entry-header time {
  display: flex;
  flex-direction: column;
  font-family: var(--font-en);
  margin-left: 0;
}
.entry-header time .year {
  font-size: 12px;
}
.entry-header time .month {
  font-size: 24px;
}
.entry-header .wrap {
  flex: 1;
}
.entry-header .entry-category {
  margin-bottom: 16px;
  font-size: 12px;
  color: #bcbcbc;
}
@media (max-width: 991px) {
  .entry-header .entry-category {
    margin-top: -72px;
    margin-left: 100px;
    margin-bottom: 50px;
  }
}
.entry-header .entry-category a {
  color: #1c1c1c;
  text-decoration: none;
}
.entry-header .entry-title {
  margin: 0;
  line-height: 1.6;
  font-size: 22px;
}

.entry-footer {
  margin: 40px 0 0;
}
@media (min-width: 992px) {
  .entry-footer {
    margin: 80px 0 0;
  }
}
.entry-footer .entry-category {
  margin-top: 40px;
  margin-bottom: 40px;
}
.entry-footer .entry-category .post-categories {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
.entry-footer .entry-category .post-categories a {
  display: block;
  padding: 5px 8px;
  line-height: 1.2;
  font-size: 1.2rem;
  color: #fff;
  text-decoration: none;
  background-color: #BACCC7;
}
.entry-footer .share-buttons {
  margin-top: 40px;
  margin-bottom: 40px;
}
.entry-footer .entry-footer__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.entry-footer .entry-footer__nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: currentColor;
  text-decoration: none;
  transition: 235ms ease;
}
.entry-footer .entry-footer__nav a:hover {
  opacity: 0.8;
}
.entry-footer .entry-footer__nav .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 44px;
  color: #0080CC;
  background-color: #fff;
  border: 1px solid #0080CC;
  transition: 235ms ease;
}
.entry-footer .entry-footer__nav .icon svg {
  width: 15px;
  height: 10px;
}
.entry-footer .entry-footer__nav .btn-more {
  justify-content: center;
  margin: 0 auto;
  padding: 18px 20px;
  color: #1C1C1C;
  text-align: center;
  background-color: #F7F8FC;
}
@media (max-width: 991px) {
  .entry-footer .entry-footer__nav .btn-more {
    flex: 1;
  }
}
@media (min-width: 576px) {
  .entry-footer .entry-footer__nav .btn-more {
    padding: 25px 30px;
  }
}
.entry-footer .entry-footer__nav .btn-prev,
.entry-footer .entry-footer__nav .btn-next {
  font-weight: 500;
  font-size: 15px;
}
@media (max-width: 991px) {
  .entry-footer .entry-footer__nav .btn-prev .txt,
.entry-footer .entry-footer__nav .btn-next .txt {
    display: none;
  }
}
.entry-footer .entry-footer__nav .btn-prev:hover .icon,
.entry-footer .entry-footer__nav .btn-next:hover .icon {
  color: #fff;
  background-color: #0080CC;
}
.entry-footer .entry-footer__nav .btn-prev .icon svg {
  transform: rotateY(180deg);
}
@media (max-width: 991px) {
  .entry-footer .entry-footer__nav .btn-next {
    order: 3;
  }
}

.entry-header > *,
.entry-footer > *,
.entry-content > *,
.entry-related > * {
  margin-left: auto;
  margin-right: auto;
}

.entry-content {
  line-height: 1.5;
}
.entry-content p {
  line-height: 2;
}
.entry-content > * {
  word-wrap: break-word;
  word-break: break-all;
}
.entry-content > *:not(.alignleft):not(.alignright) {
  margin-top: 30px;
  margin-bottom: 30px;
}
.entry-content > *:first-child {
  margin-top: 0;
}
.entry-content > *:last-child {
  margin-bottom: 0;
}

.entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide):not(.wp-block-separator),
.entry-header > *,
.entry-footer > *,
.entry-related > * {
  max-width: 48rem;
}
@media (min-width: 576px) {
  .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide):not(.wp-block-separator),
.entry-header > *,
.entry-footer > *,
.entry-related > * {
    max-width: 48rem;
  }
}
@media (min-width: 768px) {
  .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide):not(.wp-block-separator),
.entry-header > *,
.entry-footer > *,
.entry-related > * {
    max-width: 52rem;
  }
}
@media (min-width: 992px) {
  .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide):not(.wp-block-separator),
.entry-header > *,
.entry-footer > *,
.entry-related > * {
    max-width: 75rem;
  }
}

#toc_container {
  width: 100% !important;
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 20px;
  background-color: #F5F5F5;
  border-radius: 8px;
}
@media (min-width: 768px) {
  #toc_container {
    padding: 40px;
  }
}
#toc_container.no_bullets .toc_list {
  list-style: none;
}
#toc_container.no_bullets .toc_list li:before {
  display: none;
}
#toc_container .toc_title {
  margin-top: 0;
  padding-bottom: 10px;
  font-weight: bold;
  color: #1c1c1c;
  border-bottom: 1px solid #ddd;
}
#toc_container .toc_title .toc_toggle {
  font-weight: normal;
  font-size: 90%;
}
#toc_container .toc_list {
  margin: 0;
  padding: 0;
  font-size: 1.5rem;
}
#toc_container .toc_list .toc_number {
  color: #1c1c1c;
}
#toc_container .toc_list ul {
  margin-top: 8px;
  padding: 0;
  padding-left: 0.9em;
}
#toc_container .toc_list li {
  margin-bottom: 8px;
}
#toc_container .toc_list a {
  text-decoration: none;
}
#toc_container .toc_list a:hover {
  text-decoration: underline;
}

#ts-fab-below {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  #ts-fab-below {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
#ts-fab-below #_by {
  font-size: 1.7rem;
}
#ts-fab-below #_by .latest-see-all {
  font-size: 86%;
}
#ts-fab-below .ts-fab-list li.active a {
  border: 0;
  border-top: 2px solid #0080CC;
}
#ts-fab-below .ts-fab-tab {
  border: 0;
}
#ts-fab-below .ts-fab-latest {
  padding-left: 1em !important;
}
#ts-fab-below .ts-fab-content {
  font-size: 1.4rem;
}

.vk-pad {
  max-width: 750px;
  margin: 80px auto 60px;
}
@media (min-width: 768px) {
  .vk-pad {
    margin-top: 150px;
    margin-bottom: 100px;
  }
}
.vk-pad #padSection {
  position: relative;
  padding: 20px;
  overflow: visible;
  background-color: #EDF4F2;
  border: 0;
  box-shadow: none;
}
.vk-pad #padSection > h4 {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 8px 12px;
  font-size: 1.4rem;
  color: #0080CC;
  background-color: #EDF4F2;
  border: 0;
  border-top: 2px solid #0080CC;
  transform: translateY(-100%);
}
.vk-pad #padSection .sns_icons {
  display: flex;
  flex-wrap: wrap;
  margin: 10px -5px;
}
.vk-pad #padSection .sns_icons li {
  margin: 0;
  padding: 5px;
  line-height: 1;
  font-size: 2rem;
}
.vk-pad #padSection dl dt .authorName {
  font-weight: bold;
  font-size: 1.7rem;
  color: #0080CC;
}
.vk-pad #padSection .avatar img {
  display: block;
  border: 0;
  border-radius: 9999px;
}
.vk-pad .postImage a:not([class*=padCate]) {
  height: 100%;
  background-color: #fff;
  background-image: url();
}
.vk-pad .postImage a:not([class*=padCate]) img {
  position: relative;
  z-index: 1;
}
.vk-pad .postImage a:not([class*=padCate]) img[src*="thumbnailDummy.jpg"] {
  display: none;
}
.vk-pad .postImage a:not([class*=padCate]):before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  display: block;
  max-width: 240px;
  width: 60%;
  height: 0;
  padding-bottom: 20%;
  opacity: 0.5;
  background: transparent url(/assets/img/common/logo.svg) no-repeat center center;
  background-size: contain;
  transform: translate(-50%, -50%);
}
.vk-pad #latestEntries:after {
  content: "";
  display: table;
  height: 0;
  clear: both;
}
.vk-pad #latestEntries > h5 {
  font-size: 1.5rem;
  color: #0080CC;
}
.vk-pad #latestEntries li a.padCate {
  padding: 3px 5px;
  color: #fff;
  background-color: #BACCC7 !important;
}
.vk-pad #latestEntries .entryList {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 601px) {
  .vk-pad #latestEntries .entryList {
    margin: 0 -10px;
  }
}
.vk-pad #latestEntries li.thumbnailBox {
  float: none;
  width: calc(25% - 20px);
  margin: 10px;
}
.vk-pad #latestEntries li.thumbnailBox a.padTitle {
  font-weight: bold;
  color: #0080CC;
}
.vk-pad #latestEntries li.thumbnailBox a {
  transition: 235ms ease;
}
.vk-pad #latestEntries li.thumbnailBox a:hover {
  opacity: 0.8;
}

.sidebar__inner {
  display: flex;
  flex-direction: column;
}

.widget {
  padding: 20px 0;
  font-size: 1.4rem;
  break-inside: avoid-column;
  border-bottom: 1px solid #00B8F0;
}
@media (min-width: 768px) {
  .widget {
    padding: 40px 0;
  }
}
.widget:first-child {
  margin-top: 0;
  border-top: 1px solid #00B8F0;
}
.widget:last-child {
  margin-bottom: 0;
}
.widget-title {
  margin: 0 0 20px;
  font-size: 1.8rem;
}
.widget a {
  color: currentColor;
  text-decoration: none;
}
.widget ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.widget_recentpost_link {
  display: flex;
  text-decoration: none;
}
.widget_recentpost_link.hover .title {
  text-decoration: none;
}
.widget_recentpost_thumbnail {
  width: 64px;
  margin-right: 16px;
}
.widget_recentpost_thumbnail .thumbnail {
  padding-bottom: 100%;
  background: #e8e8e8 no-repeat center center;
  background-size: cover;
}
.widget_recentpost_content {
  min-width: 0;
  flex: 1;
}
.widget_recentpost_content .title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  max-height: 2.8em;
  line-height: 1.4;
  font-size: 1.4rem;
  overflow: hidden;
  text-decoration: underline;
}
.widget_recentpost_content .datetime {
  margin-top: 5px;
  font-size: 1.2rem;
}

.widget_categories ul,
.widget_archive ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.widget_categories ul li li:before,
.widget_archive ul li li:before {
  content: "-";
  margin-right: 8px;
}
.widget_categories a,
.widget_archive a {
  font-size: 15px;
}
.widget_categories .children,
.widget_archive .children {
  margin-top: 12px;
}
.widget_categories .children a,
.widget_archive .children a {
  font-size: 12px;
}
.widget_categories .children li li,
.widget_archive .children li li {
  padding-left: 0.8em;
}

.widget_archive li:before {
  content: "-";
  margin-right: 8px;
}

.gallery-hover {
  pointer-events: none;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
  display: block;
  opacity: 0;
  box-shadow: 0 0 1px 1px #0080CC, inset 0 0 5px 2px #0080CC;
  border-radius: 1px;
  transition: 300ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.widget_media_gallery {
  position: relative;
  overflow: visible;
}
.widget_media_gallery .gallery {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin: -1px;
}
.widget_media_gallery .gallery-item {
  margin: 0;
  padding: 1px;
  flex-grow: 1;
}
.widget_media_gallery .gallery-item a {
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 92%;
}
.widget_media_gallery .gallery-item a:hover {
  opacity: 0.8;
}
.widget_media_gallery .gallery-item img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.widget_media_gallery .gallery-caption {
  display: none;
}
.widget_media_gallery .gallery-columns-1 .gallery-item {
  width: 100%;
}
.widget_media_gallery .gallery-columns-2 .gallery-item {
  width: 50%;
}
.widget_media_gallery .gallery-columns-3 .gallery-item {
  width: 33.3333333333%;
}
.widget_media_gallery .gallery-columns-4 .gallery-item {
  width: 25%;
}
.widget_media_gallery .gallery-columns-5 .gallery-item {
  width: 20%;
}
.widget_media_gallery .gallery-columns-6 .gallery-item {
  width: 16.6666666667%;
}
.widget_media_gallery .gallery-columns-7 .gallery-item {
  width: 14.2857142857%;
}

.widget_media_audio,
.widget_media_video {
  padding: 0;
  border-radius: 0;
  overflow: visible;
}

.widget_meta {
  padding: 0;
}
.widget_meta .widget-title {
  margin: 0;
}
.widget_meta > ul li {
  border-top: 1px solid #fff;
}
.widget_meta > ul li:not(:first-child) {
  margin-top: 0;
}
.widget_meta a {
  display: block;
  padding: 10px 16px;
  color: #fff;
  text-decoration: none;
  background-color: rgba(51, 104, 226, 0.5);
  transition: 235ms ease 100ms;
}
.widget_meta a.hover {
  background-color: #3368e2;
}

.widget_search:not(.widget_block) {
  padding: 0;
  border-radius: 0;
  overflow: visible;
}
.widget_search:not(.widget_block) .search-form {
  position: relative;
  border: 1px solid #3368e2;
}
.widget_search:not(.widget_block) .screen-reader-text {
  display: none;
}
.widget_search:not(.widget_block) input[type=search] {
  -moz-appearance: none;
  appearance: none;
  display: block;
  width: 100% !important;
  height: 40px !important;
  padding: 2px 8px;
  padding-right: 54px;
  font-size: 1.6rem;
  color: #444;
  background-color: rgba(51, 104, 226, 0.05);
  border: 0 !important;
  border-radius: 0;
  outline: 0;
  transition: 235ms ease;
}
.widget_search:not(.widget_block) input[type=search]::placeholder {
  font-size: 1.2rem;
  color: #aaa;
}
.widget_search:not(.widget_block) input[type=search]:focus {
  background-color: #fff;
}
.widget_search:not(.widget_block) input[type=submit] {
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 48px;
  height: 100%;
  font-size: 1.4rem;
  color: #fff;
  text-indent: -9999px;
  background-color: #3368e2;
  background-position: center center;
  background-image: url(../img/common/icon-search.svg);
  background-repeat: no-repeat;
  background-size: 14px 14px;
  border: 0 !important;
  border-radius: 0;
  outline: 0;
  transition: 235ms ease;
}
.widget_search:not(.widget_block) input[type=submit]:hover {
  opacity: 0.7;
}
/*# sourceMappingURL=maps/posts.css.map */