@charset "UTF-8";
.modal-component {
  z-index: 10000;
  display: none;
}
.modal-component.-opened {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
}

.modal-component__wrapper {
  display: none;
}

.modal-component__overlay {
  background: rgba(0, 0, 0, 0.6);
  width: 100vw;
  height: 100vh;
}

.modal-component__container {
  position: absolute;
  top: 50vh;
  left: 50vw;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.modal-component__x {
  position: absolute;
  padding: 16px;
  right: 0;
  top: -36px;
  cursor: pointer;
}
.modal-component__x::before, .modal-component__x::after {
  content: "";
  height: 32px;
  width: 2px;
  position: absolute;
  background-color: #fff;
  right: 12px;
  top: 0;
}
.modal-component__x::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.modal-component__x::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.modal-component__body {
  background: #fff;
  border-radius: 6px;
  padding: 24px 30px;
  overflow-y: auto;
}

.modal-component__header {
  margin-bottom: 24px;
  padding: 10px 30px 0;
  border-bottom: 1px solid #e5e5e5;
  width: calc(100% + 60px);
  position: relative;
  left: -30px;
  box-sizing: border-box;
}
.modal-component__header.none {
  display: none;
}

.modal-component__main {
  max-height: 65vh;
}
.modal-component__main h4 {
  font-size: 20px;
}

.modal-component__footer {
  margin-top: 24px;
  padding: 10px 30px 0;
  border-top: 1px solid #e5e5e5;
  position: relative;
  box-sizing: border-box;
}
.modal-component__footer.none {
  display: none;
}

.modal-component__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.other-comment__wrapper {
  background-color: #f6f6f6;
  border-radius: 20px;
  padding: 13px 24px 19px;
  margin: 10px 0 0 20px;
  position: relative;
}
.other-comment__wrapper:first-child {
  margin: 4px 0 0 10px;
}
.other-comment__wrapper::before {
  content: "";
  border-bottom: 25px solid transparent;
  border-right: 25px solid #f6f6f6;
  display: block;
  left: -30px;
  position: absolute;
  width: 10px;
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
}

.other-comment__profile {
  display: flex;
  align-items: center;
}
.other-comment__profile .other-comment__profile-name {
  color: #6b6b6b;
}

.other-comment__profile-project-owner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.other-comment__profile-project-owner img {
  border: 1px solid #c8c8c8;
  border-radius: 20px;
}

.other-comment__profile-owner-name {
  color: #6b6b6b;
  margin-left: 8px;
  font-size: 14px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.other-comment__profile-name-wrapper {
  color: #6b6b6b;
  margin-left: 8px;
  font-size: 14px;
  display: flex;
  align-items: center;
  width: 100%;
}
.other-comment__profile-name-wrapper .other-comment__profile-name {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: block;
}

.other-comment__content {
  margin-top: 4px;
}
.other-comment__content .other-comment__content-body {
  word-break: break-word;
}
.other-comment__content .other-comment__content-day {
  font-size: 12px;
  color: #6b6b6b;
  margin-top: 4px;
}

.my-comment__wrapper {
  background-color: #e7f2ed;
  border-radius: 20px;
  padding: 13px 24px 19px;
  margin: 10px 20px 0 0;
  position: relative;
}
.my-comment__wrapper::before {
  content: "";
  border-bottom: 25px solid transparent;
  border-left: 25px solid #e7f2ed;
  display: block;
  right: -30px;
  position: absolute;
  width: 10px;
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
}

.my-comment__only-personally {
  display: flex;
  align-items: center;
  line-height: 100%;
  color: #2e792d;
  border-bottom: 1px solid #c6dddd;
  margin-bottom: 8px;
}

.my-comment__only-personally-text {
  margin-left: 6px;
}

.my-comment__profile {
  display: flex;
  align-items: center;
}
.my-comment__profile .my-comment__profile-name-wrapper {
  color: #6b6b6b;
  margin-left: 6px;
  display: flex;
  align-items: center;
  width: 100%;
}
.my-comment__profile .my-comment__profile-name-wrapper .my-comment__profile-name {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: block;
}

.my-comment__content {
  margin-top: 4px;
}
.my-comment__content .my-comment__content-body {
  word-break: break-word;
}
.my-comment__content .my-comment__content-footer {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.my-comment__content .my-comment__content-footer .my-comment__content-footer-day {
  font-size: 12px;
  color: #6b6b6b;
  margin-top: 4px;
}
.my-comment__content .my-comment__content-footer .my-comment__content-footer-delete-button {
  background: #e7f2ed;
  border: none;
  color: #1e50a2;
  cursor: pointer;
  pointer-events: auto;
}
.my-comment__content .my-comment__content-status {
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  margin-top: 14px;
}
.my-comment__content .my-comment__content-status p {
  padding: 8px 16px;
}

.my-comment__caution-text {
  color: #6b6b6b;
  margin-top: 8px;
  font-size: 14px;
}

.not-login-input {
  margin-top: 16px;
  color: #707070;
}
.not-login-input .not-login-input__link {
  color: #1e50a2;
}
.not-login-input .not-login-input__link:hover {
  text-decoration: underline;
}

.login-input__wrapper {
  margin-top: 13px;
}
.login-input__wrapper .login-input__body .login-input__body-header {
  display: flex;
  align-items: flex-start;
}
.login-input__wrapper .login-input__body .login-input__body-header .close-button {
  pointer-events: auto;
  position: absolute;
  right: 0;
}
.login-input__wrapper .login-input__body .login-input__user-name {
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.login-input__wrapper .login-input__body .reply-input-user-name {
  width: calc(100% - 16px) !important;
}
.login-input__wrapper .login-input__body .login-input__textarea-wrapper {
  position: relative;
}
.login-input__wrapper .login-input__body .login-input__field {
  border: 1px solid #c8c8c8;
  border-radius: 30px;
  text-align: start;
  height: 1.5em;
  overflow: hidden;
  min-height: 24px;
  resize: none;
  pointer-events: auto;
}
.login-input__wrapper .login-input__body .login-input__field:focus {
  border-color: #1e50a2;
}
.login-input__wrapper .login-input__body .login-input__textarea-number {
  position: absolute;
  color: #6b6b6b;
}
.login-input__wrapper .login-input__body .login-input__body-cautionーtext {
  color: #707070;
  margin-top: 12px;
  text-align: left;
}
.login-input__wrapper .login-input__body .login-input__body-cautionーtext p {
  font-size: 14px;
}
.login-input__wrapper .login-input__body .login-input__body-caution-link {
  color: #1e50a2;
  font-size: 14px;
  margin: 5px 0;
  display: inline-block;
}
.login-input__wrapper .login-input__body .login-input__body-caution-link:hover {
  text-decoration: underline;
}
.login-input__wrapper .login-input__body .login-input__button-wrapper {
  text-align: center;
  margin-top: 16px;
}
.login-input__wrapper .login-input__body .login-input__button-wrapper .login-input__button {
  cursor: pointer;
  width: 45%;
  height: 45px;
  background-color: #2e792d;
  border-radius: 4px;
  color: white;
  border: none;
  pointer-events: auto;
}

.not-entered {
  display: none !important;
}

.error {
  border-color: #e8000a !important;
  border-width: 2px !important;
}

.vald-error-txt {
  margin: 2px 0;
  color: #e8000a;
  clear: both;
}
.vald-error-txt::before {
  content: "※";
}

.disabled {
  background-color: #c1c1c1 !important;
  color: #6b6b6b !important;
  cursor: initial !important;
}

.bx-tooltip {
  margin: 0 4px !important;
}

.bx-tooltip {
  display: inline-block;
  position: relative;
}
.bx-tooltip.-kift .bx-tooltip__img {
  width: 136px;
  margin: 0 auto;
  min-width: 136px;
}
.bx-tooltip.-kift .bx-tooltip__wrap {
  background-color: #ffffff;
  padding: 0;
  color: #16160e;
  bottom: 48px;
}
.bx-tooltip.-kift .bx-tooltip__link:hover, .bx-tooltip.-kift .bx-tooltip__link:focus, .bx-tooltip.-kift .bx-tooltip__link:active {
  background-color: transparent;
  color: #6b6b6b;
}
.bx-tooltip.-kift .bx-tooltip__top {
  padding: 24px 32px 16px 24px;
}
.bx-tooltip.-kift .bx-tooltip__bottom {
  padding: 32px 16px 16px;
  background-color: #fffade;
  border-radius: 0 0 4px 4px;
  font-size: 14px;
  font-weight: normal;
}
.bx-tooltip.-kift .bx-tooltip__bottom .bold {
  display: inline-block;
  width: 136px;
  margin: 0 16px 0 0;
  font-weight: bold;
}
.bx-tooltip.-kift .bx-tooltip__arrow::before, .bx-tooltip.-kift .bx-tooltip__arrow::after {
  background-color: #ffffff;
}
.bx-tooltip.-kift .bx-tooltip__close {
  color: #6b6b6b;
}
.bx-tooltip.-kift .bx-tooltip__close:hover, .bx-tooltip.-kift .bx-tooltip__close:focus, .bx-tooltip.-kift .bx-tooltip__close:active {
  color: #6b6b6b;
  background-color: transparent;
}
.bx-tooltip.-kift .i-arrow {
  font-weight: normal;
  display: inline;
}
.bx-tooltip.-kift .i-arrow:hover, .bx-tooltip.-kift .i-arrow:focus, .bx-tooltip.-kift .i-arrow:active {
  background-color: transparent;
}

.bx-tooltip__link {
  color: #6b6b6b;
  display: inline-block;
  position: relative;
}
.bx-tooltip__link:hover, .bx-tooltip__link:focus, .bx-tooltip__link:active {
  opacity: 0.6;
}
.bx-tooltip__link .icn-help {
  display: inline-block;
  width: 1em;
  margin-left: 0;
}

.bx-tooltip__wrap {
  color: #ffffff;
  width: calc(100vw - 40px);
  max-width: 370px;
  background-color: #6b6b6b;
  box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.4);
  border-radius: 4px;
  padding: 30px 16px 20px;
  position: absolute;
  left: 0;
  bottom: 38px;
  z-index: 9999;
  box-sizing: border-box;
  display: none;
}
.bx-tooltip__wrap.is-active {
  display: block;
}
.bx-tooltip__wrap[tabindex]:focus {
  outline: none;
}
.bx-tooltip__wrap .txt-link.-bottom {
  margin-top: 4px;
  text-align: center;
}
.bx-tooltip__wrap .txt-link.-bottom a {
  color: #fff;
  text-decoration: underline;
}

.bx-tooltip__inner2 {
  display: flex;
}

.bx-tooltip__img-area {
  width: 33%;
  margin-right: 16px;
}

.bx-tooltip__arrow {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 20px;
  height: 20px;
}
.bx-tooltip__arrow::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.4);
  background-color: #6b6b6b;
}
.bx-tooltip__arrow::after {
  content: "";
  position: absolute;
  top: -16px;
  left: -20px;
  display: block;
  width: 40px;
  height: 16px;
  background-color: #6b6b6b;
}

.bx-tooltip__text {
  font-size: 12px;
  line-height: 1.7;
  white-space: normal;
  font-weight: normal;
  text-align: left;
}
.bx-tooltip__text:not(:first-child) {
  margin-top: 10px;
}
.bx-tooltip__text a {
  color: #ffffff;
  text-decoration: underline;
}
.bx-tooltip__text a:hover, .bx-tooltip__text a:focus, .bx-tooltip__text a:active {
  color: #ffffff;
  text-decoration: none;
}

.bx-tooltip__close {
  font-size: 16px;
  position: absolute;
  top: 11px;
  right: 11px;
  color: #c8c8c8;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.bx-tooltip__close::before {
  content: "\e025";
  font-family: "iconfont";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  text-decoration: none;
  text-transform: none;
}

/* rank アイコンv */
.label--exclusive.-sticker, .label--exclusive.-rectangle {
  background: #ad0003;
  color: #ffffff;
  font-weight: bold;
  line-height: 1;
}
.label--exclusive.-sticker:hover, .label--exclusive.-rectangle:hover {
  text-decoration: none;
}

.label--exclusive.-rectangle {
  padding: 5px 0;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 14px;
}

.label--exclusive.-sticker, .label--exclusive.-rectangle {
  background: #ad0003;
  color: #ffffff;
  font-weight: bold;
  line-height: 1;
}
.label--exclusive.-sticker:hover, .label--exclusive.-rectangle:hover {
  text-decoration: none;
}

.label--exclusive.-sticker {
  position: absolute;
  top: 6px;
  left: 6px;
  font-size: 12px;
  padding: 5px;
  border-radius: 50%;
}

.card-product {
  display: flex;
  flex-direction: column;
  height: calc(100% - 4px);
  position: relative;
  background: #fff;
  box-shadow: 0 2px 0 0 #e5e5e5;
  border-radius: 4px;
  border: 1px solid #e5e5e5;
  overflow: hidden;
  /* pickup */
  /* 準備中・品切れ・受付終了サイン */
}
.card-product__link {
  min-height: 0%;
  flex-grow: 1;
  display: flex;
  width: 100%;
  flex-direction: column;
}
.card-product__link:hover .card-product__img {
  opacity: 0.85;
}
.card-product__link:hover .card-product__title,
.card-product__link:hover .card-product__txt {
  color: #1e50a2;
  text-decoration: underline;
}
.card-product__image {
  position: relative;
}
.card-product__img {
  width: 100%;
  max-height: 100%;
  border-bottom: 0;
  display: block;
}
.card-product__title {
  color: #2b2b2b;
  font-weight: normal;
  font-size: 16px;
  letter-spacing: 0;
  margin: -1px;
  border-radius: 4px 4px 0 0;
}
.card-product__status {
  position: absolute;
  z-index: 1;
}
.card-product__contents {
  padding: 12px 8px;
}
.card-product__contents .lst-icon {
  margin-top: 4px;
  display: none;
}
.card-product__contents .lst-icon.none {
  margin: 0;
}
.card-product__img {
  text-align: center;
}
.card-product__status {
  position: absolute;
}
.card-product__subtitle {
  margin-top: 8px;
}
.card-product__subtitle-inner {
  padding: 8px;
  font-size: 16px;
  font-weight: bold;
  color: #ad0003;
  box-sizing: border-box;
}
.card-product__price-text {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
}
.card-product__price {
  margin-right: 4px;
}
.card-product__point {
  font-size: 12px;
  color: #16160e;
  font-weight: normal;
}
.card-product__price-option {
  color: #16160e;
  font-weight: normal;
}
.card-product__price-option img {
  height: 14px;
  min-width: 73px;
}
.card-product__price-option span {
  vertical-align: middle;
  font-size: 12px;
}
.card-product .sts-type3 {
  background: #d59300;
  color: #fff;
  padding: 2px 8px;
  border-radius: 0 4px 4px 0;
  position: absolute;
  left: -1px;
  bottom: 4px;
  font-size: 10px;
}
.card-product .sts-type4,
.card-product .sts-type5,
.card-product .sts-type6 {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border-radius: 3px 3px 0 0;
  font-size: 18px;
  text-align: center;
  position: absolute;
  opacity: 1;
  top: 0;
  left: 0;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.card-product .sts-type7 {
  text-align: center;
  line-height: 1;
  top: 0;
  left: 0;
  font-size: 14px;
}
.card-product .sts-type7:before {
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  left: 0;
  border-top: 20px solid #d3d3d3;
  border-left: 20px solid #d3d3d3;
  border-bottom: 20px solid transparent;
  border-right: 20px solid transparent;
}
.card-product .sts-type7 .icn-ranking {
  display: none;
}
.card-product .sts-type7 span {
  position: absolute;
  min-width: 24px;
  top: 6px;
  font-weight: bold;
  white-space: nowrap;
}
.card-product .sts-type7.item-rank1 {
  background-color: #b78c00;
}
.card-product .sts-type7.item-rank1::before {
  border-color: #b78c00;
}
.card-product .sts-type7.item-rank2 {
  background-color: #557088;
}
.card-product .sts-type7.item-rank2::before {
  border-color: #557088;
}
.card-product .sts-type7.item-rank3 {
  background-color: #bc7421;
}
.card-product .sts-type7.item-rank3::before {
  border-color: #bc7421;
}
.card-product .sts-type7.item-rank1, .card-product .sts-type7.item-rank2, .card-product .sts-type7.item-rank3 {
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  width: 26px;
  top: 0;
  left: 10px;
}
.card-product .sts-type7.item-rank1 .icn-ranking, .card-product .sts-type7.item-rank2 .icn-ranking, .card-product .sts-type7.item-rank3 .icn-ranking {
  display: block;
  font-size: 14px;
  margin: 2px 0 4px;
  font-size: 0.9em;
}
.card-product .sts-type7.item-rank1 .icn-ranking::before, .card-product .sts-type7.item-rank2 .icn-ranking::before, .card-product .sts-type7.item-rank3 .icn-ranking::before {
  position: relative;
  top: 3px;
}
.card-product .sts-type7.item-rank1 span, .card-product .sts-type7.item-rank2 span, .card-product .sts-type7.item-rank3 span {
  position: static;
  -webkit-transform: none;
          transform: none;
  z-index: 1;
  line-height: 1;
}
.card-product .sts-type7.item-rank1::before, .card-product .sts-type7.item-rank2::before, .card-product .sts-type7.item-rank3::before {
  content: "";
  position: absolute;
  bottom: -11px;
  border-width: 13px;
  border-bottom: 4px solid transparent;
}
.card-product__text {
  color: #6b6b6b;
  font-size: 14px;
  margin-top: 8px;
  display: none;
}
.card-product__text.none {
  margin: 0;
}
.card-product__text .txt {
  font-size: inherit;
}
.card-product__txt {
  font-size: inherit;
  max-height: 168px;
  overflow: hidden;
}
.card-product__code {
  color: #6b6b6b;
  margin: 8px 0 0 auto;
  font-size: 12px;
  order: 1;
  display: none;
}
.card-product__comment {
  color: #1e50a2;
  font-size: 14px;
  padding: 0 10px 10px;
  width: 100%;
}
.card-product__comment:hover {
  text-decoration: underline;
}
.card-product__comment::before {
  color: #1e50a2;
  display: inline-block;
  margin-right: 4px;
  vertical-align: middle;
}
.card-product__icn-message {
  position: relative;
  padding-left: 20px;
}
.card-product__icn-message:before {
  color: #1e50a2;
  position: absolute;
  margin-left: -16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.card-product__heart {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  background: none;
  border: 0;
  margin: 0;
  padding: 8px;
}
.card-product__heart > img {
  width: 28px;
}
.card-product__city {
  display: flex;
  height: 40px;
  padding: 8px;
  border-top: 1px solid #e5e5e5;
  box-sizing: content-box;
  color: #1e50a2;
  font-size: 14px;
  align-items: center;
}
.card-product__city:hover {
  text-decoration: underline;
}
.card-product__city:hover img {
  opacity: 0.85;
}
.card-product__city > img {
  border-radius: 2px;
  border: 1px solid #e5e5e5;
  width: 38px;
  height: 38px;
  margin-right: 7px;
}
.card-product__city > span {
  display: inline-block;
  letter-spacing: 0;
  margin-right: 5px;
}
.card-product__city .award-label {
  margin-left: auto;
  flex-shrink: 0;
}
.card-product .speed-shipping-label__wrap {
  padding: 0 10px 16px;
}
.card-product .speed-shipping-label__wrap .speed-shipping-label {
  margin: 0 0 1px 0;
}
.card-product .speed-shipping-label__wrap .speed-shipping-label__sub {
  color: #6b6b6b;
  font-size: 12px;
  padding: 0;
}
.card-product .sendiconlist {
  display: block;
}

.choice-icon-color {
  color: #d59300;
}

.choicepay-icon-color {
  color: #239dda;
}

.card-product__delete {
  background: none;
  border: 0;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
}
.card-product__delete > svg {
  display: inline-block;
  vertical-align: top;
}

.card-product__category {
  font-size: 14px;
  background-color: #f2f2f2;
  text-align: center;
  line-height: 1;
  padding: 6px 0;
}

[data-layout-product=all] .card-product__text {
  display: block;
}
[data-layout-product=all] .card-product__contents .lst-icon {
  display: block;
}
[data-layout-product=all] .speed-shipping-label__wrap .card-product__code {
  display: block;
}

[data-layout-product=part] .sendiconlist {
  display: none;
}

.card-product__text + .speed-shipping-label, .card-product__text + .speed-shipping-label__sub {
  margin-top: 8px;
}

.card-project {
  display: flex;
  flex-direction: column;
  height: calc(100% - 4px);
  position: relative;
  background: #fff;
  box-shadow: 0 2px 0 0 #e5e5e5;
  border-radius: 4px;
  border: 1px solid #e5e5e5;
  overflow: hidden;
}
.card-project__link {
  min-height: 0%;
  flex-grow: 1;
  display: flex;
  width: 100%;
  flex-direction: column;
}
.card-project__link:hover .card-project__img {
  opacity: 0.85;
}
.card-project__link:hover .card-project__title,
.card-project__link:hover .card-project__txt {
  color: #1e50a2;
  text-decoration: underline;
}
.card-project__image {
  position: relative;
}
.card-project__img {
  width: 100%;
  max-height: 100%;
  border-bottom: 0;
  display: block;
}
.card-project__title {
  color: #2b2b2b;
  font-weight: normal;
  font-size: 16px;
  letter-spacing: 0;
  margin: -1px;
  border-radius: 4px 4px 0 0;
}
.card-project__status {
  position: absolute;
  z-index: 1;
}
.card-project__contents {
  padding: 12px 8px;
}
.card-project__contents .lst-icon {
  margin-top: 4px;
  display: none;
}
.card-project__contents .lst-icon.none {
  margin: 0;
}
.card-project:before {
  content: "";
  display: block;
  height: 0;
  order: 1;
  width: 48%;
}
.card-project .article-sld:hover {
  text-decoration: none;
  color: #16160e;
  opacity: 0.85;
}
.card-project .article-sld:hover .card-project__name {
  text-decoration: underline;
}
.card-project__img.lazyload, .card-project__img.lazyloading {
  height: 115px;
}
.card-project__col {
  background-color: #ffffff;
  position: relative;
  margin: 40px 0 0 0;
  width: 100%;
  box-sizing: border-box;
  /* プロジェクト終了時 */
}
.card-project__col:nth-child(1), .card-project__col:nth-child(2) {
  margin: 0;
}
.card-project__col.is-end .card-project__progress > div:first-child,
.card-project__col.is-end .card-project__favorite-button,
.card-project__col.is-end .card-project__target-amount,
.card-project__col.is-end .card-project__row:not(:first-child),
.card-project__col.is-end .chart-bar {
  display: none;
}
.card-project__col.is-end .card-project__text--pref {
  width: 100%;
}
.card-project__col.is-end .card-project__end-button {
  cursor: default;
  display: block;
}
.card-project__col .card-project__complete {
  position: absolute;
  top: 12px;
  left: 4px;
  height: 40px;
  width: 40px;
  z-index: 1;
}
.card-project__col .card-project__soon {
  position: absolute;
  top: 8px;
  left: 4px;
  width: 63px;
  height: 21px;
  border-radius: 0 0 4px 4px;
}
.card-project__label {
  box-sizing: border-box;
  position: relative;
  background: #e5e5e5;
  width: 100%;
  height: 18px;
  margin: 0 auto -8px;
  padding: 4px;
  text-align: center;
  z-index: 1;
}
.card-project__label .card-project__text {
  font-size: 10px;
  letter-spacing: 0;
}
.card-project__image {
  overflow: hidden;
  position: relative;
  text-align: center;
}
.card-project__title {
  height: 4.3em;
  overflow: hidden;
}
.card-project__remind--complete, .card-project__remind--soon {
  display: block;
  float: left;
  font-size: 12px;
  width: 76px;
  text-align: center;
  margin-right: 8px;
  color: #16160e;
}
.card-project__remind--complete {
  border-top: solid 1px #f2b02d;
  border-bottom: solid 1px #f2b02d;
  background: #fcf2df;
}
.card-project__remind--soon {
  border-top: solid 1px #93ca76;
  border-bottom: solid 1px #93ca76;
  background: #edf5e9;
}
.card-project__name {
  display: block;
  font-size: 14px;
  letter-spacing: 0.01em;
}
.card-project__pref {
  font-size: 10px;
  line-height: 1;
}
.card-project__pref .icn-office {
  margin-right: 4px;
}
.card-project__target-amount {
  font-size: 12px;
  width: 100%;
}
.card-project__time-left {
  font-weight: bold;
  font-size: 12px;
  margin-top: 4px;
}
.card-project__total {
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: baseline;
}
.card-project__text {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.2;
}
.card-project__badge {
  box-sizing: border-box;
  background-color: #e5e5e5;
  border-radius: 10px;
  display: inline-block;
  font-size: 10px;
  font-weight: bold;
  margin-right: 8px;
  padding: 2px 4px;
  text-align: center;
}
.card-project__quantity {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: -0.4px;
}
.card-project__quantity.deadline {
  color: #e8000a;
}
.card-project__unit {
  font-size: 12px;
}
.card-project__progress {
  margin-top: 8px;
}
.card-project__progress > div:first-child {
  flex: 1;
  margin-right: 4px;
}
.card-project__progress > div:nth-child(2) {
  flex: 1;
  min-width: 98px;
}
.card-project__progress .gcf-cht-bar {
  margin-top: 8px;
}
.card-project__limit {
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
}
.card-project__favorite-button {
  background-color: #ffffff;
  border: 2px solid #ad0003;
  border-radius: 4px;
  color: #ad0003;
  font-size: 10px;
  line-height: 1.8em;
  height: 26px;
  outline: none;
  padding: 1px 0 0;
  text-align: center;
  vertical-align: text-bottom;
  width: 100%;
}
.card-project__favorite-button:hover {
  cursor: pointer;
  opacity: 0.85;
}
.card-project__favorite-button .icn-heart,
.card-project__favorite-button .icn-heart2 {
  margin-right: 4px;
  vertical-align: middle;
}
.card-project__favorite-button .icn-heart {
  display: none;
}
.card-project__favorite-button .icn-heart2:before {
  font-weight: bold;
  vertical-align: top;
}
.card-project__favorite-button.on .icn-heart {
  display: inline-block;
  vertical-align: middle;
  line-height: 14px;
}
.card-project__favorite-button.on .icn-heart2 {
  display: none;
}
.card-project__end-button {
  border-radius: 4px;
  box-sizing: border-box;
  color: #ffffff;
  display: none;
  font-size: 10px;
  height: 22px;
  margin-top: 8px;
  padding-top: 4px;
  text-align: center;
  width: 100%;
}
.card-project__value {
  display: inline;
}
.card-project__end {
  font-size: 10px;
  margin-left: 5px;
  display: inline;
}
.card-project__list {
  margin-top: 4px;
}
.card-project__lead span {
  text-align: center;
  width: 56px;
  padding: 5px 8px;
  background: #f6f6f6;
  font-size: 10px;
  font-weight: bold;
  border-radius: 30px;
  line-height: 1;
}
.card-project .goods-col_name {
  height: 4.5em;
  margin-top: 12px;
}
.card-project .chart-bar {
  margin: 8px 0;
}

/* progress bar chart */
.gcf-cht-bar {
  background: #e5e5e5;
  width: 100%;
  height: 24px;
  margin-bottom: 8px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.gcf-cht-bar__graph {
  background-color: #93ca76;
  width: 0;
  height: 24px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}
.gcf-cht-bar__graph2 {
  background-color: #f2b02d;
  width: 0;
  height: 24px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}
.gcf-cht-bar__number {
  width: 100%;
  height: 24px;
  line-height: 24px;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
}
.grid-7 .card-product__contents {
  padding: 0;
}
.grid-7 .card-product__subtitle {
  margin-top: 0;
  background: transparent;
}
.grid-7 .card-product__subtitle-inner {
  padding: 4px;
  justify-content: center;
  font-weight: normal;
}
.grid-7 .card-product__price {
  font-size: 12px;
}
.grid-7 .card-product__point {
  margin: 0 auto;
}
.grid-7 .card-product__price {
  margin: 0 auto;
}
.grid-7 .card-product__city, .grid-7 .card-product__title, .grid-7 .card-product__heart {
  display: none;
}
.grid-col .card-product {
  border: none;
  box-shadow: none;
  border-radius: 0;
  height: auto;
}
.grid-col .card-product__link {
  display: flex;
  flex-direction: row;
}
.grid-col .card-product__image {
  width: 97px;
  min-width: 97px;
  height: 60px;
  min-height: 60px;
  border: 1px solid #c8c8c8;
}
.grid-col .card-product__img {
  border: none;
  margin: inherit;
  border-radius: 0;
}
.grid-col .card-product__contents {
  padding: 0;
  margin-left: 12px;
}
.grid-col .card-product__title {
  font-size: 14px;
}
.grid-col .card-product__subtitle {
  background-color: transparent;
  margin: 0;
}
.grid-col .card-product__subtitle-inner {
  padding: 0;
  margin: 0;
}
.grid-col .card-product__city {
  display: none;
}
.grid-col .card-product__heart {
  display: none;
}
.grid-col .card-product .sts-type7.item-rank1, .grid-col .card-product .sts-type7.item-rank2, .grid-col .card-product .sts-type7.item-rank3 {
  left: 0;
}

.card-city {
  display: flex;
  flex-direction: column;
  height: calc(100% - 4px);
  position: relative;
  background: #fff;
  box-shadow: 0 2px 0 0 #e5e5e5;
  border-radius: 4px;
  border: 1px solid #e5e5e5;
  overflow: hidden;
}
.card-city__link {
  min-height: 0%;
  flex-grow: 1;
  display: flex;
  width: 100%;
  flex-direction: column;
}
.card-city__link:hover .card-city__img {
  opacity: 0.85;
}
.card-city__link:hover .card-city__title,
.card-city__link:hover .card-city__txt {
  color: #1e50a2;
  text-decoration: underline;
}
.card-city__image {
  position: relative;
}
.card-city__img {
  width: 100%;
  max-height: 100%;
  border-bottom: 0;
  display: block;
}
.card-city__title {
  color: #2b2b2b;
  font-weight: normal;
  font-size: 16px;
  letter-spacing: 0;
  margin: -1px;
  border-radius: 4px 4px 0 0;
}
.card-city__status {
  position: absolute;
  z-index: 1;
}
.card-city__contents {
  padding: 12px 8px;
}
.card-city__contents .lst-icon {
  margin-top: 4px;
  display: none;
}
.card-city__contents .lst-icon.none {
  margin: 0;
}
.card-city__image {
  height: 104px;
  overflow: hidden;
  display: flex;
  justify-content: center;
}
.card-city__img {
  max-width: initial;
  width: auto !important;
  height: 100%;
}
.card-city__title {
  position: relative;
  border-bottom: solid 1px #e5e5e5;
  padding-bottom: 8px;
  margin-top: 16px;
}
.card-city__cityimg {
  width: 40px;
  border: solid 1px #e5e5e5;
  border-radius: 4px;
}
.card-city__name {
  text-align: center;
  font-size: 14px;
}
.card-city__info {
  font-size: 14px;
  padding: 8px 0 16px;
}
.card-city__info dl {
  display: flex;
  flex-wrap: wrap;
}
.card-city__info dl dt,
.card-city__info dl dd {
  padding: 4px 0;
}
.card-city__info dl dt {
  width: 20%;
  letter-spacing: 0;
}
.card-city__info small {
  font-size: 12px;
  text-align: right;
  display: block;
  margin-top: 8px;
}
.card-city__info .emphasis {
  font-weight: bold;
}
.card-city__category {
  font-size: 14px;
}
.card-city__category h4 {
  font-size: 14px;
  font-weight: normal;
  margin-bottom: 8px;
}
.card-city__category p {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 8px;
}
.card-city__category p span:not(:last-child):after {
  content: "、";
}
.card-city__description {
  font-size: 14px;
  padding-top: 8px;
  border-top: solid 1px #e5e5e5;
  overflow: hidden;
  height: 84px;
}

.card-article {
  display: flex;
  flex-direction: column;
  height: calc(100% - 4px);
  position: relative;
  background: #fff;
  box-shadow: 0 2px 0 0 #e5e5e5;
  border-radius: 4px;
  border: 1px solid #e5e5e5;
  overflow: hidden;
  height: 100%;
}
.card-article__link {
  min-height: 0%;
  flex-grow: 1;
  display: flex;
  width: 100%;
  flex-direction: column;
}
.card-article__link:hover .card-article__img {
  opacity: 0.85;
}
.card-article__link:hover .card-article__title,
.card-article__link:hover .card-article__txt {
  color: #1e50a2;
  text-decoration: underline;
}
.card-article__image {
  position: relative;
}
.card-article__img {
  width: 100%;
  max-height: 100%;
  border-bottom: 0;
  display: block;
}
.card-article__title {
  color: #2b2b2b;
  font-weight: normal;
  font-size: 16px;
  letter-spacing: 0;
  margin: -1px;
  border-radius: 4px 4px 0 0;
}
.card-article__status {
  position: absolute;
  z-index: 1;
}
.card-article__contents {
  padding: 12px 8px;
}
.card-article__contents .lst-icon {
  margin-top: 4px;
  display: none;
}
.card-article__contents .lst-icon.none {
  margin: 0;
}
.card-article .sts-type7 {
  text-align: center;
  line-height: 1;
  top: 0;
  left: 0;
  font-size: 14px;
}
.card-article .sts-type7:before {
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  left: 0;
  border-top: 20px solid #d3d3d3;
  border-left: 20px solid #d3d3d3;
  border-bottom: 20px solid transparent;
  border-right: 20px solid transparent;
}
.card-article .sts-type7 .icn-ranking {
  display: none;
}
.card-article .sts-type7 span {
  position: absolute;
  min-width: 24px;
  top: 6px;
  font-weight: bold;
  white-space: nowrap;
}
.card-article .sts-type7.item-rank1 {
  background-color: #b78c00;
}
.card-article .sts-type7.item-rank1::before {
  border-color: #b78c00;
}
.card-article .sts-type7.item-rank2 {
  background-color: #557088;
}
.card-article .sts-type7.item-rank2::before {
  border-color: #557088;
}
.card-article .sts-type7.item-rank3 {
  background-color: #bc7421;
}
.card-article .sts-type7.item-rank3::before {
  border-color: #bc7421;
}
.card-article .sts-type7.item-rank1, .card-article .sts-type7.item-rank2, .card-article .sts-type7.item-rank3 {
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  width: 26px;
  top: 0;
  left: 10px;
}
.card-article .sts-type7.item-rank1 .icn-ranking, .card-article .sts-type7.item-rank2 .icn-ranking, .card-article .sts-type7.item-rank3 .icn-ranking {
  display: block;
  font-size: 14px;
  margin: 2px 0 4px;
  font-size: 0.9em;
}
.card-article .sts-type7.item-rank1 .icn-ranking::before, .card-article .sts-type7.item-rank2 .icn-ranking::before, .card-article .sts-type7.item-rank3 .icn-ranking::before {
  position: relative;
  top: 3px;
}
.card-article .sts-type7.item-rank1 span, .card-article .sts-type7.item-rank2 span, .card-article .sts-type7.item-rank3 span {
  position: static;
  -webkit-transform: none;
          transform: none;
  z-index: 1;
  line-height: 1;
}
.card-article .sts-type7.item-rank1::before, .card-article .sts-type7.item-rank2::before, .card-article .sts-type7.item-rank3::before {
  content: "";
  position: absolute;
  bottom: -11px;
  border-width: 13px;
  border-bottom: 4px solid transparent;
}
.card-article__image {
  height: 166px;
}
.card-article__title {
  font-size: 14px;
  margin-bottom: 4px;
  height: 42px;
  overflow: hidden;
}
.card-article__contents {
  padding: 20px 8px 8px;
}
.card-article__contents p:not(.card-article__title) {
  font-size: 14px;
  height: 21px;
  overflow: hidden;
  margin-bottom: 4px;
}
.card-article__contents p:not(.card-article__title) small {
  font-size: 12px;
}

/*
新グリッド用クラス。
`layout-column-2__main` (左ナビありレイアウト)の場合は合わせて幅が変わります。
*/
.grid {
  display: flex;
  flex-wrap: wrap;
}
.grid-3 .grid__block {
  width: 252px;
  box-sizing: border-box;
}
.grid-3 .grid__block:not(:nth-child(3n)) {
  margin-right: 20px;
}
.grid-col .grid__block {
  padding: 12px 0;
  border-bottom: 1px solid #e5e5e5;
  width: 100%;
}
.grid-col .grid__block:first-child {
  padding-top: 0;
}

.row-gap--12-24 {
  margin-bottom: -12px;
}
.row-gap--12-24 > .grid__block {
  margin-bottom: 12px;
}
.row-gap--16 {
  margin-bottom: -16px;
}
.row-gap--16 > .grid__block {
  margin-bottom: 16px;
}
.row-gap--20--28 {
  margin-bottom: -20px;
}
.row-gap--20--28 li {
  margin-bottom: 20px;
}

.card-product .flag--new {
  top: -0.1em;
}

.card-product__subtitle {
  background: transparent;
}
.card-product__subtitle-inner {
  padding: 0;
}

.card-product__price {
  font-size: 16px;
}
.speed-shipping-label__wrap {
  padding: 0 10px 16px;
}
.speed-shipping-label__wrap .speed-shipping-label {
  margin: 0 0 1px 0;
}
.speed-shipping-label__wrap .speed-shipping-label__sub {
  color: #6b6b6b;
  font-size: 12px;
  padding: 0;
}

.sendiconlist {
  margin: -4px 0 0 0;
  padding: 0 10px 16px;
}
.sendiconlist + .speed-shipping-label__wrap {
  margin-top: -8px;
}

.card-product__link:hover .speed-shipping-label__sub {
  color: #1e50a2;
  text-decoration: underline;
}

.card-product__code {
  margin: 0;
}

.speed-shipping-label__sub.card-product__code {
  margin-top: 8px;
}

.card-product__comment {
  margin-top: 0px;
  padding: 0 8px 8px;
  color: #1e50a2;
}
.card-product__comment:hover {
  text-decoration: underline;
}

.card-product__icn-message {
  display: inline-block;
}

.speed-shipping-label {
  font-size: 14px;
}

.flag--new {
  background-color: #16160e;
  border-radius: 1em;
  color: #ffffff;
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  padding: 4px 8px;
  margin-right: 2px;
  position: relative;
}

/* layout */
.gcf-lyt-detail__pref {
  margin-top: 16px;
}
.gcf-lyt-detail__pref .icn-office,
.gcf-lyt-detail__pref .icon-location {
  margin-right: 8px;
  font-size: 21px;
  vertical-align: middle;
  position: relative;
  top: -0.1em;
}

.gcf-lyt-detail__section {
  margin-top: 43px;
  padding: 0 16px;
}

.gcf-overview-content {
  border-bottom: 2px solid #c8c8c8;
}

.gcf-lyt-detail__section--head {
  padding-top: 29px;
  margin-bottom: 48px;
}
.gcf-lyt-detail__section--head > :not(.gcf-lyt-image2) {
  padding: 0 16px;
}
.gcf-lyt-detail__section--head .gcf-lyt-image2 {
  margin-top: 20px;
}
.gcf-lyt-detail__section--head .gcf-lyt-image2__content--reverse {
  padding: 0 16px;
}
.gcf-lyt-detail__section--head .gcf-lyt-image2__content--reverse .link-box {
  margin-top: 16px;
  background: #f6f6f6;
  padding: 16px;
  border-radius: 4px;
}
.gcf-lyt-detail__section--head .gcf-lyt-image2__content--reverse .link-box li:not(:last-child) {
  margin-bottom: 6px;
}
.gcf-lyt-detail__section--head .gcf-lyt-image2__image {
  position: relative;
}

.gcf-lyt-detail__section--head__category {
  margin-top: 16px;
  font-size: 14px;
}
.gcf-lyt-detail__section--head__category > a {
  color: #1e50a2;
}
.gcf-lyt-detail__section--head__category > a:hover {
  text-decoration: underline;
}

.gcf-lyt-detail__tags {
  display: flex;
  margin-top: 16px;
}

.gcf-lyt-detail__tags-name {
  min-width: 70px;
  font-size: 14px;
  line-height: 30px;
}

.gcf-lyt-detail__tags-name__icon {
  margin-right: 0.25em;
  vertical-align: text-bottom;
}

.gcf-lyt-detail__tags-body {
  margin-top: 0;
}

.gcf-lyt-detail__block,
.gcf-lyt-detail__block2 {
  box-sizing: border-box;
  margin-top: 28px;
  width: 100%;
}

details,
summary {
  pointer-events: none;
}

.gcf-lyt-detail__comment {
  margin-top: 16px;
}

.gcf-lyt-detail__comment-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gcf-lyt-detail__comment-number {
  display: flex;
}
.gcf-lyt-detail__comment-number i {
  color: #6b6b6b;
  font-size: 18px;
}
.gcf-lyt-detail__comment-number p {
  margin-left: 7px;
}

.gcf-lyt-detail__comment-none-header {
  display: flex;
}
.gcf-lyt-detail__comment-none-header i {
  color: #6b6b6b;
}
.gcf-lyt-detail__comment-none-header p {
  margin-left: 8px;
}

.gcf-lyt-detail__comment-none-text {
  color: #6b6b6b;
  font-size: 14px;
}

.gcf-lyt-detail__comment-not {
  margin-top: 14px;
  color: #6b6b6b;
}
.gcf-lyt-detail__comment-not p {
  font-size: 14px;
}
.gcf-lyt-detail__comment-not a {
  color: #1e50a2;
}
.gcf-lyt-detail__comment-not a:hover {
  text-decoration: underline;
}

.gcf-lyt-detail__comment-not-modal-link {
  cursor: pointer;
}

.gcf-lyt-detail__detail-title {
  margin-top: 10px;
}
.gcf-lyt-detail__detail-title .toggle-controller {
  position: relative;
  cursor: pointer;
  pointer-events: auto;
  color: #1e50a2;
  display: inline-block;
  text-align: right;
  margin-top: 6px;
}
.gcf-lyt-detail__detail-title .toggle-controller::after {
  position: absolute;
  content: "";
  top: -5px;
  bottom: 0;
  margin: auto;
  width: 6px;
  height: 6px;
  border-top: 2px solid #1e50a2;
  border-left: 2px solid #1e50a2;
  transition: 0.2s;
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}
.gcf-lyt-detail__detail-title .toggle-controller.-open::after {
  top: 2px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.reply-display-others {
  margin-left: 15px;
}

.gcf-lyt-detail__comment-button-wrapper {
  text-align: center;
  margin-top: 16px;
}
.gcf-lyt-detail__comment-button-wrapper .gcf-lyt-detail__comment-button {
  height: 45px;
  line-height: 45px;
  background-color: white;
  border: 2px solid #2e792d;
  color: #2e792d;
  border-radius: 4px;
  display: inline-block;
}

.gcf-lyt-detail__comment-readmore {
  text-align: right;
  color: #1e50a2;
  cursor: pointer;
}
.gcf-lyt-detail__comment-readmore .toggle-controller {
  position: relative;
  cursor: pointer;
  pointer-events: auto;
  color: #1e50a2;
  display: inline-block;
  text-align: left;
}
.gcf-lyt-detail__comment-readmore .toggle-controller::after {
  position: absolute;
  content: "";
  top: -5px;
  bottom: 0;
  right: 5px;
  margin: auto;
  width: 6px;
  height: 6px;
  border-top: 2px solid #1e50a2;
  border-left: 2px solid #1e50a2;
  transition: 0.2s;
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}
.gcf-lyt-detail__comment-readmore .toggle-controller.-open::after {
  top: 2px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.gcf-lyt-detail__badge {
  display: inline-block;
  box-sizing: border-box;
  background-color: #f6f6f6;
  border-radius: 16px;
  height: 30px;
  line-height: 30px;
  width: 88px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
}

.gcf-txt-link2 {
  margin-top: 12px;
}

.gcf-lyt-detail__quantity-container {
  display: block;
}

.gcf-lyt-detail__target-amount {
  margin-top: 8px;
}

.gcf-lyt-detail-total {
  background: #f6f6f6;
  width: 100%;
  text-align: center;
  padding: 16px 0;
}
.gcf-lyt-detail-total:not(:first-child) {
  border-left: 2px solid #ffffff;
}
.gcf-lyt-detail-total:first-child {
  border-radius: 4px 0 0 4px;
}
.gcf-lyt-detail-total:last-child {
  border-radius: 0 4px 4px 0;
}
.gcf-lyt-detail-total dd {
  line-height: 1.1;
  font-weight: bold;
  margin-top: 8px;
}
.gcf-lyt-detail-total .soon .gcf-lyt-detail-total__quantity,
.gcf-lyt-detail-total .soon .gcf-lyt-detail-total__text,
.gcf-lyt-detail-total .deadline .gcf-lyt-detail-total__quantity,
.gcf-lyt-detail-total .deadline .gcf-lyt-detail-total__text {
  color: #e8000a;
}

.gcf-lyt-detail-total__title {
  font-size: 16px;
}

.gcf-lyt-detail-total__quantity {
  font-size: 20px;
}

.gcf-lyt-detail-total__quantity2,
.gcf-lyt-detail-total__text2 {
  font-size: 14px;
}

.gcf-lyt-detail__quantity {
  display: inline-block;
  margin-top: 8px;
  font-size: 36px;
  font-weight: bold;
}

.gcf-lyt-detail__text {
  font-size: 23px;
  font-weight: bold;
}

.gcf-lyt-detail__soon {
  position: absolute;
  top: 0;
  left: 16px;
  width: 112px;
  height: 38px;
}

.gcf-lyt-detail__complete {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 64px;
  height: 64px;
}

.gcf-txt-link2 {
  margin-top: 14px;
}

/* lst */
.gcf-lst-detail + .gcf-lst-sns {
  margin-top: 24px;
  justify-content: flex-start;
}
.gcf-lst-detail + .gcf-lst-sns > li {
  margin: 5px 5px 0 0;
}
.gcf-lst-detail + .gcf-lst-sns li + li {
  margin-left: 0;
}
.gcf-lst-detail + .gcf-lst-sns .gcf-btn-sns--google,
.gcf-lst-detail + .gcf-lst-sns .gcf-btn-sns--x {
  height: 28px;
  line-height: 28px;
  width: 80px;
}

.gcf-lst-detail__title {
  background-color: #e5e5e5;
  border-radius: 18px;
  display: inline-block;
  font-size: 10px;
  font-weight: bold;
  line-height: 1.5;
  margin: auto 0;
  padding: 4px 9px 3px 10px;
}

.gcf-lst-detail__price {
  font-size: 28px;
  font-weight: bold;
}
.gcf-lst-detail__price span {
  font-size: 12px;
  line-height: 1.5;
}
.gcf-lst-detail__price + .gcf-lst-detail__title {
  margin-top: 9px;
}

.gcf-lst-detail__num-of-people {
  display: inline-block;
  font-size: 22px;
  font-weight: bold;
  margin-left: 5px;
  vertical-align: middle;
}
.gcf-lst-detail__num-of-people span {
  font-size: 9px;
}

.gcf-ttl-h2 + .gcf-lyt-detail__block {
  margin-top: 24px;
}

/* bx */
.gcf-bx-info .gcf-bx-info__title-wrapper {
  border-left: 5px solid #2e792d;
  padding-left: 16px;
}
.gcf-bx-info .gcf-bx-info__title {
  width: 100%;
}
.gcf-bx-info .gcf-bx-info__border {
  border: 1px solid #e5e5e5;
  width: 100%;
  margin-top: 13px;
}
.gcf-bx-info .gcf-bx-info__date {
  width: 100%;
}
.gcf-bx-info .gcf-bx-info__date:nth-child(n) {
  margin-top: 0;
}
.gcf-bx-info .gcf-lyt-detail__block {
  width: 100%;
  order: 2;
}
.gcf-bx-info .gcf-bx-info__image {
  width: 100%;
}
.gcf-bx-info .lyt-image:only-child {
  width: 100%;
}

.gcf-lyt-detail_clap-button-annotation {
  color: #6b6b6b;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-top: 24px;
}
.gcf-lyt-detail_clap-button-annotation::before, .gcf-lyt-detail_clap-button-annotation::after {
  content: "";
  width: 2px;
  background-color: #e5e5e5;
}
.gcf-lyt-detail_clap-button-annotation::before {
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
  margin-right: 16px;
}
.gcf-lyt-detail_clap-button-annotation::after {
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  margin-left: 16px;
}

.gcf-lyt-detail_clap-button-wrapper {
  position: relative;
}

.gcf-lyt-detail_clap-button {
  display: flex;
  align-items: center;
  border-radius: 100px;
  cursor: pointer;
  border: 2px solid #e5e5e5;
  background: #ffffff;
  color: #6b6b6b;
  position: relative;
}
.gcf-lyt-detail_clap-button .gcf-lyt-detail_clap-image .not-clicked-image {
  width: 27px;
}
.gcf-lyt-detail_clap-button .gcf-lyt-detail_clap-image .clicked-image {
  display: none;
}
.gcf-lyt-detail_clap-button .gcf-lyt-detail_clap-number {
  overflow-wrap: anywhere;
  text-align: left;
  font-size: 16px;
}
.gcf-lyt-detail_clap-button .gcf-lyt-detail_clap-button-text {
  margin: 0 8px;
  font-size: 16px;
}
.gcf-lyt-detail_clap-button .gcf-lyt-detail_clap-tooltip {
  position: absolute;
  bottom: 50px;
  padding: 25px 15px 30px;
  border-radius: 8px;
  background-color: rgba(43, 43, 43, 0.6);
  color: #fff;
  font-size: 14px;
  width: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
.gcf-lyt-detail_clap-button .gcf-lyt-detail_clap-tooltip::before {
  display: inline-block;
  position: absolute;
  bottom: -10px;
  content: "";
  border: 10px solid transparent;
  border-top-color: rgba(43, 43, 43, 0.6);
  border-bottom-width: 0;
  width: 0;
  left: 70px;
}
.gcf-lyt-detail_clap-button:disabled {
  pointer-events: none;
  cursor: default;
}
.gcf-lyt-detail_clap-button.clicked {
  color: #2e792d;
  background: #e7f2ed;
  border-color: #ceddd6;
}
.gcf-lyt-detail_clap-button.clicked .not-clicked-image {
  display: none;
}
.gcf-lyt-detail_clap-button.clicked .clicked-image {
  display: block;
  width: 27px;
}

.cheer-message {
  display: none;
  opacity: 0;
  background: #ffffff;
  box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.16);
  padding: 16px;
  border-radius: 4px;
  position: absolute;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
  bottom: 0;
  text-align: center;
}
.cheer-message::before {
  content: "";
  border-color: transparent #fff #fff #fff;
  border-width: 8px;
  border-style: solid;
  width: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  left: 175px;
  bottom: -6px;
  margin: -6px 0 0 -5px;
  box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.16);
  z-index: 100;
}
.cheer-message::after {
  content: "";
  position: absolute;
  left: 175px;
  margin: -6px 0 0 -10px;
  height: 20px;
  width: 26px;
  bottom: 0;
  background-color: #ffffff;
  z-index: 101;
}

.gcf-lyt-detail__divider {
  margin: 24px 0;
  border-bottom: 1px solid #e5e5e5;
}

.gcf-lyt-detail__top-image {
  text-align: center;
}

.gcf-lyt-detail__block.-simulation {
  border-radius: 4px;
  background-color: #f6f6f6;
}
.gcf-lyt-detail__block.-simulation .gcf-simulation-easysimulater-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gcf-lyt-detail__block.-simulation .gcf-simulation-easysimulater-form > div {
  flex: 1;
  box-sizing: border-box;
}
.gcf-lyt-detail__block.-simulation .gcf-simulation-easysimulater-form > div.-family {
  flex: 1;
}
.gcf-lyt-detail__block.-simulation .gcf-simulation-easysimulater-form select {
  padding: 10px;
  width: 100%;
  border: 1px solid #c8c8c8;
  border-radius: 4px;
}
.gcf-lyt-detail__block.-simulation .txtlink-right {
  text-align: right;
  font-size: 14px;
  margin: 0;
}
.gcf-lyt-detail__block.-simulation .txtlink-right > a {
  background: url(/img/icon_arrow_anchor_blue.svg) right center no-repeat;
  background-size: 0.7em;
  padding-right: 1em;
  color: #1e50a2;
}
.gcf-lyt-detail__block.-simulation .txtlink-right > a:hover {
  text-decoration: underline;
}
.gcf-lyt-detail__block .gcf-simulation__title {
  color: #2e792d;
  margin: 0;
  text-align: center;
}
.gcf-lyt-detail__block .gcf-simulation-easysimulater {
  border-radius: 4px;
  margin-top: 16px;
  border-top: 1px solid #e5e5e5;
}
.gcf-lyt-detail__block .gcf-simulation-easysimulater__box .txtlink-right {
  display: none;
}
.gcf-lyt-detail__block .gcf-simulation-easysimulater__box.-show .txtlink-right {
  display: block;
}
.gcf-lyt-detail__block .gcf-simulation-easysimulater__title {
  margin: 16px 0 10px;
  font-weight: bold;
  text-align: center;
}
.gcf-lyt-detail__block .gcf-simulation-easysimulater__result {
  text-align: center;
  padding: 0;
  margin: 10px 0 0;
}
.gcf-lyt-detail__block .gcf-simulation-easysimulater__result-amount {
  color: #ad0003;
  font-weight: bold;
  margin-left: 5px;
}
.gcf-lyt-detail__block .gcf-simulation-easysimulater__result-amount span {
  font-size: 1.5em;
}

.mB40 {
  margin-bottom: 40px;
}
.mB40 h4 {
  margin-top: 10px;
}
.mB40 p {
  margin-top: 16px;
}
.mB40 img {
  margin-top: 16px;
}

.mT10 {
  margin-top: 10px;
}

.mT20 {
  margin-top: 30px;
}

.mT30 {
  margin-top: 30px;
}

.mB-10 {
  margin-bottom: 10px;
}

.mB20 {
  margin-bottom: 20px;
}

.mB30 {
  margin-bottom: 30px;
}

.mL10 {
  margin-left: 10px;
}

.lineU6 {
  margin-bottom: 16px;
}

.text-center {
  text-align: center;
}

.gcf-ttl-h4 {
  margin-top: 18px;
}

div > iframe {
  width: 100% !important;
  height: 230px !important;
}
div > iframe .ytp-cued-thumbnail-overlay-image {
  width: 100% !important;
  height: 230px !important;
}

.gcf-nv-tab__content {
  border: none;
  box-sizing: border-box;
  display: none;
  padding: 15px 0 20px;
  position: absolute;
}
.gcf-nv-tab__content.is-active {
  display: block;
  position: initial;
}
.gcf-nv-tab__content .gcf-lyt-image__content--reverse.-text {
  flex: 1;
}

.gcf-lyt-detail__section ol {
  margin-top: 10px !important;
}
.gcf-lyt-detail__section .gcf-nv-tab__button {
  color: black;
  background-color: #f6f6f6;
  box-sizing: border-box;
  border: 1px solid #c8c8c8;
  border-right: none;
  border-left: none;
  display: block;
  font-size: 15px;
  width: 50%;
  margin: 0;
  flex-grow: 1;
  padding: 0;
  border-radius: 0;
}
.gcf-lyt-detail__section .gcf-nv-tab__button.is-active {
  background-color: #fff;
  border-bottom: none;
  border-top: 2px solid #2e792d;
  font-weight: normal;
}
.gcf-lyt-detail__section .gcf-nv-tab__button.is-pointer {
  cursor: pointer;
}
.gcf-lyt-detail__section .gcf-nv-tab__button:first-child {
  border-right: 1px solid #c8c8c8;
}
.gcf-lyt-detail__section .gcf-nv-tab__button:first-child.is-active {
  border-left: none;
}
.gcf-lyt-detail__section .gcf-nv-tab__button:last-child {
  border-left: 1px solid #c8c8c8;
}
.gcf-lyt-detail__section .gcf-nv-tab__button:last-child.is-active {
  border-right: none;
}
.gcf-lyt-detail__section .gcf-ttl-h2 {
  margin-top: 40px;
}
.gcf-lyt-detail__section .gcf-txt {
  margin: 0;
}
.gcf-lyt-detail__section .gcf-txt + .gcf-txt {
  margin-top: 8px;
}
.gcf-lyt-detail__section .txt-link {
  font-size: 16px;
}
.gcf-lyt-detail__section .txt-link > a[target=_blank]:before {
  top: 0.3em;
}

.gcf-lst-bx__item {
  position: relative;
  margin-top: 0;
}
.gcf-lst-bx__item:nth-child(n+2)::before {
  content: "";
  margin: 24px 0;
  display: block;
}

.gcf-lyt-detail__read-more {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(180deg, hsla(0, 0%, 100%, 0) 0, hsla(0, 0%, 100%, 0) 1%, hsla(0, 0%, 100%, 0.85) 30%, #fff 99%);
  text-align: left;
  display: none;
  text-align: right;
  color: #1e50a2;
}
.gcf-lyt-detail__read-more span {
  margin-top: 30px;
  display: inline-block;
}
.gcf-lyt-detail__read-more i {
  font-size: 8px;
}

.is-display {
  display: block;
}

.is-fixed {
  box-sizing: border-box;
  position: fixed;
  top: 0;
  z-index: 10;
}

.gcf-nv-tab__button-progress-number {
  font-size: 12px;
  background: #2e792d;
  color: white;
  border-radius: 30px;
  min-width: 18px;
  display: inline-block;
  padding: 5px 3px 6px;
  line-height: 1;
}

#contents {
  padding: 0 16px;
}
#contents b {
  font-size: 0.66666667em;
}
#contents h2 {
  margin-top: 39px;
}
#contents h3 {
  margin-top: 37px;
}
#contents + .bg-gray {
  padding: 0 16px;
  margin-top: 37px;
}
#contents + .bg-gray img {
  margin: 8px 0;
}

.modal-component__content .payment-method {
  margin-bottom: 20px;
}
.modal-component__content .payment-method p {
  font-size: 16px;
  font-weight: bold;
}
.modal-component__content .payment-method dl {
  margin-left: 15px;
}
.modal-component__content .payment-method dl + dl {
  margin-top: 16px;
}
.modal-component__content .payment-method dl dt {
  font-weight: bold;
}

.modal-component--new__content .contact h3 {
  font-size: 16px;
}
.modal-component--new__content .contact section {
  margin-top: 20px;
}
.modal-component--new__content .contact section:last-child {
  margin-bottom: 20px;
}

.comment-submit-completed-modal__content {
  text-align: center;
}
.comment-submit-completed-modal__content .modal-component__title {
  margin-bottom: 16px;
}
.comment-submit-completed-modal__content .modal-component__main-title {
  font-weight: bold;
}

.comment-submit-completed-modal__footer .btn-normal {
  width: 100%;
  border-color: #e5e5e5;
  color: #6b6b6b;
}

.comment-delete-confirm-modal__footer .btn-normal,
.reply-delete-confirm-modal__footer .btn-normal,
.donation-type-confirm-modal__footer .btn-normal {
  height: 48px;
  border-color: #e5e5e5;
  color: #6b6b6b;
}
.comment-delete-confirm-modal__footer .gcf-btn-positive,
.reply-delete-confirm-modal__footer .gcf-btn-positive,
.donation-type-confirm-modal__footer .gcf-btn-positive {
  height: 48px;
  border: none;
  line-height: 48px;
  font-size: 16px;
}

.donation-type-confirm-modal__footer {
  text-align: center;
}

.donation-type-confirm-modal__footer-link {
  margin-top: 16px;
  color: #1e50a2;
  cursor: pointer;
  font-size: 14px;
  display: inline-block;
}
.donation-type-confirm-modal__footer-link:hover {
  text-decoration: underline;
}

.js-progress-tab {
  border: none;
}

.detail-fixed-menu {
  width: 100vw;
  background: #f4f4f4;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 10;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
  transition: bottom 0.3s;
}
.detail-fixed-menu.outside {
  bottom: -40%;
}

.detail-fixed-menu__title {
  text-align: center;
  margin-top: 10px;
  font-size: 15px;
}

.detail-fixed-menu__button-box {
  display: flex;
  justify-content: center;
  margin: 6px 0 10px;
  padding: 0 16px;
}
.detail-fixed-menu__button-box .detail-fixed-menu_clap-button {
  display: flex;
  padding: 8px 16px;
  align-items: center;
  border-radius: 100px;
  cursor: pointer;
  border: 2px solid #e5e5e5;
  background: #ffffff;
  color: #6b6b6b;
  justify-content: center;
  max-width: 100px;
}
.detail-fixed-menu__button-box .detail-fixed-menu_clap-button .detail-fixed-menu__clap-number {
  margin-left: 8px;
  font-size: 16px;
  word-wrap: break-word;
  max-width: 38px;
}
.detail-fixed-menu__button-box .detail-fixed-menu_clap-button .detail-fixed-menu__clap-image {
  min-width: 2em;
}
.detail-fixed-menu__button-box .detail-fixed-menu_clap-button .detail-fixed-menu__clap-image .not-clicked-image {
  width: 27px;
}
.detail-fixed-menu__button-box .detail-fixed-menu_clap-button .detail-fixed-menu__clap-image .clicked-image {
  display: none;
}
.detail-fixed-menu__button-box .detail-fixed-menu_clap-button.clicked {
  color: #2e792d;
  background: #e7f2ed;
  border-color: #ceddd6;
}
.detail-fixed-menu__button-box .detail-fixed-menu_clap-button.clicked .not-clicked-image {
  display: none;
}
.detail-fixed-menu__button-box .detail-fixed-menu_clap-button.clicked .clicked-image {
  display: inline;
  width: 27px;
}
.detail-fixed-menu__button-box .cheer-message {
  width: 330px;
  left: 25px;
}
.detail-fixed-menu__button-box .cheer-message::before, .detail-fixed-menu__button-box .cheer-message::after {
  left: 50px;
}
.detail-fixed-menu__button-box .detail-fixed-menu_comment-button {
  padding: 0 calc(42px - 1em);
  margin-left: 8px;
  border-radius: 100px;
  cursor: pointer;
  border: 2px solid #e5e5e5;
  background: #ffffff;
  color: #6b6b6b;
  display: flex;
  align-items: center;
  line-height: 24px;
  width: 70%;
  justify-content: center;
}
.detail-fixed-menu__button-box .detail-fixed-menu_comment-button i {
  font-size: 24px;
}
.detail-fixed-menu__button-box .detail-fixed-menu_comment-text {
  font-size: 16px;
  margin: 0 8px;
  white-space: nowrap;
}
.detail-fixed-menu__button-box .detail-fixed-menu_comment-number {
  font-size: 16px;
  max-width: 30%;
  word-wrap: break-word;
}

.gcf-detail-donation-box {
  margin-top: 12px;
}
.gcf-detail-donation-box .gcf-txt-link2 {
  font-size: 14px;
  margin-top: 16px;
}

@-webkit-keyframes cheer {
  0% {
    opacity: 0;
    bottom: 20px;
  }
  3% {
    opacity: 1;
    bottom: 100px;
  }
  6% {
    opacity: 1;
    bottom: 80px;
  }
  80% {
    opacity: 1;
    bottom: 80px;
  }
  90% {
    opacity: 0;
    bottom: 80px;
  }
  100% {
    bottom: 20px;
  }
}

@keyframes cheer {
  0% {
    opacity: 0;
    bottom: 20px;
  }
  3% {
    opacity: 1;
    bottom: 100px;
  }
  6% {
    opacity: 1;
    bottom: 80px;
  }
  80% {
    opacity: 1;
    bottom: 80px;
  }
  90% {
    opacity: 0;
    bottom: 80px;
  }
  100% {
    bottom: 20px;
  }
}
@-webkit-keyframes cheerMobile {
  0% {
    opacity: 0;
    bottom: 0;
  }
  3% {
    opacity: 1;
    bottom: 86px;
  }
  6% {
    opacity: 1;
    bottom: 66px;
  }
  80% {
    opacity: 1;
    bottom: 66px;
  }
  90% {
    opacity: 0;
    bottom: 66px;
  }
  100% {
    bottom: 66px;
  }
}
@keyframes cheerMobile {
  0% {
    opacity: 0;
    bottom: 0;
  }
  3% {
    opacity: 1;
    bottom: 86px;
  }
  6% {
    opacity: 1;
    bottom: 66px;
  }
  80% {
    opacity: 1;
    bottom: 66px;
  }
  90% {
    opacity: 0;
    bottom: 66px;
  }
  100% {
    bottom: 66px;
  }
}
@media only screen and (max-width: 599px) and (max-device-width: 599px) {
  .modal-component__container {
    top: 43vh;
  }
  .modal-component__body {
    max-height: 60vh;
  }
  .other-comment__profile .other-comment__profile-name {
    font-size: 12px;
    line-height: 20px;
  }
  .other-comment__profile img {
    width: 16px;
  }
  .other-comment__profile-project-owner img {
    width: 20px;
    height: 20px;
  }
  .other-comment__profile-owner-name {
    font-size: 12px;
    width: 100%;
  }
  .other-comment__profile-name-wrapper {
    font-size: 12px;
  }
  .other-comment__profile-name-wrapper .other-comment__profile-name {
    max-width: 90%;
  }
  .my-comment__only-personally {
    padding: 3px 0 8px;
  }
  .my-comment__only-personally-text {
    font-size: 13px;
  }
  .my-comment__profile .my-comment__profile-name-wrapper {
    font-size: 12px;
    line-height: 20px;
  }
  .my-comment__profile .my-comment__profile-name-wrapper .my-comment__profile-name {
    max-width: 90%;
  }
  .my-comment__profile img {
    width: 16px;
  }
  .my-comment__content .my-comment__content-footer .my-comment__content-footer-delete-button {
    font-size: 12px;
  }
  .my-comment__content .my-comment__content-status p {
    font-size: 12px;
  }
  .login-input__wrapper .login-input__body .login-input__user-name,
  .login-input__wrapper .login-input__body .login-input__user-name-title {
    font-size: 12px;
    min-width: 15%;
  }
  .login-input__wrapper .login-input__body .login-input__user-name {
    width: 70%;
  }
  .login-input__wrapper .login-input__body .login-input__field {
    width: 90%;
    padding: 12px 16px;
    line-height: 24px;
    font-size: 16px;
  }
  .login-input__wrapper .login-input__body .login-input__field::-webkit-input-placeholder {
    font-size: 14px;
  }
  .login-input__wrapper .login-input__body .login-input__field:-ms-input-placeholder {
    font-size: 14px;
  }
  .login-input__wrapper .login-input__body .login-input__field::-ms-input-placeholder {
    font-size: 14px;
  }
  .login-input__wrapper .login-input__body .login-input__field::placeholder {
    font-size: 14px;
  }
  .login-input__wrapper .login-input__body .login-input__textarea-number {
    font-size: 10px;
    right: 18px;
    bottom: 24px;
  }
  .login-input__wrapper .login-input__body .login-input__button-wrapper .login-input__button {
    width: 100%;
  }
  .vald-error-txt {
    font-size: 12px;
  }
  .my-comment-reply,
  .other-comment-reply {
    margin-top: 8px;
  }
  .bx-tooltip__wrap {
    max-width: 390px;
  }
  .bx-tooltip__wrap .txt-link.-bottom {
    font-size: 12px;
  }
}
@media only screen and (max-width: 834px) and (max-device-width: 834px) {
  .modal-component__container {
    width: 93vw;
  }
  .label--exclusive.-sticker {
    top: 3px;
    left: 3px;
    font-size: 10px;
  }
  .card-product__title.is-over {
    max-height: 4.5em;
    overflow: hidden;
    position: relative;
  }
  .card-product__title.is-over:after {
    content: "...";
    color: transparent;
    display: inline-block;
    width: 3em;
    background: linear-gradient(-90deg, #fff, rgba(255, 255, 255, 0));
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .card-product .sts-type4,
  .card-product .sts-type5,
  .card-product .sts-type6 {
    font-size: 12px;
  }
  .card-product .sts-type7 {
    font-size: 12px;
  }
  .card-product .sts-type7:before {
    border-width: 16px;
  }
  .card-product .sts-type7 span {
    top: 4px;
    left: -2px;
  }
  .card-product .sts-type7.item-rank1, .card-product .sts-type7.item-rank2, .card-product .sts-type7.item-rank3 {
    left: 8px;
    width: 22px;
  }
  .card-product .sts-type7.item-rank1::before, .card-product .sts-type7.item-rank2::before, .card-product .sts-type7.item-rank3::before {
    border-width: 11px;
    border-bottom: 4px solid transparent;
  }
  .card-product__comment {
    display: inline-block;
    padding: 0 8px 12px;
  }
  .card-product__heart {
    top: -2px;
  }
  .card-product__heart > img {
    line-height: 1;
    width: 24px;
  }
  .card-product .city-symbol {
    display: none;
  }
  .gcf-cht-bar.gcf-cht-bar--right {
    height: 8px;
    margin: 2px 0 0;
  }
  .gcf-cht-bar.gcf-cht-bar--right .gcf-cht-bar__graph,
  .gcf-cht-bar.gcf-cht-bar--right .gcf-cht-bar__graph2 {
    height: 8px;
  }
  .gcf-cht-bar.gcf-cht-bar--right .gcf-cht-bar__number {
    font-size: 10px;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    height: 9px;
    line-height: 9px;
  }
  .transform-layout {
    box-shadow: none;
    border: none;
    border-bottom: solid 1px #e5e5e5;
    border-radius: 0;
  }
  .transform-layout .card-product__link {
    flex-direction: row;
  }
  .transform-layout .card-product__contents {
    padding: 0 0 0 16px;
  }
  .transform-layout .card-product__title {
    font-size: 14px;
  }
  .transform-layout .card-product__image {
    width: 100px;
    min-height: 0;
    flex-shrink: 0;
  }
  .transform-layout .card-product__img {
    height: auto;
  }
  .transform-layout .card-product__subtitle {
    background: none;
  }
  .transform-layout .card-product__subtitle-inner {
    padding: 0;
  }
  .transform-layout .card-product__complement {
    margin: 8px 0 0 116px;
  }
  .transform-layout .card-product__city {
    display: inline-block;
    height: auto;
    padding: 0;
    border-top: none;
    font-size: 12px;
    margin: 8px 0;
  }
  .transform-layout .card-product__city span {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .transform-layout .card-product__city span:after {
    content: "";
    width: 4px;
    height: 4px;
    margin-left: 4px;
    border-top: solid 1px;
    border-right: solid 1px;
    border-color: #1e50a2;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .card-city {
    height: 100%;
  }
  .card-city__title {
    display: flex;
    align-items: center;
    padding: 8px;
    margin-top: 0;
  }
  .card-city .card-city__cityimage {
    width: 42px;
    height: 42px;
    margin-right: 8px;
    flex-shrink: 0;
  }
  .card-city__name {
    font-size: 14px;
    letter-spacing: 0;
    text-align: left;
  }
  .card-city__info {
    font-size: 12px;
    padding: 8px;
    border-bottom: solid 1px #e5e5e5;
  }
  .card-city__info dl dt {
    width: 30%;
  }
  .card-city__info dl dd {
    width: 66%;
    padding-left: 4%;
  }
  .card-city__category {
    padding: 8px;
  }
  .card-city__category p {
    margin-bottom: 4px;
  }
  .card-article .sts-type7 {
    font-size: 12px;
  }
  .card-article .sts-type7:before {
    border-width: 16px;
  }
  .card-article .sts-type7 span {
    top: 4px;
    left: -2px;
  }
  .card-article .sts-type7.item-rank1, .card-article .sts-type7.item-rank2, .card-article .sts-type7.item-rank3 {
    left: 8px;
    width: 22px;
  }
  .card-article .sts-type7.item-rank1::before, .card-article .sts-type7.item-rank2::before, .card-article .sts-type7.item-rank3::before {
    border-width: 11px;
    border-bottom: 4px solid transparent;
  }
  .card-article__link {
    flex-direction: row !important;
  }
  .card-article__img {
    border-radius: 0 !important;
  }
  .card-article__image {
    height: auto;
    width: 160px;
    flex-shrink: 0;
  }
  .card-article__contents {
    padding: 12px 8px;
  }
  .grid .grid__block {
    width: 50%;
    box-sizing: border-box;
  }
  .grid-2--sp {
    justify-content: space-between;
  }
  .grid-2--sp .grid__block {
    width: calc(50% - 6px);
  }
  .grid-2--sp .grid__block:not(:nth-child(-n+2)) {
    margin-top: 16px;
  }
  .grid-3.sld__list .grid__block {
    width: 212px;
    margin-right: 12px;
  }
  .grid-4.sld__list .grid__block {
    width: 212px;
    margin-right: 12px;
  }
  .grid-6.sld__list .grid__block {
    width: 161px;
    margin-right: 12px;
  }
  .grid-7.sld__list .grid__block {
    width: 88px;
    margin-right: 12px;
  }
  .grid-col .grid__block {
    width: 100%;
  }
  .grid-col--sp .grid__block {
    width: 100%;
  }
  .grid-feature .grid__block {
    width: calc(50% - 6px);
    margin-right: 12px;
  }
  .grid-feature .grid__block:nth-child(2n+1) {
    margin-right: 0;
  }
  .grid-feature .grid__block:first-child {
    width: 100%;
  }
  .grid-feature .grid__block:last-child {
    display: none;
  }
  .grid-ranking .grid__block {
    width: calc(50% - 6px);
    margin-right: 12px;
  }
  .grid-ranking .grid__block:nth-child(2n+1) {
    margin-right: 0;
  }
  .grid-ranking .grid__block:first-child {
    width: 100%;
  }
  .layout-column-2__main .grid-3.sld__list .grid__block {
    width: 161px;
    margin-right: 12px;
  }
  .layout-column-2__main .grid-3:not(.sld__list) .grid__block {
    width: calc(50% - 6px);
    margin-right: 12px;
  }
  .layout-column-2__main .grid-3:not(.sld__list) .grid__block:nth-child(2n) {
    margin-right: 0;
  }
  .card-product__image {
    min-height: 102px;
  }
  .gcf-overview-content {
    padding-bottom: 20px;
  }
  .gcf-lyt-detail__section--head .gcf-lyt-image2__content--reverse .link-box li:not(:last-child) {
    margin-bottom: 14px;
  }
  .gcf-lyt-detail__section--head .gcf-lyt-image2__content--reverse .link-box li {
    font-size: 14px;
  }
  #products_list {
    scroll-margin-top: 150px;
  }
  .gcf-lyt-detail__comment-none-text {
    margin-top: 14px;
  }
  .gcf-lyt-detail__detail-title {
    font-size: 14px;
  }
  .gcf-lyt-detail__detail-title .toggle-controller {
    width: 130px;
  }
  .gcf-lyt-detail__detail-title .toggle-controller::after {
    left: 3px;
  }
  .gcf-lyt-detail__reply-content {
    margin-left: 20px;
  }
  .gcf-lyt-detail__comment-button-wrapper .gcf-lyt-detail__comment-button {
    width: 100%;
  }
  .gcf-lyt-detail__comment-readmore {
    font-size: 14px;
  }
  .gcf-lyt-detail__comment-readmore .toggle-controller {
    width: 100%;
    margin-right: 1.5em;
  }
  .gcf-txt-link {
    font-size: 14px;
  }
  .gcf-bx-info {
    position: relative;
  }
  .gcf-bx-info .gcf-bx-info__title {
    font-size: 20px;
  }
  .gcf-lyt-detail_clap-button-annotation::before, .gcf-lyt-detail_clap-button-annotation::after {
    height: 40px;
  }
  .gcf-lyt-detail_clap-button {
    margin: 16px auto 0;
    padding: 8px 16px;
  }
  .cheer-message {
    left: 0;
  }
  .cheer-message.active {
    -webkit-animation: cheerMobile 4s ease-in-out;
            animation: cheerMobile 4s ease-in-out;
  }
  .gcf-lyt-detail__block.-simulation {
    padding: 16px;
    box-sizing: border-box;
    width: auto;
  }
  .gcf-lyt-detail__block.-simulation .gcf-simulation-easysimulater-form > div {
    width: 100%;
  }
  .gcf-lyt-detail__block.-simulation .gcf-simulation-easysimulater-form > div:first-child {
    margin-right: 10px;
  }
  .gcf-lyt-detail__block.-simulation .gcf-simulation-easysimulater-form > div.-income {
    flex: 0.5;
  }
  .gcf-lyt-detail__block.-simulation .gcf-simulation-easysimulater-form select {
    font-size: 14px;
  }
  .gcf-lyt-detail__block .gcf-simulation-easysimulater {
    flex-direction: column;
  }
  .gcf-lyt-detail__block .gcf-simulation-easysimulater .txtlink-right {
    margin-top: 8px;
  }
  .gcf-lyt-detail__section .gcf-nv-tab__button {
    height: 55px;
  }
  .gcf-lst-bx__item:nth-child(n+2)::before {
    border: 6px solid #e5e5e5;
    -webkit-transform: translate(-20px);
            transform: translate(-20px);
    width: 100vw;
  }
  .gcf-nv-tab-wrapper {
    height: 55px;
  }
  .gcf-nv-tab {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    transition: all 0.3s ease-out;
    height: 55px;
  }
  .is-fixed {
    width: 100vw;
    left: 0;
  }
  .fixed-hide {
    top: -70px !important;
  }
  .gcf-nv-tab__button-progress-number {
    margin-left: 4px;
  }
  .modal-component__content .payment-method dl {
    font-size: 14px;
  }
  .modal-component__content a {
    font-size: 14px;
  }
  .modal-component--new__content a {
    font-size: 14px;
  }
  .comment-submit-completed-modal__content .modal-component__title {
    font-size: 14px;
  }
  .comment-submit-completed-modal__content .modal-component__main-title {
    font-size: 16px;
  }
}
@media only screen and (min-width: 835px), (min-device-width: 835px) {
  .modal-component__body.-size-auto {
    width: auto;
    max-width: 810px;
    padding: 32px;
  }
  .modal-component__body.-size-s {
    width: 324px;
  }
  .modal-component__body.-size-m {
    width: 620px;
  }
  .modal-component__body.-size-l {
    width: 916px;
  }
  .modal-component__main h4 {
    font-size: 22px;
  }
  .card-product__title {
    line-height: 1.38;
    font-size: 16px;
  }
  .card-product__contents {
    padding: 20px 10px 16px;
  }
  .card-product__contents .lst-icon {
    margin-top: 8px;
  }
  .card-product__subtitle {
    margin-top: 16px;
  }
  .card-product__subtitle-inner {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    align-content: flex-start;
  }
  .card-product__text {
    margin-top: 16px;
  }
  .card-product__code {
    margin-top: 16px;
  }
  .card-product__heart {
    display: inline-block;
  }
  .card-product__city > img {
    border-radius: 4px;
    margin-right: 10px;
  }
  .card-product__city > span {
    letter-spacing: 0;
    margin-right: 15px;
  }
  .card-product__city > span > br {
    display: none;
  }
  .card-product__complement {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    align-content: flex-start;
  }
  .card-project__title {
    line-height: 1.38;
    font-size: 16px;
  }
  .card-project__contents {
    padding: 20px 10px 16px;
  }
  .card-project__contents .lst-icon {
    margin-top: 8px;
  }
  .card-project:before {
    max-width: 244px;
    width: 32%;
  }
  .card-project__img.lazyload, .card-project__img.lazyloading {
    height: 138px;
  }
  .card-project__col {
    margin: 68px 0 0 0;
    max-width: 244px;
    width: 100%;
    box-sizing: border-box;
  }
  .card-project__col:nth-child(1), .card-project__col:nth-child(2) {
    margin-top: 0;
  }
  .card-project__col:nth-child(3) {
    margin-top: 0;
  }
  .card-project__col .card-project__complete {
    height: 70px;
    width: 70px;
    left: 8px;
  }
  .card-project__col .card-project__soon {
    top: 8px;
    left: 11px;
    width: 88px;
    height: 30px;
    border-radius: 0 0 8px 8px;
  }
  .card-project__label {
    width: 235px;
    height: 30px;
    padding: 8px;
  }
  .card-project__label .card-project__text {
    font-size: 14px;
  }
  .card-project a:hover .card-project__image {
    opacity: 0.85;
  }
  .card-project a:hover .card-project__name {
    color: #1e50a2;
    text-decoration: underline;
  }
  .card-project__remind--complete, .card-project__remind--soon {
    line-height: 1.7;
  }
  .card-project__name {
    font-size: 16px;
  }
  .card-project__detail {
    max-width: 100%;
  }
  .card-project__pref {
    font-size: 14px;
  }
  .card-project__total {
    font-size: 14px;
  }
  .card-project__text {
    font-size: 18px;
    font-weight: bold;
    margin-top: 2px;
  }
  .card-project__badge {
    width: 56px;
    height: 18px;
  }
  .card-project__quantity {
    font-size: 20px;
    letter-spacing: 0;
  }
  .card-project__progress {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    overflow: hidden;
  }
  .card-project__progress > div:first-child {
    flex: none;
  }
  .card-project__progress > div:nth-child(2) {
    flex: none;
    min-width: 130px;
  }
  .card-project__favorite-button {
    border-radius: 5px;
    font-size: 16px;
    height: 40px;
    box-sizing: border-box;
  }
  .card-project__end-button {
    border-radius: 5px;
    font-size: 14px;
    height: 32px;
    margin-top: 20px;
    padding-top: 6px;
  }
  .card-project__end {
    font-size: 14px;
    margin-left: 5px;
  }
  .card-project__row {
    display: flex;
    align-items: center;
  }
  .card-project__lead {
    display: inline-block;
    width: 64px;
  }
  .card-project .goods-col_name {
    margin-top: 10px;
  }
  .card-project .chart-bar {
    margin: 12px 0 16px 0;
  }
  .grid-6 .card-product__contents {
    padding: 14px 10px 10px;
  }
  .grid-6 .card-product__city img {
    display: none;
  }
  .grid-6 .sts-type4,
  .grid-6 .sts-type5,
  .grid-6 .sts-type6 {
    font-size: 16px;
  }
  .grid-7 .card-product__subtitle {
    margin: 0;
  }
  .grid-7 .card-product__subtitle-inner {
    margin: 0;
  }
  .grid-7 .card-product__price {
    font-size: 14px;
  }
  .grid-7 .card-product .sts-type4,
  .grid-7 .card-product .sts-type5,
  .grid-7 .card-product .sts-type6 {
    font-size: 16px;
  }
  .grid-ranking .grid__block:nth-child(n+4) .card-product__contents {
    padding: 14px 10px 10px;
  }
  .card-city__title {
    line-height: 1.38;
    font-size: 16px;
  }
  .card-city__contents {
    padding: 20px 10px 16px;
  }
  .card-city__contents .lst-icon {
    margin-top: 8px;
  }
  .card-city__image {
    height: 166px;
  }
  .card-city__cityimg {
    position: absolute;
    top: -86px;
    right: 0;
    left: 0;
    margin: auto;
    width: 78px;
  }
  .card-city__info dl dt,
  .card-city__info dl dd {
    padding: 8px 0;
    border-bottom: solid 1px #e5e5e5;
  }
  .card-city__info dl dd {
    width: 73%;
    padding-left: 7%;
  }
  .card-article__title {
    line-height: 1.38;
    font-size: 16px;
  }
  .card-article__contents {
    padding: 20px 10px 16px;
  }
  .card-article__contents .lst-icon {
    margin-top: 8px;
  }
  .sidebar-right .card--special-list {
    margin: 0;
  }
  .sidebar-right .card--special {
    width: 100%;
    margin: 20px 0 0;
  }
  .grid-3--pc {
    justify-content: space-between;
  }
  .grid-3--pc .grid__block {
    width: calc(33.3333333333% - 13.333px);
  }
  .grid-3--pc .grid__block:not(:nth-child(-n+3)) {
    margin-top: 16px;
  }
  .grid-3--pc:after {
    content: "";
    display: block;
    width: calc(33.3333333333% - 13.333px);
  }
  .grid-4 {
    margin-right: -20px;
  }
  .grid-4 .grid__block {
    width: 253px;
    margin-right: 20px;
  }
  .grid-4 .grid__block {
    box-sizing: border-box;
    margin-top: 28px;
  }
  .grid-6 {
    margin-right: -20px;
  }
  .grid-6 .grid__block {
    width: 162px;
    margin-right: 20px;
  }
  .grid-7 {
    margin-right: -20px;
  }
  .grid-7 .grid__block {
    width: 136px;
    margin-right: 20px;
  }
  .grid-feature {
    margin-right: -20px;
  }
  .grid-feature .grid__block {
    width: 344px;
    margin-right: 20px;
  }
  .grid-ranking {
    margin-right: -20px;
  }
  .grid-ranking .grid__block {
    margin-right: 20px;
  }
  .grid-ranking .grid__block:nth-child(-n+3) {
    width: 344px;
  }
  .grid-ranking .grid__block:nth-child(n+4) {
    width: 162px;
  }
  .layout-column-2__main .grid-3 {
    margin-right: -20px;
  }
  .layout-column-2__main .grid-3 .grid__block {
    width: 252px;
    margin-right: 20px;
  }
  .layout-column-2__main .grid-3 .card-product__image {
    min-height: 153px;
  }
  .row-gap--12-24 {
    margin-bottom: -24px;
  }
  .row-gap--12-24 > .grid__block {
    margin-bottom: 24px;
  }
  .row-gap--20--28 {
    margin-bottom: -28px;
  }
  .row-gap--20--28 li {
    margin-bottom: 28px;
  }
  .card-product__subtitle {
    margin: 12px 0;
  }
  .lst-icon {
    margin: 0;
  }
  .card-product__text {
    margin-top: 0;
  }
  .card-product__comment {
    margin-top: -10px;
    padding: 0 10px 10px;
  }
  .gcf-lyt-detail__pref .icn-office,
  .gcf-lyt-detail__pref .icon-location {
    font-size: 24px;
  }
  .gcf-lyt-detail__section {
    margin-top: 54px;
    padding: 0;
  }
  .gcf-lyt-detail__section:first-child {
    margin-top: 0;
  }
  .gcf-overview-content {
    padding-bottom: 24px;
  }
  .gcf-lyt-detail__section--head {
    margin-bottom: 64px;
  }
  .gcf-lyt-detail__section--head {
    padding-top: 2px;
  }
  .gcf-lyt-detail__section--head .gcf-lyt-image2 {
    margin-top: 24px;
  }
  .gcf-lyt-detail__section--head .gcf-lyt-image2__content--reverse {
    padding: 0;
    width: 100%;
    margin-top: -10px;
  }
  .gcf-lyt-detail__section--head .gcf-lyt-detail__block {
    padding: 0;
  }
  .gcf-lyt-detail__section--head > *:not(.gcf-lyt-image2) {
    padding: 0;
  }
  .gcf-lyt-detail__block,
  .gcf-lyt-detail__block2 {
    padding: 0;
  }
  .gcf-lyt-detail__block {
    margin-top: 24px;
  }
  .gcf-lyt-detail__block2 {
    margin-top: 48px;
  }
  #products_list {
    scroll-margin-top: 130px;
  }
  .gcf-lyt-detail__comment-none-text {
    margin-top: 16px;
  }
  .gcf-lyt-detail__detail-title .toggle-controller {
    width: 140px;
  }
  .gcf-lyt-detail__detail-title .toggle-controller::after {
    left: 0;
  }
  .gcf-lyt-detail__reply-content {
    margin-left: 40px;
  }
  .gcf-lyt-detail__comment-button-wrapper .gcf-lyt-detail__comment-button {
    width: 45%;
  }
  .gcf-lyt-detail__comment-readmore .toggle-controller {
    width: 170px;
  }
  .gcf-lyt-detail__badge {
    height: 32px;
    line-height: 32px;
    width: 96px;
    font-size: 16px;
  }
  .gcf-txt-link {
    font-size: 16px;
  }
  .gcf-lyt-detail__target-amount {
    margin-top: 16px;
  }
  .gcf-lyt-detail-total__quantity {
    font-size: 24px;
  }
  .gcf-lyt-detail-total__quantity2,
  .gcf-lyt-detail-total__text2 {
    font-size: 16px;
  }
  .gcf-lyt-detail__quantity {
    margin: 0;
    font-size: 44px;
  }
  .gcf-lyt-detail__text {
    font-size: 32px;
    margin-top: 5px;
  }
  .gcf-lyt-detail__soon {
    width: 128px;
    height: 44px;
    border-radius: 0 0 8px 8px;
  }
  .gcf-lyt-detail__complete {
    width: 88px;
    height: 88px;
  }
  .gcf-lyt-detail__price {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .gcf-lst-detail + .gcf-lst-sns {
    margin-top: 12px;
    height: 28px;
  }
  .gcf-lst-detail + .gcf-lst-detail {
    margin-top: 14px;
  }
  .gcf-lst-detail__title {
    font-size: 14px;
    padding: 5px 16px 4px;
  }
  .gcf-lst-detail__price {
    font-size: 44px;
    margin-top: 1px;
  }
  .gcf-lst-detail__price span {
    font-size: 16px;
  }
  .gcf-lst-detail__num-of-people {
    font-size: 30px;
    margin: 0;
  }
  .gcf-lst-detail__num-of-people span {
    font-size: 12px;
  }
  .gcf-bx-info .gcf-bx-info__title {
    font-size: 25px;
  }
  .gcf-bx-info .lyt-image:first-child:nth-last-child(2),
  .gcf-bx-info .lyt-image:first-child:nth-last-child(2) ~ .lyt-image {
    width: 388px;
  }
  .gcf-lyt-detail_clap-button-annotation::before, .gcf-lyt-detail_clap-button-annotation::after {
    height: 25px;
  }
  .gcf-lyt-detail_clap-button {
    margin: 24px auto 0;
    padding: 10px 24px;
  }
  .cheer-message {
    max-width: 330px;
    left: 220px;
  }
  .cheer-message.active {
    -webkit-animation: cheer 4s ease-in-out;
            animation: cheer 4s ease-in-out;
  }
  .gcf-lyt-detail__block.-simulation {
    padding: 24px;
  }
  .gcf-lyt-detail__block.-simulation .gcf-simulation-easysimulater-form > div:first-child {
    margin-right: 20px;
  }
  .gcf-lyt-detail__block.-simulation .gcf-simulation-easysimulater-form > div.-income {
    flex: 1;
  }
  div > iframe {
    height: 430px !important;
  }
  div > iframe .ytp-cued-thumbnail-overlay-image {
    width: 430px !important;
  }
  .gcf-lyt-detail__section .gcf-nv-tab__button {
    padding: 17px 16px;
  }
  .gcf-lst-bx__item:nth-child(n+2)::before {
    border: 2px solid #e5e5e5;
  }
  .is-fixed {
    width: 796px;
  }
  .fixed-hide {
    top: -50px;
  }
  .gcf-nv-tab__button-progress-number {
    margin-left: 8px;
  }
  #contents {
    padding: 0;
  }
  #contents h2 {
    margin-top: 50px;
  }
  #contents h3 {
    margin-top: 34px;
  }
  #contents + .bg-gray {
    margin-top: 34px;
    padding: 0;
  }
  .comment-submit-completed-modal__content .modal-component__main-title {
    font-size: 22px;
  }
  .gcf-detail-donation-box {
    width: 370px;
    margin: 12px auto 0;
    text-align: center;
  }
  .gcf-detail-donation-box .gcf-btn-positive {
    height: 44px;
    line-height: 44px;
    font-size: 16px;
  }
}
@media only screen and (min-width: 600px), (min-device-width: 600px) {
  .other-comment__profile .other-comment__profile-name {
    font-size: 14px;
    line-height: 28px;
  }
  .other-comment__profile img {
    width: 19px;
  }
  .other-comment__profile-project-owner img {
    width: 28px;
    height: 28px;
  }
  .other-comment__profile-name-wrapper .other-comment__profile-name {
    max-width: 95%;
  }
  .my-comment__only-personally {
    padding: 7px 0 12px;
  }
  .my-comment__only-personally-text {
    font-size: 14px;
  }
  .my-comment__profile .my-comment__profile-name-wrapper {
    font-size: 14px;
    line-height: 28px;
  }
  .my-comment__profile .my-comment__profile-name-wrapper .my-comment__profile-name {
    max-width: 95%;
  }
  .my-comment__profile img {
    width: 19px;
  }
  .my-comment__content .my-comment__content-footer .my-comment__content-footer-delete-button {
    font-size: 14px;
  }
  .my-comment__content .my-comment__content-status p {
    font-size: 14px;
  }
  .login-input__wrapper .login-input__body .login-input__user-name,
  .login-input__wrapper .login-input__body .login-input__user-name-title {
    font-size: 14px;
  }
  .login-input__wrapper .login-input__body .login-input__user-name {
    width: 85%;
  }
  .login-input__wrapper .login-input__body .login-input__field {
    width: calc(100% - 45px);
    padding: 10px 20px;
  }
  .login-input__wrapper .login-input__body .login-input__textarea-number {
    right: 16px;
    bottom: 18px;
    font-size: 14px;
  }
  .login-input__wrapper .login-input__body .login-input__button-wrapper .login-input__button {
    width: 45%;
  }
  .vald-error-txt {
    font-size: 14px;
  }
  .bx-tooltip.-kift .bx-tooltip__wrap {
    max-width: 528px;
  }
  .bx-tooltip.-kift .bx-tooltip__text {
    margin: 0 0 0 16px;
  }
  .bx-tooltip.-kift .bx-tooltip__top {
    display: flex;
    align-items: flex-start;
  }
  .bx-tooltip.-kift .bx-tooltip__bottom {
    padding: 24px 32px 24px 24px;
  }
  .bx-tooltip.-kift .bx-tooltip__bottom li + li {
    margin-top: 16px;
  }
  .bx-tooltip.-kift .bx-tooltip__arrow::before, .bx-tooltip.-kift .bx-tooltip__arrow::after {
    background-color: #fffade;
  }
  .bx-tooltip__wrap {
    padding: 37px 23px;
    cursor: default;
  }
  .bx-tooltip__wrap .txt-link.-bottom {
    font-size: 14px;
  }
  .bx-tooltip__text {
    font-size: 14px;
  }
}
@media all and (-ms-high-contrast: none) {
  .card-product__image {
    min-height: 1px;
  }
  .card-product__price-option p {
    line-height: 1;
  }
  .card-project__image {
    min-height: 1px;
  }
  .card-city__image {
    min-height: 1px;
  }
  .card-article__image {
    min-height: 1px;
  }
}
@media only screen and (min-device-width: 600px) {
  .gcf-bx-info .gcf-bx-info__image {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .gcf-bx-info .gcf-bx-info__image::before, .gcf-bx-info .gcf-bx-info__image::after {
    content: "";
    display: block;
    height: 0;
    width: 222px;
    order: 1;
  }
  .gcf-bx-info .lyt-image,
  .gcf-bx-info .lyt-image2__image {
    width: 252px;
    margin: 0;
  }
}