@charset "UTF-8";
/* ---------------------------------------
	Mixin
-----------------------------------------*/
/*
/* プロジェクト紹介
-----------------------------------------*/
.project_archive_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (width > 768px) {
  .project_archive_header {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (width <= 768px) {
  .project_archive_header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 1rem;
  }
}
@media screen and (width > 768px) {
  .project_archive_header__logo {
    width: 24.375rem;
  }
}
@media screen and (width <= 768px) {
  .project_archive_header__logo {
    width: 70%;
    margin-inline: auto;
  }
}
.project_archive_header__head {
  width: 100%;
}
@media screen and (width > 768px) {
  .project_archive_header__head {
    max-width: 46.875rem;
  }
}
@media screen and (width <= 768px) {
  .project_archive_header__head {
    width: 100%;
  }
}
.project_archive_header__heading {
  color: var(--cl-accent);
  font-family: var(--font-zenmaru);
}
@media screen and (width > 768px) {
  .project_archive_header__heading {
    font-size: 3rem;
    margin-bottom: 2.5rem;
  }
}
@media screen and (width <= 768px) {
  .project_archive_header__heading {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
  }
}
.project_archive_header__desc {
  color: var(--cl-accent);
  font-weight: 400;
  margin-bottom: 0;
}
@media screen and (width > 768px) {
  .project_archive_header__desc {
    font-size: 1.125rem;
  }
}
@media screen and (width <= 768px) {
  .project_archive_header__desc {
    font-size: 0.875rem;
  }
}

/*
/* 支援プロジェクト詳細
-----------------------------------------*/
.post_project_categories {
  background-color: var(--cl-bg01);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.post_project_categories ul {
  margin-bottom: 0;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.post_project_categories ul li {
  color: var(--cl-white);
  text-align: center;
}
@media screen and (width > 768px) {
  .post_project_categories ul li {
    font-size: 1.5rem;
    padding: 0.25rem 0.5rem;
  }
}
@media screen and (width <= 768px) {
  .post_project_categories ul li {
    font-size: 1.125rem;
    padding: 0.125rem 0.25rem;
  }
}
.post_project_categories ul li.is_shisetsu {
  background-color: #f5b2b2;
  border: 0.125rem solid #f5b2b2;
}
.post_project_categories ul li.is_jidoufukushi {
  background-color: #fdd22b;
  border: 0.125rem solid #fdd22b;
}
.post_project_categories ul li a {
  display: block;
}
.post_project_categories .-text {
  margin-bottom: 0;
  font-weight: 400;
  color: #125ab7;
  border: 0.125rem solid #125ab7;
  background-color: var(--cl-bg03);
}
@media screen and (width > 768px) {
  .post_project_categories .-text {
    font-size: 1.5rem;
    padding: 0.25rem 0.5rem;
  }
}
@media screen and (width <= 768px) {
  .post_project_categories .-text {
    font-size: 1.125rem;
    padding: 0.125rem 0.25rem;
  }
}

.post_project__wrapper {
  background-color: var(--cl-bg03);
}
@media screen and (width > 768px) {
  .post_project__wrapper {
    padding: 2.5rem 3.75rem 7.5rem;
  }
}
@media screen and (width <= 768px) {
  .post_project__wrapper {
    padding: 1.5rem 1rem 5rem;
  }
}

.post_project__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (width > 768px) {
  .post_project__heading {
    border-top: 0.375rem solid var(--cl-accent);
    border-bottom: 0.375rem solid var(--cl-accent);
    font-size: 2.25rem;
    padding: 2.5rem;
  }
}
@media screen and (width <= 768px) {
  .post_project__heading {
    border-top: 0.25rem solid var(--cl-accent);
    border-bottom: 0.25rem solid var(--cl-accent);
    font-size: 1.5rem;
    padding: 1.5rem 1rem;
  }
}
.post_project__heading .-slug {
  background-color: #ffee33;
  color: var(--cl-accent);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (width > 768px) {
  .post_project__heading .-slug {
    font-size: 1rem;
    padding: 0.25rem 0.5rem;
    margin-right: 1.5rem;
  }
}
@media screen and (width <= 768px) {
  .post_project__heading .-slug {
    font-size: 0.875rem;
    padding: 0.125rem 0.25rem;
    margin-right: 1rem;
  }
}

.post_project__img {
  width: 100%;
  max-width: 60rem;
  margin-inline: auto;
}
.post_project__img img {
  aspect-ratio: 3/2;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.post_project__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (width > 768px) {
  .post_project__meta {
    gap: 0.25rem 1rem;
    padding: 1rem 2.5rem;
    border-bottom: 0.125rem solid var(--cl-accent);
  }
}
@media screen and (width <= 768px) {
  .post_project__meta {
    gap: 0.25rem 0.5rem;
    padding: 0.5rem 1rem;
    border-bottom: 0.0625rem solid var(--cl-accent);
  }
}
.post_project__meta dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0;
}
@media screen and (width > 768px) {
  .post_project__meta dl {
    font-size: 1.125rem;
    gap: 0.5rem;
  }
}
@media screen and (width <= 768px) {
  .post_project__meta dl {
    font-size: 1rem;
    gap: 0.25rem;
  }
}
.post_project__meta dl dt {
  font-weight: 400;
  color: var(--cl-accent);
}
.post_project__meta dl dt::before {
  content: "●";
}
.post_project__meta dl dd {
  margin-bottom: 0;
}

.post_project__solution {
  border: 0.125rem solid var(--cl-accent);
}
.post_project__solution .-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: var(--cl-accent);
  color: var(--cl-white);
}
@media screen and (width > 768px) {
  .post_project__solution .-title {
    font-size: 1.875rem;
    padding: 1rem 1.5rem;
  }
}
@media screen and (width <= 768px) {
  .post_project__solution .-title {
    font-size: 1.25rem;
    padding: 0.5rem 1rem;
  }
}
.post_project__solution .-label {
  background-color: var(--cl-bg03);
  color: var(--cl-accent);
}
@media screen and (width > 768px) {
  .post_project__solution .-label {
    font-size: 1.125rem;
    padding: 0.25rem 1rem;
  }
}
@media screen and (width <= 768px) {
  .post_project__solution .-label {
    font-size: 1rem;
    padding: 0.125rem 0.5rem;
  }
}
.post_project__solution .-text {
  padding: 1rem;
}
@media screen and (width > 768px) {
  .post_project__solution .-text {
    font-size: 1.125rem;
  }
}
@media screen and (width <= 768px) {
  .post_project__solution .-text {
    font-size: 1rem;
  }
}

.cartjs_product_table .cartjs_product_num input[type=text] {
  background-color: var(--cl-bg01) !important;
}

/*
/* プロジェクトについて
-----------------------------------------*/
@media screen and (width > 768px) {
  .project_about:not(:last-of-type) {
    margin-bottom: 5rem;
  }
}
@media screen and (width <= 768px) {
  .project_about:not(:last-of-type) {
    margin-bottom: 2.5rem;
  }
}
.project_about__sub-title {
  color: var(--cl-accent);
  font-family: var(--font-zenmaru);
  text-align: center;
}
@media screen and (width > 768px) {
  .project_about__sub-title {
    font-size: 2.25rem;
    margin-bottom: 2.5rem;
  }
}
@media screen and (width <= 768px) {
  .project_about__sub-title {
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }
}
.project_about__marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(30%, #ffee33));
  background: linear-gradient(transparent 70%, #ffee33 30%);
}
.project_about__layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (width > 768px) {
  .project_about__layout {
    gap: 1.5rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (width <= 768px) {
  .project_about__layout {
    gap: 2.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.project_about__imgs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (width > 768px) {
  .project_about__imgs {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 28.125rem;
            flex: 0 1 28.125rem;
    gap: 5rem;
  }
}
@media screen and (width <= 768px) {
  .project_about__imgs {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    gap: 2.5rem;
  }
}
.project_about__img_block {
  position: relative;
}
@media screen and (width > 768px) {
  .project_about__img {
    width: 100%;
    max-width: 28.125rem;
  }
}
@media screen and (width <= 768px) {
  .project_about__img {
    width: 100%;
  }
}
.project_about__img img {
  width: 100%;
  height: auto;
}
.project_about__label {
  width: 85%;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (width > 768px) {
  .project_about__label {
    bottom: -3rem;
  }
}
@media screen and (width <= 768px) {
  .project_about__label {
    bottom: -1.5rem;
  }
}
.project_about__label-head {
  color: var(--cl-bg03);
  margin-bottom: 0;
  font-weight: 400;
  text-align: center;
}
@media screen and (width > 768px) {
  .project_about__label-head {
    font-size: 1.5rem;
    height: 3.75rem;
  }
}
@media screen and (width <= 768px) {
  .project_about__label-head {
    font-size: 1.125rem;
    height: 2.5rem;
  }
}
@media screen and (width > 768px) {
  .project_about__label-head .-lg {
    font-size: 2rem;
  }
}
@media screen and (width <= 768px) {
  .project_about__label-head .-lg {
    font-size: 1.5rem;
  }
}
.project_about__label-head.is_shisetsu {
  border-top: 0.1875rem solid #f5b2b2;
  border-left: 0.1875rem solid #f5b2b2;
  border-right: 0.1875rem solid #f5b2b2;
  background-color: #f5b2b2;
}
.project_about__label-head.is_jidoufukushi {
  border-top: 0.1875rem solid #fdd22b;
  border-left: 0.1875rem solid #fdd22b;
  border-right: 0.1875rem solid #fdd22b;
  background-color: #fdd22b;
}
.project_about__label-foot {
  background-color: var(--cl-bg03);
  color: var(--cl-white);
  font-weight: 400;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (width > 768px) {
  .project_about__label-foot {
    font-size: 1.5rem;
    padding: 0 0.5rem;
  }
}
@media screen and (width <= 768px) {
  .project_about__label-foot {
    font-size: 1.125rem;
    padding: 0 0.25rem;
  }
}
.project_about__label-foot.is_shisetsu {
  border-bottom: 0.1875rem solid #f5b2b2;
  border-left: 0.1875rem solid #f5b2b2;
  border-right: 0.1875rem solid #f5b2b2;
  color: #f5b2b2;
}
.project_about__label-foot.is_jidoufukushi {
  border-bottom: 0.1875rem solid #fdd22b;
  border-left: 0.1875rem solid #fdd22b;
  border-right: 0.1875rem solid #fdd22b;
  color: #fdd22b;
}
@media screen and (width > 768px) {
  .project_about__body {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 46.875rem;
            flex: 0 1 46.875rem;
  }
}
@media screen and (width <= 768px) {
  .project_about__body {
    width: 100%;
  }
}
.project_about__text {
  color: var(--cl-accent);
  font-weight: 400;
}
@media screen and (width > 768px) {
  .project_about__text {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
  }
}
@media screen and (width <= 768px) {
  .project_about__text {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
  }
}
.project_about__btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (width > 768px) {
  .project_about__btn-wrap {
    gap: 1.5rem;
  }
}
@media screen and (width <= 768px) {
  .project_about__btn-wrap {
    gap: 1rem;
  }
}
@media screen and (width > 768px) {
  .project_about__btn {
    width: 100%;
    max-width: 31.25rem;
  }
}
@media screen and (width <= 768px) {
  .project_about__btn {
    width: 100%;
  }
}

/*
/* プロジェクトの支援方法
-----------------------------------------*/
.project_step {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (width > 768px) {
  .project_step {
    gap: 2.5rem;
  }
}
@media screen and (width <= 768px) {
  .project_step {
    gap: 1.5rem;
  }
}

.project_step_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (width > 768px) {
  .project_step_item {
    gap: 1rem 0;
  }
}
@media screen and (width <= 768px) {
  .project_step_item {
    gap: 0.5rem 0;
  }
}
.project_step_item__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (width > 768px) {
  .project_step_item__head {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 29.375rem;
            flex: 1 1 29.375rem;
    gap: 1rem;
  }
}
@media screen and (width <= 768px) {
  .project_step_item__head {
    gap: 0.5rem;
  }
}
.project_step_item__head .-step {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: color-mix(in srgb, var(--cl-accent) 20%, white);
  color: var(--cl-accent);
  border-radius: 50%;
  line-height: 1.2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-transform: uppercase;
}
@media screen and (width > 768px) {
  .project_step_item__head .-step {
    font-size: 1rem;
    width: 5rem;
    height: 5rem;
  }
}
@media screen and (width <= 768px) {
  .project_step_item__head .-step {
    font-size: 0.75rem;
    width: 3rem;
    height: 3rem;
  }
}
@media screen and (width > 768px) {
  .project_step_item__head .-number {
    font-size: 1.125rem;
  }
}
@media screen and (width <= 768px) {
  .project_step_item__head .-number {
    font-size: 1rem;
  }
}
.project_step_item__head .-heading {
  margin-bottom: 0;
  font-weight: 400;
  color: var(--cl-accent);
}
@media screen and (width > 768px) {
  .project_step_item__head .-heading {
    font-size: 2rem;
  }
}
@media screen and (width <= 768px) {
  .project_step_item__head .-heading {
    font-size: 1.125rem;
  }
}
.project_step_item__body {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (width > 768px) {
  .project_step_item__body {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 43.125rem;
            flex: 1 1 43.125rem;
  }
}
@media screen and (width <= 768px) {
  .project_step_item__body {
    width: 100%;
  }
}
.project_step_item__body .-text {
  margin-bottom: 0;
  color: var(--cl-accent);
  font-weight: 400;
}
@media screen and (width > 768px) {
  .project_step_item__body .-text {
    font-size: 1.125rem;
  }
}
@media screen and (width <= 768px) {
  .project_step_item__body .-text {
    font-size: 0.875rem;
  }
}

/*
/* 固定バー
-----------------------------------------*/
.project_fixed_bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--cl-accent);
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  z-index: 5;
  container-type: inline-size;
}
.project_fixed_bar.is_show {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.project_fixed_bar__wrapper {
  display: grid;
}
@container (width >= 840px) {
  .project_fixed_bar__wrapper {
    grid-template-areas: "heading button" "bottom button";
    grid-template-columns: 1fr auto;
  }
}
@container (width < 840px) {
  .project_fixed_bar__wrapper {
    grid-template-areas: "heading" "bottom" "button";
    grid-template-columns: 1fr;
  }
}
.project_fixed_bar__heading {
  grid-area: heading;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.project_fixed_bar__heading .-slug {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #ffee33;
  color: var(--cl-accent);
}
@container (width >= 840px) {
  .project_fixed_bar__heading .-slug {
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }
}
@container (width < 840px) {
  .project_fixed_bar__heading .-slug {
    font-size: 0.875rem;
    padding: 0.125rem 0.25rem;
  }
}
.project_fixed_bar__heading .-title {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 400;
  background-color: color-mix(in srgb, var(--cl-accent) 20%, white);
}
@container (width >= 840px) {
  .project_fixed_bar__heading .-title {
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }
}
@container (width < 840px) {
  .project_fixed_bar__heading .-title {
    font-size: 0.875rem;
    padding: 0.25rem 0.5rem;
  }
}
.project_fixed_bar__bottom {
  grid-area: bottom;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@container (width >= 840px) {
  .project_fixed_bar__bottom {
    padding: 0.5rem 1rem;
  }
}
@container (width < 840px) {
  .project_fixed_bar__bottom {
    padding: 0.25rem 0.5rem;
  }
}
.project_fixed_bar__countdown {
  border-right: 0.125rem solid var(--cl-bg03);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@container (width >= 840px) {
  .project_fixed_bar__countdown {
    gap: 1rem;
    padding-right: 1rem;
  }
}
@container (width < 840px) {
  .project_fixed_bar__countdown {
    gap: 0.5rem;
    padding-right: 0.5rem;
  }
}
@container (width < 520px) {
  .project_fixed_bar__countdown {
    width: 100%;
    border-right: none;
    border-bottom: 0.125rem solid var(--cl-bg03);
    padding-block: 0.5rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.project_fixed_bar__countdown .hurrytimer-campaign {
  padding: 0;
}
.project_fixed_bar__countdown .hurrytimer-headline {
  margin: 0;
  color: var(--cl-bg03) !important;
}
@container (width >= 840px) {
  .project_fixed_bar__countdown .hurrytimer-headline {
    font-size: 0.875rem !important;
  }
}
@container (width < 840px) {
  .project_fixed_bar__countdown .hurrytimer-headline {
    font-size: 0.75rem !important;
  }
}
.project_fixed_bar__countdown .hurrytimer-timer-digit {
  color: var(--cl-bg03) !important;
}
.project_fixed_bar__countdown .hurrytimer-timer-label {
  color: var(--cl-bg03) !important;
}
.project_fixed_bar__countdown .hurrytimer-timer-sep {
  color: var(--cl-bg03) !important;
}
.project_fixed_bar__countdown .hurrytimer-campaign-message {
  color: var(--cl-bg03) !important;
}
.project_fixed_bar__prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@container (width >= 840px) {
  .project_fixed_bar__prices {
    padding-left: 1rem;
  }
}
@container (width < 840px) {
  .project_fixed_bar__prices {
    padding-left: 0.5rem;
  }
}
@container (width < 520px) {
  .project_fixed_bar__prices {
    padding-left: 0;
    padding-top: 0.5rem;
  }
}
.project_fixed_bar__prices .-now_price {
  margin-bottom: 0;
  background-color: color-mix(in srgb, var(--cl-accent) 20%, white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  max-width: 15.625rem;
}
@container (width >= 840px) {
  .project_fixed_bar__prices .-now_price {
    padding: 0.5rem;
    gap: 0.5rem;
  }
}
@container (width < 840px) {
  .project_fixed_bar__prices .-now_price {
    padding: 0.25rem;
    gap: 0.25rem;
  }
}
.project_fixed_bar__prices .-now_price dt {
  color: var(--cl-accent);
  font-weight: 400;
}
@container (width >= 840px) {
  .project_fixed_bar__prices .-now_price dt {
    font-size: 0.75rem;
  }
}
@container (width < 840px) {
  .project_fixed_bar__prices .-now_price dt {
    font-size: 0.625rem;
  }
}
.project_fixed_bar__prices .-now_price dd {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-bottom: 0;
}
@container (width >= 840px) {
  .project_fixed_bar__prices .-now_price dd {
    font-size: 0.75rem;
  }
}
@container (width < 840px) {
  .project_fixed_bar__prices .-now_price dd {
    font-size: 0.625rem;
  }
}
@container (width >= 840px) {
  .project_fixed_bar__prices .-now_price dd .-value {
    font-size: 1.125rem;
  }
}
@container (width < 840px) {
  .project_fixed_bar__prices .-now_price dd .-value {
    font-size: 1rem;
  }
}
.project_fixed_bar__prices .-goal_price {
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  max-width: 15.625rem;
}
@container (width >= 840px) {
  .project_fixed_bar__prices .-goal_price {
    padding: 0.5rem;
  }
}
@container (width < 840px) {
  .project_fixed_bar__prices .-goal_price {
    padding: 0.25rem;
  }
}
.project_fixed_bar__prices .-goal_price dt {
  color: color-mix(in srgb, var(--cl-accent) 20%, white);
  font-weight: 400;
}
@container (width >= 840px) {
  .project_fixed_bar__prices .-goal_price dt {
    font-size: 0.75rem;
  }
}
@container (width < 840px) {
  .project_fixed_bar__prices .-goal_price dt {
    font-size: 0.625rem;
  }
}
.project_fixed_bar__prices .-goal_price dd {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-bottom: 0;
}
@container (width >= 840px) {
  .project_fixed_bar__prices .-goal_price dd {
    font-size: 0.75rem;
  }
}
@container (width < 840px) {
  .project_fixed_bar__prices .-goal_price dd {
    font-size: 0.625rem;
  }
}
@container (width >= 840px) {
  .project_fixed_bar__prices .-goal_price dd .-value {
    font-size: 0.875rem;
  }
}
@container (width < 840px) {
  .project_fixed_bar__prices .-goal_price dd .-value {
    font-size: 0.75rem;
  }
}
.project_fixed_bar__rate {
  border-right: 0.125rem solid var(--cl-bg03);
}
@container (width >= 840px) {
  .project_fixed_bar__rate {
    padding-inline: 1rem;
  }
}
@container (width < 840px) {
  .project_fixed_bar__rate {
    padding-inline: 0.5rem;
  }
}
.project_fixed_bar__achievement_rate {
  margin-bottom: 0;
}
.project_fixed_bar__achievement_rate dt {
  font-weight: 400;
  color: color-mix(in srgb, var(--cl-accent) 20%, white);
}
@container (width >= 840px) {
  .project_fixed_bar__achievement_rate dt {
    font-size: 0.75rem;
  }
}
@container (width < 840px) {
  .project_fixed_bar__achievement_rate dt {
    font-size: 0.625rem;
  }
}
.project_fixed_bar__achievement_rate dd {
  margin-bottom: 0;
}
@container (width >= 840px) {
  .project_fixed_bar__achievement_rate dd {
    font-size: 1.125rem;
  }
}
@container (width < 840px) {
  .project_fixed_bar__achievement_rate dd {
    font-size: 1rem;
  }
}
@container (width >= 840px) {
  .project_fixed_bar__achievement_rate dd .-value {
    font-size: 1.5rem;
  }
}
@container (width < 840px) {
  .project_fixed_bar__achievement_rate dd .-value {
    font-size: 1.25rem;
  }
}
.project_fixed_bar__count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@container (width >= 840px) {
  .project_fixed_bar__count {
    gap: 1rem;
    padding-left: 1rem;
  }
}
@container (width < 840px) {
  .project_fixed_bar__count {
    gap: 0.5rem;
    padding-left: 0.5rem;
  }
}
.project_fixed_bar__count .icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.project_fixed_bar__count dl {
  padding-left: 0;
  margin-bottom: 0;
}
.project_fixed_bar__count dl dt {
  font-weight: 400;
  color: color-mix(in srgb, var(--cl-accent) 20%, white);
}
@container (width >= 840px) {
  .project_fixed_bar__count dl dt {
    font-size: 1rem;
  }
}
@container (width < 840px) {
  .project_fixed_bar__count dl dt {
    font-size: 0.875rem;
  }
}
.project_fixed_bar__count dl dd {
  margin-bottom: 0;
}
@container (width >= 840px) {
  .project_fixed_bar__count dl dd {
    font-size: 1.125rem;
  }
}
@container (width < 840px) {
  .project_fixed_bar__count dl dd {
    font-size: 1rem;
  }
}
@container (width >= 840px) {
  .project_fixed_bar__count dl dd .-value {
    font-size: 2rem;
  }
}
@container (width < 840px) {
  .project_fixed_bar__count dl dd .-value {
    font-size: 1.5rem;
  }
}
.project_fixed_bar__button {
  grid-area: button;
  background-color: #ffee33;
  display: grid;
  place-content: center;
}
@container (width >= 840px) {
  .project_fixed_bar__button {
    padding: 1rem;
  }
}
@container (width < 840px) {
  .project_fixed_bar__button {
    padding: 0.5rem;
  }
}
.project_fixed_bar__button .-button {
  border: 0.0625rem solid var(--cl-accent);
  background-color: var(--cl-bg02);
  color: var(--cl-accent);
}
@container (width >= 840px) {
  .project_fixed_bar__button .-button {
    font-size: 1.5rem;
    padding: 1rem 1.5rem;
  }
}
@container (width < 840px) {
  .project_fixed_bar__button .-button {
    font-size: 1.125rem;
    padding: 0.5rem 1rem;
    display: block;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}
@media (any-hover: hover) {
  .project_fixed_bar__button .-button:hover {
    background-color: color-mix(in srgb, var(--cl-bg02) 50%, white);
    color: var(--cl-accent);
    border: 0.0625rem solid var(--cl-accent);
  }
}/*# sourceMappingURL=page_project.css.map */