@charset "UTF-8";
/* layout */
.gcf-lyt-project__section {
  padding: 28px 16px 0;
}
.gcf-lyt-project__block {
  margin-top: 13px;
}
.gcf-lyt-project__search-btn {
  margin: 20px 0 24px;
  padding: 0;
  border: 0;
}
.gcf-lyt-project__search-btn .icn-search {
  margin-right: 0.5em;
  vertical-align: middle;
}
@media only screen and (max-width: 599px) and (max-device-width: 599px) {
  .gcf-lyt-project .nv-pager {
    margin-top: 32px;
    margin-bottom: 16px;
  }
}
@media only screen and (min-width: 600px), (min-device-width: 600px) {
  .gcf-lyt-project {
    margin-top: 32px;
  }
  .gcf-lyt-project__section {
    padding: 0;
  }
  .gcf-lyt-project__section .ttl-h1__wrap .ttl-h1 {
    line-height: 1.3;
  }
  .gcf-lyt-project__block {
    margin-top: 24px;
  }
  .gcf-lyt-project__block.js-modal-toggle-point {
    margin: 0;
  }
  .gcf-lyt-project__search-btn {
    display: none;
  }
}

/* 絞り込みパネル */
[id^=search-panel-check] {
  display: none;
}

#search-panel-check--layer2:checked ~ .search-panel,
#search-panel-check--layer3:checked ~ .search-panel {
  -webkit-transform: translateX(-100vw);
          transform: translateX(-100vw);
}
#search-panel-check--layer2:checked ~ .search-panel .search-panel__close,
#search-panel-check--layer3:checked ~ .search-panel .search-panel__close {
  -webkit-transform: translateX(100vw);
          transform: translateX(100vw);
}

#search-panel-check--layer3:checked ~ .search-panel .layer2 {
  order: 3;
}

[class^=mf-] {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}

.search-panel {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 300vw;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  overflow-x: hidden;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s, -webkit-transform 0.4s ease 0.4s;
  transition: opacity 0.4s, visibility 0.4s, transform 0.4s ease 0.4s;
  transition: opacity 0.4s, visibility 0.4s, transform 0.4s ease 0.4s, -webkit-transform 0.4s ease 0.4s;
}
.search-panel.is-open {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}
.search-panel [class*=icn-]::before {
  vertical-align: text-bottom;
}
.search-panel button {
  outline: none;
  cursor: pointer;
}
.search-panel__layer {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  align-items: stretch;
  width: 100vw;
  height: 100%;
}
.search-panel__header {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  background-color: #2e792d;
  color: #fff;
  font-size: 14px;
  font-weight: normal;
  box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.16);
}
.search-panel__header > [class*=icn-] {
  margin-right: 0.5em;
  line-height: 1;
}
.search-panel__content {
  flex-grow: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.search-panel__section {
  padding: 0 16px;
}
.search-panel__section-header {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  margin: 24px 0 16px;
  padding-left: 4px;
  border-left: 3px solid #2e792d;
  font-weight: bold;
  line-height: 1;
}
.search-panel__clear {
  display: none;
  padding: 0;
  border: 0;
  background: none;
  font-size: 14px;
  line-height: 1;
}
.search-panel__clear > [class*=icn-] {
  margin-right: 0.25em;
}
.search-panel__forward {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 36px;
  padding: 4px 10px 4px 16px;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  background: none;
  color: #767676;
  box-sizing: border-box;
}
.search-panel__back {
  display: flex;
  padding: 16px;
  border-bottom: 1px solid #e5e5e5;
  background-color: #f6f6f6;
  color: #1e50a2;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
}
.search-panel__back > .mf-arrow01-left {
  margin-right: 3px;
}
.search-panel__submit > [class*=icn-] {
  margin-right: 0.5em;
}
.search-panel__footer {
  padding: 12px 16px;
  background-color: #f6f6f6;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.16);
}
.search-panel__close {
  width: 46px;
  height: 46px;
  display: block;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: calc(100vw - 46px);
  z-index: 100000;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  color: transparent;
}
.search-panel__close::before, .search-panel__close::after {
  width: 16px;
  height: 1px;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-color: #fff;
}
.search-panel__close::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.search-panel__close::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media only screen and (min-width: 600px), (min-device-width: 600px) {
  .search-panel {
    display: none;
  }
}

.accordion {
  font-size: 14px;
  line-height: 1;
}
.accordion > li {
  border-bottom: 1px solid #e5e5e5;
}
.accordion > li > label {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  font-weight: bold;
}
.accordion input[id^=accordion__check] {
  display: none;
}
.accordion input[id^=accordion__check]:checked + label > .mf-arrow01-down {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.accordion input[id^=accordion__check]:checked ~ .accordion__content .accordion__content-item {
  height: 46px;
  border-bottom: 1px solid #e5e5e5;
  color: #1e50a2;
}
.accordion input[id^=accordion__check]:checked ~ .accordion__content > li:last-child .accordion__content-item {
  border-bottom: 0;
}
.accordion__content {
  overflow-y: hidden;
}
.accordion__content-item {
  display: flex;
  align-items: center;
  height: 0;
  padding: 0 16px 0 32px;
  background-color: #f6f6f6;
  color: transparent;
  box-sizing: border-box;
  cursor: pointer;
  transition: 0s, height 0.4s, color 0.2s ease 0s;
}
.accordion__content-item > img {
  width: 21px;
  margin-right: 1em;
}

@media only screen and (min-width: 600px), (min-device-width: 600px) {
  .gcf-lst-project__col .gcf-lst-project__complete {
    width: 70px;
    height: 70px;
  }
  .gcf-lst-project__col .gcf-lst-project__target-amount {
    font-size: 14px;
  }
  .gcf-lst-project__col .gcf-btn-positive.size-md {
    height: 36px;
    font-size: 14px;
    line-height: 36px;
  }
}