@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*:before,
*:after {
  box-sizing: border-box;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none;
  }
}
@media (min-width: 768px) {
  .d-md-block {
    display: none;
  }
}

.d-flex {
  display: flex;
  align-items: center;
}
.d-flex-between {
  justify-content: space-between;
}
.d-flex-res {
  flex-direction: column;
}
@media (min-width: 768px) {
  .d-flex-res {
    flex-direction: row;
  }
}

.fw-b {
  font-weight: bold;
}
.fw-n {
  font-weight: normal;
}

.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-color-main {
  color: #FFA127;
}
.text-hover-underline:hover {
  opacity: 0.7;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mt-1 {
  margin-top: 10px;
}
.mt-2 {
  margin-top: 20px;
}

.mb-1 {
  margin-bottom: 10px;
}
.mb-2 {
  margin-bottom: 20px;
}

h5 {
  font-size: 15px;
}

.badge-soldout::before {
  content: "";
  top: 0;
  left: 0;
  border-bottom: 5rem solid transparent;
  border-left: 5rem solid #dd0000;
  position: absolute;
  z-index: 100;
  pointer-events: none;
}
@media (min-width: 400px) {
  .badge-soldout::before {
    border-bottom: 7rem solid transparent;
    border-left: 7rem solid #dd0000;
  }
}
.badge-soldout::after {
  content: "SOLD";
  font-size: 100%;
  display: block;
  position: absolute;
  top: 1rem;
  left: 0.1rem;
  letter-spacing: 0.1em;
  transform: rotate(-45deg);
  color: #fff;
  z-index: 101;
  pointer-events: none;
}
@media (min-width: 400px) {
  .badge-soldout::after {
    font-size: 140%;
    top: 1.1rem;
    left: 0.1rem;
  }
}
.badge-soldout-small::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  border-bottom: 5.5rem solid transparent;
  border-left: 5.5rem solid #dd0000;
  z-index: 100;
}
@media (min-width: 768px) {
  .badge-soldout-small::before {
    border-bottom: 4.5rem solid transparent;
    border-left: 4.5rem solid #dd0000;
    top: 10px;
    left: 10px;
  }
}
.badge-soldout-small::after {
  content: "SOLD";
  font-size: 110%;
  display: block;
  position: absolute;
  top: 1.5rem;
  left: 0.7rem;
  letter-spacing: 0.1em;
  transform: rotate(-45deg);
  color: #fff;
  z-index: 101;
}
@media (min-width: 768px) {
  .badge-soldout-small::after {
    font-size: 90%;
    top: 1.5rem;
    left: 0.9rem;
  }
}

#result {
  width: 75%;
  position: fixed;
  top: 50vh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  pointer-events: none;
}
@media (min-width: 768px) {
  #result {
    position: absolute;
    width: 40%;
    transform: translate(-50%, 50%);
  }
}
#result .pull_result {
  border: 3px solid black;
  padding: 0.5em 2em 1em 2em;
  font-size: 0.8em;
  background-color: #FFA127;
  text-align: center;
  inset: 0;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  -webkit-animation: slide-in-anim 3s ease-out forwards;
          animation: slide-in-anim 3s ease-out forwards;
}
@media (min-width: 576px) {
  #result .pull_result {
    font-size: 1em;
    flex-direction: row;
    padding: 2em;
  }
}
#result .pull_result span {
  display: inline-block;
  height: 44px;
  position: relative;
}
#result .pull_result span::before {
  border-bottom: 2px solid #000;
  content: "";
  left: 8px;
  position: absolute;
  top: 25px;
  width: 13px;
  z-index: 1;
  transform: rotate(45deg);
  -webkit-animation: check_anim 0.1s linear both;
          animation: check_anim 0.1s linear both;
}
#result .pull_result span::after {
  border-bottom: 2px solid #000;
  content: "";
  position: absolute;
  z-index: 1;
  left: 15px;
  top: 21px;
  width: 24px;
  transform: rotate(-45deg);
}
#result .pull_result span i {
  background: #FFA127;
  display: inline-block;
  height: 44px;
  width: 44px;
  position: relative;
  vertical-align: top;
}
@media (min-width: 576px) {
  #result .pull_result span i {
    margin-right: 8px;
  }
}
#result .pull_result span i:after {
  background: #FFA127;
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  width: 36px;
  z-index: 2;
  -webkit-animation: width-anim 1.2s ease-in forwards;
          animation: width-anim 1.2s ease-in forwards;
}
@-webkit-keyframes width-anim {
  0% {
    width: 36px;
  }
  100% {
    width: 0;
  }
}
@keyframes width-anim {
  0% {
    width: 36px;
  }
  100% {
    width: 0;
  }
}
@-webkit-keyframes slide-in-anim {
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes slide-in-anim {
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.pagenation {
  margin-top: 20px;
  margin-bottom: 20px;
}
.pagenation > ul {
  justify-content: center;
  align-items: center;
}
.pagenation > ul li {
  border: solid 2px #000;
  width: 33px;
  height: 33px;
  line-height: 29px;
  border-radius: 50%;
  font-size: 14px;
}
.pagenation > ul li:not(:last-of-type) {
  margin-right: 10px;
}
.pagenation > ul li.active {
  background: #FFA127;
}

h2 {
  font-size: 18px;
}
@media (min-width: 768px) {
  h2 {
    font-size: 24px;
  }
}

.styles__list__simple {
  margin-top: 20px;
}
.styles__list__simple li {
  border-top: solid 1px #ccc;
  padding: 10px;
  position: relative;
}
.styles__list__simple li:last-of-type {
  border-bottom: solid 1px #ccc;
}
.styles__list__simple li .title {
  margin-bottom: 2px;
}
.styles__list__simple li .price {
  font-size: 15px;
  margin-bottom: 10px;
}
.styles__list__simple li div figure .img__owner {
  width: 45px;
  height: 45px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 5px;
  margin-bottom: 5px;
}
.styles__list__simple li div figure figcaption {
  font-size: 13px;
  font-weight: bold;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  max-width: 400px;
  margin-right: 10px;
}
.styles__list__simple li::after {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../images/icon__arrow.svg);
  background-repeat: no-repeat;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.styles__list__simple.non-deco li::after {
  content: inherit;
}

body {
  font-family: "MS Pゴシック", sans-serif;
  background: #f1f1f1;
  overflow-x: hidden;
  scroll-behavior: smooth;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body main {
  flex: 1;
}

a {
  display: block;
  text-decoration: none;
  color: #000;
  font-weight: bold;
}

.container {
  max-width: 1260px;
  margin: auto;
  padding: 0 10px;
}
.container-sp {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container-sp {
    width: 100%;
  }
}
@media (min-width: 576px) {
  .container-sp {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .container-sp {
    max-width: inherit;
    margin: 0;
    padding: 0;
  }
}
.container-default {
  background: #fff;
  border: solid 7px #000;
  padding: 30px;
  min-height: 32vh;
}
@media (min-width: 576px) {
  .container-default {
    min-height: 50vh;
  }
}

img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
}

li {
  list-style: none;
}

.fw-b {
  font-weight: bold;
}

.text__outline {
  display: inline-block;
  color: #ffffff; /* 文字の色 */
  font-size: 36pt; /* 文字のサイズ */
  letter-spacing: 6px; /* 文字間 */
  text-shadow: 3px 3px 0px #000000, -3px 3px 0px #000000, 3px -3px 0px #000000, -3px -3px 0px #000000, 3px 0px 0px #000000, 0px 3px 0px #000000, -3px 0px 0px #000000, 0px -3px 0px #000000; /* 文字の影 */
}

.btn__tag {
  margin-right: 10px;
  margin-bottom: 10px;
  color: #000;
  background: #fff;
  font-weight: bold;
  width: 120px;
  border-radius: 20px;
  height: 35px;
  line-height: 30px;
  border: solid 4px #000;
  transition: 0.3s;
}
.btn__tag:hover {
  color: white;
  border-color: #FF9100;
  background: black;
  border: solid 4px #FF9100;
}
.btn__more {
  background-color: #fff;
  border: solid 3px black;
  text-decoration: none;
  color: black;
  font-weight: bold;
  display: block;
  width: 140px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  position: absolute;
  top: 80px;
  right: 0;
  font-size: 14px;
}
@media (min-width: 576px) {
  .btn__more {
    top: 30px;
    font-size: 16px;
  }
}
.btn__more:hover {
  background-color: inherit;
  border: 0;
  background-image: url(../images/e0556-ore.svg);
  background-size: cover;
  width: 155px;
  height: 76px;
  line-height: 72px;
  margin-top: -10px;
  -webkit-animation: hurueru 0.2s;
          animation: hurueru 0.2s;
  text-shadow: 2px 2px 2px #ffffff, -2px 2px 2px #ffffff, 2px -2px 2px #ffffff, -2px -2px 2px #ffffff, 2px 0px 2px #ffffff, 0px 2px 2px #ffffff, -2px 0px 2px #ffffff, 0px -2px 2px #ffffff;
}
@-webkit-keyframes hurueru {
  0% {
    transform: translate(0px, 0px) rotateZ(0deg);
  }
  12% {
    transform: translate(5px, 5px) rotateZ(5deg);
  }
  24% {
    transform: translate(0px, 5px) rotateZ(0deg);
  }
  36% {
    transform: translate(5px, 0px) rotateZ(-5deg);
  }
  48% {
    transform: translate(0px, 0px) rotateZ(0deg);
  }
  60% {
    transform: translate(5px, 5px) rotateZ(5deg);
  }
  72% {
    transform: translate(0px, 5px) rotateZ(0deg);
  }
  84% {
    transform: translate(5px, 0px) rotateZ(-5deg);
  }
  100% {
    transform: translate(0px, 0px) rotateZ(0deg);
  }
}
@keyframes hurueru {
  0% {
    transform: translate(0px, 0px) rotateZ(0deg);
  }
  12% {
    transform: translate(5px, 5px) rotateZ(5deg);
  }
  24% {
    transform: translate(0px, 5px) rotateZ(0deg);
  }
  36% {
    transform: translate(5px, 0px) rotateZ(-5deg);
  }
  48% {
    transform: translate(0px, 0px) rotateZ(0deg);
  }
  60% {
    transform: translate(5px, 5px) rotateZ(5deg);
  }
  72% {
    transform: translate(0px, 5px) rotateZ(0deg);
  }
  84% {
    transform: translate(5px, 0px) rotateZ(-5deg);
  }
  100% {
    transform: translate(0px, 0px) rotateZ(0deg);
  }
}

header {
  background: #111;
  margin-bottom: 30px;
  width: 100%;
}
header .header__wrapper {
  display: flex;
  justify-content: space-between;
  border: 0;
  height: 60px;
  padding: 0;
}
@media (min-width: 576px) {
  header .header__wrapper {
    padding-right: 5px;
  }
}
header .header__wrapper .wrapper__logo {
  width: 28%;
  height: 100%;
  padding-left: 3px;
  display: flex;
  align-items: center;
}
header .header__wrapper .wrapper__logo img {
  display: block;
  width: 165px;
  height: auto;
}
@media (min-width: 400px) {
  header .header__wrapper .wrapper__logo {
    padding-left: 5px;
    width: 30%;
  }
}
@media (min-width: 576px) {
  header .header__wrapper .wrapper__logo {
    padding-left: 30px;
  }
}
@media (min-width: 768px) {
  header .header__wrapper .wrapper__logo {
    padding-left: 10px;
  }
}
header .header__wrapper nav {
  flex: 1;
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-left: 10px;
}
@media (min-width: 400px) {
  header .header__wrapper nav {
    padding-left: 15px;
  }
}
header .header__wrapper nav .wrapper__navBtn {
  width: 100%;
  display: flex;
  align-items: center;
}
@media (min-width: 400px) {
  header .header__wrapper nav .wrapper__navBtn {
    justify-content: flex-end;
  }
}
header .header__wrapper nav .wrapper__navBtn > a {
  color: #fff;
  font-size: 10px;
  border: 1px solid #fff;
  padding: 2px;
  width: 60px;
  transition: 0.3s;
}
@media (min-width: 330px) {
  header .header__wrapper nav .wrapper__navBtn > a {
    padding: 2px 5px;
  }
}
@media (min-width: 400px) {
  header .header__wrapper nav .wrapper__navBtn > a {
    margin-right: 10px;
    margin-left: 10px;
  }
}
@media (min-width: 576px) {
  header .header__wrapper nav .wrapper__navBtn > a {
    padding: 8px 5px;
    font-size: 12px;
    width: auto;
  }
}
header .header__wrapper nav .wrapper__navBtn > a:hover {
  background: #ff8800;
  color: #000;
}
header .header__wrapper nav .wrapper__nav {
  display: flex;
  align-items: center;
}
@media (min-width: 400px) {
  header .header__wrapper nav .wrapper__nav {
    justify-content: flex-end;
  }
}
header .header__wrapper nav .wrapper__nav .nav-item {
  padding: 7px 6px;
  position: relative;
  min-width: 50px;
}
header .header__wrapper nav .wrapper__nav .nav-item .nav-link {
  font-size: clamp(12px, 1vw, 16px);
  color: #fff;
}
header .header__wrapper nav .wrapper__nav .nav-item.login::after {
  content: "|";
  display: inline-block;
  width: 2px;
  height: 100%;
  position: absolute;
  right: 2px;
  top: 6px;
  color: #fff;
}
header .header__wrapper nav .wrapper__nav .nav-item.has-child {
  max-width: 70px;
  font-size: 10px;
}
@media (min-width: 768px) {
  header .header__wrapper nav .wrapper__nav .nav-item.has-child {
    max-width: 120px;
  }
}
header .header__wrapper nav .wrapper__nav .nav-item.has-child .name {
  word-break: break-all;
  -webkit-line-clamp: 2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  max-height: 36px;
  max-width: 108px;
}
@media (max-width: 399.98px) {
  header .header__wrapper nav .wrapper__nav .nav-item.has-child .name {
    height: 20px;
    overflow-y: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  }
}
@media (min-width: 1200px) {
  header .header__wrapper nav .wrapper__nav .nav-item.has-child .name {
    font-size: 15px;
  }
}
header .header__wrapper nav .wrapper__nav .nav-item.has-child::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
  z-index: 1000;
  position: absolute;
  top: 52px;
  right: 25px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s;
}
@media (min-width: 400px) {
  header .header__wrapper nav .wrapper__nav .nav-item.has-child::before {
    right: 15px;
    top: 54px;
  }
}
header .header__wrapper nav .wrapper__nav .nav-item.has-child ul {
  position: absolute;
  right: 13px;
  left: inherit;
  top: 60px;
  z-index: 999;
  background: #fff;
  width: 130px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s;
  padding: 5px 0;
  box-shadow: #888 1px 1px 5px;
  text-align: center;
}
@media (min-width: 400px) {
  header .header__wrapper nav .wrapper__nav .nav-item.has-child ul {
    right: 5px;
    top: 62px;
  }
}
header .header__wrapper nav .wrapper__nav .nav-item.has-child ul li {
  padding: 4px 10px;
}
header .header__wrapper nav .wrapper__nav .nav-item.has-child ul li:last-of-type {
  margin-bottom: 0;
}
header .header__wrapper nav .wrapper__nav .nav-item.has-child ul li a {
  font-weight: normal;
  font-size: clamp(12px, 1vw, 14px);
}
header .header__wrapper nav .wrapper__nav .nav-item.has-child ul li:hover {
  text-decoration: underline;
}
header .header__wrapper nav .wrapper__nav .nav-item.has-child ul li:hover a {
  color: #FFA127;
}
header .header__wrapper nav .wrapper__nav .nav-item.has-child:hover::before {
  visibility: visible;
  opacity: 1;
}
header .header__wrapper nav .wrapper__nav .nav-item.has-child:hover ul {
  visibility: visible;
  opacity: 1;
}

.section__category {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .section__category {
    flex-direction: row;
  }
}
.section__category div {
  flex: 1;
  text-align: center;
}
.section__category div.wrapper__category {
  border: solid 7px #000;
  background: url(../images/category-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .section__category div.wrapper__category {
    padding-bottom: 0;
  }
}
.section__category div.wrapper__category h3 {
  max-width: 150px;
  margin: 10px auto 15px auto;
}
.section__category div.wrapper__category .category-select {
  width: 50%;
  font-weight: bold;
  font-size: 16px;
  padding: 10px 0;
  border: solid 4px #000;
}
.section__category div.wrapper__category .category-select > option {
  font-weight: bold;
}
.section__category div.wrapper__tag {
  border: solid 7px #000;
  border-top: none;
  background: url(../images/tag-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top left;
}
@media (min-width: 768px) {
  .section__category div.wrapper__tag {
    border-left: none;
    border-top: solid 7px #000;
  }
}
.section__category div.wrapper__tag h3 {
  max-width: 100px;
  margin: 10px auto;
}
.section__category div.wrapper__tag-inner {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
  max-width: 430px;
  margin: 0 auto;
}
.section__project {
  margin: 50px auto;
}
.section__project .wrapper__title {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 90px;
  height: 49px;
}
@media (min-width: 576px) {
  .section__project .wrapper__title {
    margin-bottom: 40px;
  }
}
@media (min-width: 768px) {
  .section__project .wrapper__title {
    margin-bottom: 45px;
  }
}
.section__project .wrapper__title h2 {
  background: url(../images/deco__hukidashi.png);
  background-size: contain;
  background-repeat: no-repeat;
  color: #fff;
  width: 100%;
  padding-top: 20px;
  padding-left: 15px;
  height: 65px;
}
@media (min-width: 768px) {
  .section__project .wrapper__title h2 {
    height: 90px;
  }
}
.section__project .wrapper__title a {
  display: block;
}
.section__project .wrapper__projects {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.section__project .wrapper__projects .container__project {
  background: #fff;
  margin-bottom: 10px;
  width: 100%;
  padding: 15px 10px 5px 10px;
  position: relative;
  transition: 0.3s;
}
@media (min-width: 768px) {
  .section__project .wrapper__projects .container__project {
    flex: 1 47%;
    max-width: 47%;
  }
}
@media (min-width: 992px) {
  .section__project .wrapper__projects .container__project {
    flex: 1 32.5%;
    max-width: 32.5%;
  }
}
.section__project .wrapper__projects .container__project a {
  transition: 0.3s;
}
.section__project .wrapper__projects .container__project a:hover {
  text-decoration: underline;
}
@media (min-width: 768px) {
  .section__project .wrapper__projects .container__project:nth-of-type(2n-1) {
    margin-right: 10px;
    margin-left: 10px;
  }
}
@media (min-width: 992px) {
  .section__project .wrapper__projects .container__project:nth-of-type(2n-1) {
    margin-right: 0px;
    margin-left: 0px;
  }
}
@media (min-width: 992px) {
  .section__project .wrapper__projects .container__project:nth-of-type(3n-1) {
    margin-right: 10px;
    margin-left: 10px;
  }
}
.section__project .wrapper__projects .container__project:nth-of-type(n+7) {
  display: none;
}
.section__project .wrapper__projects .container__project .project__title {
  margin-bottom: 30px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-bottom: 5px;
  height: 49px;
}
.section__project .wrapper__projects .container__project .project__title > p {
  font-size: 15px;
}
@media (min-width: 576px) {
  .section__project .wrapper__projects .container__project .project__title > p {
    font-size: 16px;
  }
}
.section__project .wrapper__projects .container__project .project__text {
  font-weight: bold;
  font-size: 12px;
  color: #555;
  margin-bottom: 20px;
  height: 55px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.section__project .wrapper__projects .container__project .wrapper__desc > div {
  justify-content: space-between;
}
.section__project .wrapper__projects .container__project .wrapper__desc > div .wrapper__owner {
  display: flex;
}
.section__project .wrapper__projects .container__project .wrapper__desc > div .wrapper__owner .img__owner {
  width: 45px;
  height: 45px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 5px;
  margin-bottom: 5px;
}
.section__project .wrapper__projects .container__project .wrapper__desc > div .wrapper__owner .name__owner {
  font-size: 13px;
  font-weight: bold;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  max-width: 500px;
  margin-right: 10px;
}
@media (min-width: 768px) {
  .section__project .wrapper__projects .container__project .wrapper__desc > div .wrapper__owner .name__owner {
    max-width: 220px;
  }
}
.section__project .wrapper__projects .container__project .wrapper__desc > div .type {
  border: solid 2px #000;
  min-width: 57px;
  padding: 3px 7px;
  font-size: 13px;
  text-shadow: 1px 1px 1px #ffffff, -1px 1px 1px #ffffff, 1px -1px 1px #ffffff, -1px -1px 1px #ffffff, 1px 0px 1px #ffffff, 0px 1px 1px #ffffff, -1px 0px 1px #ffffff, 0px -1px 1px #ffffff;
  font-weight: bold;
}
.section__project .wrapper__projects .container__project .wrapper__desc > div .type.type__purchase {
  background: #FFA127;
}
.section__project .wrapper__projects .container__project .wrapper__desc > div .type.type__vote {
  background: #FF27C5;
}
.section__project .wrapper__projects .container__project .tag {
  font-size: 13px;
  margin-top: 5px;
  margin-left: 3px;
  font-weight: bold;
}
.section__project .wrapper__projects .container__project .tag::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url(../images/tag.png);
  background-size: cover;
  background-repeat: no-repeat;
  vertical-align: middle;
}
.section__project .wrapper__projects .container__project .text__yen {
  font-size: 14px;
  margin-top: 5px;
  margin-right: 3px;
  font-weight: bold;
}
.section__project .wrapper__projects .container__project .text__yen.d-none {
  opacity: 0;
  color: #fff;
}
.section__project .wrapper__projects .container__project .meter {
  border: solid 4px #000;
  width: 100%;
  background: #fff;
}
.section__project .wrapper__projects .container__project .wrapper__text {
  justify-content: space-between;
  font-size: 13px;
  margin: 0 3px;
  font-weight: bold;
}
.section__project .wrapper__projects .container__project .wrapper__text .text__people {
  margin-top: 3px;
}
.section__project .wrapper__projects .container__project .wrapper__text .text__people::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 18px;
  background: url(../images/people.png);
  background-size: cover;
  background-repeat: no-repeat;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .section__project.project-expiring .wrapper__title {
    margin-bottom: 51px;
  }
}
.section__project.project-expiring .wrapper__title h2 {
  height: 85px;
}
@media (min-width: 768px) {
  .section__project.project-expiring .wrapper__title h2 {
    padding-top: 25px;
    font-size: 22px;
    height: 97px;
  }
}
.section__project.project-success .wrapper__title h2 {
  height: 80px;
}
@media (min-width: 768px) {
  .section__project.project-success .wrapper__title h2 {
    height: 90px;
  }
}

.nav__side {
  width: 60px;
  margin-left: auto;
  margin-bottom: 50px;
  position: -webkit-sticky;
  position: sticky;
  bottom: 250px;
  right: 0;
  background: #FFA127;
  z-index: 100;
}
.nav__side ul {
  border: solid 4px #000;
}
.nav__side ul li {
  border-bottom: solid 4px #000;
}
.nav__side ul li a {
  display: block;
  margin: auto;
  background: #fff;
  height: 35px;
  width: 35px;
  border-radius: 50%;
  margin: 2px auto;
  transition: 0.2s;
}
.nav__side ul li a svg {
  display: block;
  margin: auto;
  width: 95%;
  height: 95%;
  padding-top: 5px;
}
.nav__side ul li a:hover {
  background: #000;
}
.nav__side ul li a:hover path {
  fill: #fff;
}
.nav__side ul li:first-of-type a svg {
  padding-top: 4px;
}
.nav__side ul li:last-of-type {
  border-bottom: none;
}
.nav__side ul li:last-of-type a svg {
  padding: 0;
  padding-top: 1px;
  width: 55%;
  height: 100%;
}

.container__main {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  margin-bottom: 20px;
  min-height: 850px;
}
@media (min-width: 576px) {
  .container__main {
    flex-direction: row-reverse;
  }
}
.container__main main {
  max-width: 1040px;
  flex: 1;
}
.container__main h2 {
  margin-top: 10px;
}
.container__main .sort-dates {
  vertical-align: bottom;
  margin-top: 50px;
  font-weight: bold;
  font-size: 16px;
  padding: 10px 5px;
  border: solid 3px #000;
  width: 200px;
  margin-left: 5px;
}
.container__main .section__project {
  margin-top: 20px;
}
.container__main .section__project .wrapper__projects .container__project {
  margin-left: 5px;
  margin-right: 5px;
}
@media (min-width: 992px) {
  .container__main .section__project .wrapper__projects .container__project {
    flex: 1 32%;
    max-width: 32%;
  }
}

.sidebar__mypage {
  width: 98%;
  flex: none;
  margin: 0 auto 30px auto;
  border: solid 5px #000;
  background-color: #fff;
}
@media (min-width: 576px) {
  .sidebar__mypage {
    width: 210px;
    margin: 0 10px;
  }
}
.sidebar__mypage h4 {
  background: url(../images/deco__h4.png);
  background-size: 3px;
  padding: 5px 0;
}
.sidebar__mypage h4 img {
  max-height: 21px;
  -o-object-fit: contain;
     object-fit: contain;
  vertical-align: middle;
}
.sidebar__mypage a {
  font-size: 14px;
  margin-bottom: 3px;
}
.sidebar__mypage .wrapper__category {
  text-align: center;
}
.sidebar__mypage .wrapper__category .category-select {
  width: 80%;
  font-weight: bold;
  font-size: clamp(14px, 0.5vw, 16px);
  padding: 5px 0;
  border: solid 3px #000;
  margin: 10px auto;
  text-align: left;
}
.sidebar__mypage .wrapper__tag > div {
  padding: 15px 0;
}
.sidebar__mypage .wrapper__tag > div a {
  padding-left: 5%;
}
.sidebar__mypage .wrapper__pro > div {
  padding: 15px 0;
}
.sidebar__mypage .wrapper__pro > div a {
  padding-left: 5%;
}
.sidebar__mypage .wrapper__contents h4 {
  background: #000;
  color: #fff;
  padding: 5px;
  margin-bottom: 20px;
}
.sidebar__mypage .wrapper__contents h5 {
  padding-left: 10px;
  margin-bottom: 10px;
}
.sidebar__mypage .wrapper__contents ul {
  margin-bottom: 10px;
}
.sidebar__mypage .wrapper__contents ul li {
  padding-left: 20px;
}
.sidebar__page {
  width: 98%;
  flex: none;
  margin: 0 auto 30px auto;
  background-color: #fff;
  border: 0;
}
@media (min-width: 768px) {
  .sidebar__page {
    width: 210px;
    margin: 0 10px;
  }
}
.sidebar__page h4 {
  background: url(../images/deco__h4.png);
  background-size: 3px;
  padding: 5px 0;
  margin-bottom: 15px;
}
.sidebar__page h4 img {
  max-height: 21px;
  -o-object-fit: contain;
     object-fit: contain;
  vertical-align: middle;
}
.sidebar__page a {
  font-size: clamp(12px, 0.5vw, 14px);
  margin-bottom: 5px;
}
.sidebar__page .wrapper__category {
  text-align: center;
}
.sidebar__page .wrapper__category .category-select {
  width: 80%;
  font-weight: bold;
  font-size: clamp(14px, 0.5vw, 16px);
  padding: 5px 0;
  border: solid 3px #000;
  margin: 10px auto;
  text-align: left;
}
.sidebar__page .wrapper__category h4 {
  position: relative;
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .sidebar__page .wrapper__category h4::after {
    content: "";
    display: inline-block;
    height: 20px;
    width: 20px;
    background: url(../images/remove.svg);
    background-size: cover;
    border: solid 1px #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    transition: 0.3s;
  }
  .sidebar__page .wrapper__category h4.is-open::after {
    background: url(../images/add.svg);
  }
}
.sidebar__page .wrapper__category .filter {
  padding-top: 15px;
  padding-bottom: 15px;
  display: none;
}
@media (min-width: 768px) {
  .sidebar__page .wrapper__category .filter {
    display: block !important;
  }
}
.sidebar__page .wrapper__tag > div {
  padding: 15px 0;
}
.sidebar__page .wrapper__tag > div a {
  padding-left: 5%;
}
.sidebar__page .wrapper__pro > div {
  padding: 15px 0;
}
.sidebar__page .wrapper__pro > div a {
  padding-left: 5%;
}
.sidebar__page .wrapper__contents h4 {
  background: #000;
  color: #fff;
  padding: 5px;
  margin-bottom: 20px;
}
.sidebar__page .wrapper__contents h5 {
  padding-left: 10px;
  margin-bottom: 10px;
}
.sidebar__page .wrapper__contents ul {
  margin-bottom: 10px;
}
.sidebar__page .wrapper__contents ul li {
  padding-left: 20px;
}

@-webkit-keyframes zoom-in {
  0% {
    transform: scale(0.5);
  }
  100% {
    transform: none;
  }
}

@keyframes zoom-in {
  0% {
    transform: scale(0.5);
  }
  100% {
    transform: none;
  }
}
.is-animated {
  -webkit-animation: 0.5s zoom-in;
          animation: 0.5s zoom-in;
}

.shop-page {
  min-height: 100vh;
}
.shop-page .container__main {
  flex-direction: column-reverse;
}
@media (min-width: 768px) {
  .shop-page .container__main {
    flex-direction: row-reverse;
  }
}
.shop-page main {
  position: relative;
}
.shop-page main .mv__right {
  display: none;
  position: absolute;
  top: -312px;
  right: 0;
  margin-left: 10px;
  flex: 1;
  text-align: center;
  width: 24%;
  min-width: 230px;
  z-index: 99;
}
@media (min-width: 576px) {
  .shop-page main .mv__right {
    top: -35px;
  }
}
@media (min-width: 992px) {
  .shop-page main .mv__right {
    max-width: 290px;
    position: inherit;
    top: 0;
  }
}
.shop-page main .mv__right .btn__myProject {
  height: 86px;
  line-height: 80px;
  background: url(../images/dot_103.bmp);
  color: black;
  font-weight: bold;
  font-size: 16px;
  text-shadow: 2px 2px 2px #ffffff, -2px 2px 2px #ffffff, 2px -2px 2px #ffffff, -2px -2px 2px #ffffff, 2px 0px 2px #ffffff, 0px 2px 2px #ffffff, -2px 0px 2px #ffffff, 0px -2px 2px #ffffff;
  border: solid 6px #000;
  border-bottom: solid 6px #000;
}
@media (min-width: 768px) {
  .shop-page main .mv__right .btn__myProject {
    font-size: 20px;
  }
}
.shop-page main .mv__right .btn__myProject:hover {
  background: url(../images/bg2.svg);
  background-color: #fff;
  background-size: cover;
}
.shop-page main .mv__right .btn__navGuide {
  text-shadow: 2px 2px 2px #ffffff, -2px 2px 2px #ffffff, 2px -2px 2px #ffffff, -2px -2px 2px #ffffff, 2px 0px 2px #ffffff, 0px 2px 2px #ffffff, -2px 0px 2px #ffffff, 0px -2px 2px #ffffff;
  font-weight: bold;
  height: 100px;
  padding-top: 20px;
  border: solid 6px #000;
  border-top: none;
  border-bottom: solid 6px #000;
  background: #FFA127;
  font-size: 16px;
}
@media (min-width: 768px) {
  .shop-page main .mv__right .btn__navGuide {
    font-size: 20px;
  }
}
.shop-page main .mv__right .btn__navGuide:hover {
  background: url(../images/dot_102.bmp);
}
.shop-page main .mv__right .btn__shop {
  background-color: #fff;
  background: url(../images/btn__shop-bg.jpg);
  background-repeat: no-repeat;
  background-position: 100% 50%;
  background-size: cover;
  text-shadow: 2px 2px 2px #ffffff, -2px 2px 2px #ffffff, 2px -2px 2px #ffffff, -2px -2px 2px #ffffff, 2px 0px 2px #ffffff, 0px 2px 2px #ffffff, -2px 0px 2px #ffffff, 0px -2px 2px #ffffff;
  font-weight: bold;
  transition: 0.5s;
  height: 70px;
  line-height: 70px;
  border: solid 6px #000;
  border-top: none;
}
.shop-page main .mv__right .btn__shop:hover {
  filter: saturate(200%);
  background-position: 70% 50%;
  transition: 0.5s;
}
@keyframes zoom-in {
  0% {
    transform: scale(0.5);
  }
  100% {
    transform: none;
  }
}
.shop-page main .section__itemlist .is-animated {
  -webkit-animation: 0.5s zoom-in;
          animation: 0.5s zoom-in;
}
.shop-page main .section__itemlist .wrapper__items {
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 10px auto;
}
.shop-page main .section__itemlist .wrapper__items .container__item {
  background: #fff;
  margin-bottom: 20px;
  margin-left: 10px;
  margin-right: 10px;
  width: 100%;
}
@media (min-width: 768px) {
  .shop-page main .section__itemlist .wrapper__items .container__item {
    width: 300px;
  }
}
.shop-page main .section__itemlist .wrapper__items .container__item figure:hover {
  opacity: 0.8;
}
.shop-page main .section__itemlist .wrapper__items .container__item figure > img {
  height: auto;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 768px) {
  .shop-page main .section__itemlist .wrapper__items .container__item figure > img {
    width: 300px;
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.shop-page main .section__itemlist .wrapper__items .container__item .text__item {
  padding: 5px;
}
.shop-page main .section__itemlist .wrapper__items .container__item .text__item a {
  margin-bottom: 3px;
  transition: 0.3s;
}
.shop-page main .section__itemlist .wrapper__items .container__item .text__item a .tag {
  font-size: 75%;
  color: rgb(134, 134, 134);
}
.shop-page main .section__itemlist .wrapper__items .container__item .text__item a:hover {
  text-decoration: underline;
  transition: 0.3s;
}
.shop-page main .section__itemlist .wrapper__items .container__item .text__item a .project__title {
  margin-bottom: 30px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-bottom: 5px;
  height: 49px;
}

.single__item {
  min-height: 100vh;
  position: relative;
}
.single__item main {
  margin-left: 15px;
  margin-right: 15px;
}
.single__item main .wrapper__contents {
  background: #fff;
  margin-bottom: 80px;
}
.single__item main .wrapper__contents > div {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
}
@media (min-width: 768px) {
  .single__item main .wrapper__contents > div {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .single__item main .wrapper__contents > div {
    width: 80%;
  }
}
.single__item main .wrapper__contents > div .wrapper__text {
  width: 100%;
  height: 100%;
  padding: 15px 0;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .single__item main .wrapper__contents > div .wrapper__text {
    margin-right: 0;
    flex: 1;
    padding: 15px;
    position: relative;
  }
}
@media (min-width: 992px) {
  .single__item main .wrapper__contents > div .wrapper__text {
    max-width: 550px;
  }
}
.single__item main .wrapper__contents > div .wrapper__text > h2 {
  margin-bottom: 20px;
}
.single__item main .wrapper__contents > div .wrapper__text .price {
  color: rgb(221, 0, 0);
  font-weight: bold;
  margin-bottom: 50px;
}
.single__item main .wrapper__contents > div .wrapper__text .btn__cart {
  text-align: center;
  border: solid 5px #000;
  padding: 10px;
  margin-bottom: 10px;
  background: #FFA127;
  width: 98%;
  transition: 0.3s;
}
.single__item main .wrapper__contents > div .wrapper__text .btn__cart::before {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  background: url(../images/cart.svg);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-right: 5px;
}
.single__item main .wrapper__contents > div .wrapper__text .btn__cart:hover {
  background: #fff;
}
.single__item main .wrapper__contents .gallery {
  width: 100%;
  margin: 20px auto 0 auto;
  overflow-x: hidden;
}
@media (min-width: 576px) {
  .single__item main .wrapper__contents .gallery {
    width: 95%;
    padding: 0 10px;
  }
}
@media (min-width: 768px) {
  .single__item main .wrapper__contents .gallery {
    max-width: 380px;
    margin: 20px auto 0 0;
  }
}
@media (min-width: 992px) {
  .single__item main .wrapper__contents .gallery {
    max-width: 450px;
  }
}
@media (min-width: 1200px) {
  .single__item main .wrapper__contents .gallery {
    max-width: 550px;
  }
}
.single__item main .wrapper__contents .gallery .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fbfbfb;
  width: 100%;
}
.single__item main .wrapper__contents .gallery .swiper-slide img {
  display: block;
  margin-top: auto;
  margin-bottom: auto;
}
.single__item main .wrapper__contents .gallery .gallery-slider {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0 0 10px 0;
}
.single__item main .wrapper__contents .gallery .gallery-slider .swiper-button-prev,
.single__item main .wrapper__contents .gallery .gallery-slider .swiper-button-next {
  display: none;
}
.single__item main .wrapper__contents .gallery .gallery-slider .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto !important;
  position: relative;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.single__item main .wrapper__contents .gallery .gallery-slider .swiper-slide img {
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.single__item main .wrapper__contents .gallery .gallery-slider .swiper-slide.swiper-slide-active {
  pointer-events: inherit;
}
.single__item main .wrapper__contents .gallery .gallery-thumbs {
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.single__item main .wrapper__contents .gallery .gallery-thumbs .swiper-slide {
  display: flex;
  width: 25%;
  height: 100%;
  opacity: 0.3;
}
.single__item main .wrapper__contents .gallery .gallery-thumbs .swiper-slide img {
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 100%;
}
.single__item main .wrapper__contents .gallery .gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}
.single__item main .wrapper__contents .wrapper__description {
  padding: 30px 0 50px 0;
}
.single__item main .recommend {
  margin-bottom: 80px;
  padding-left: 0;
  padding-right: 0;
}
.single__item main .recommend h3 {
  margin-bottom: 15px;
}
.single__item main .recommend .recommend-swiper {
  border: 0;
  height: 310px;
  max-width: 1260px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}
.single__item main .recommend .recommend-swiper .swiper-wrapper {
  width: 300px;
  height: 310px;
  position: relative;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}
.single__item main .recommend .recommend-swiper .swiper-wrapper .swiper-slide {
  flex-shrink: 0;
  position: relative;
  width: 300px !important;
  height: 310px;
}
.single__item main .recommend .recommend-swiper .swiper-wrapper .swiper-slide > a figure {
  width: 300px;
  height: 217px;
}
.single__item main .recommend .recommend-swiper .swiper-wrapper .swiper-slide .text__item {
  padding: 5px;
  background: #fff;
}
.single__item main .recommend .recommend-swiper .swiper-wrapper .swiper-slide .text__item a {
  margin-bottom: 3px;
  transition: 0.3s;
}
.single__item main .recommend .recommend-swiper .swiper-wrapper .swiper-slide .text__item a .tag__figure {
  font-size: 75%;
  color: #868686;
}
.single__item main .recommend .recommend-swiper .swiper-button-prev {
  position: absolute;
  top: 50%;
  left: 5px;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: bold;
  background: #fff;
  border-radius: 50%;
  width: 35px;
  height: 35px;
}
.single__item main .recommend .recommend-swiper .swiper-button-next {
  position: absolute;
  top: 50%;
  right: 5px;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: bold;
  background: #fff;
  border-radius: 50%;
  width: 35px;
  height: 35px;
}
.single__item main .recommend .recommend-swiper .swiper-button-prev::after {
  content: "";
  background: url(../images/icon__arrowr.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 41%;
  display: inline-block;
  width: 35px;
  height: 35px;
}
.single__item main .recommend .recommend-swiper .swiper-button-next::after {
  content: "";
  background: url(../images/icon__arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 41%;
  display: inline-block;
  width: 35px;
  height: 35px;
}
.single__item .zoomLens {
  pointer-events: none;
}
@media (max-width: 767.98px) {
  .single__item .zoomLens {
    opacity: 0;
  }
}
.single__item .zoomContainer {
  pointer-events: none;
}
@media (max-width: 767.98px) {
  .single__item .zoomContainer {
    opacity: 0;
  }
}
.single__item .zoomWindow {
  width: clamp(330px, 40vw, 530px) !important;
  height: clamp(330px, 40vw, 530px) !important;
}

.mypage main {
  background: #fff;
  border: solid 5px #000;
  margin-right: 10px;
}
.mypage main h2 {
  background: #000;
  color: #fff;
  margin-top: 0;
  padding: 10px;
}
.mypage main .wrapper__projects {
  margin-top: 30px;
}
.mypage main .wrapper__projects .content__project {
  margin: 10px;
  padding: 10px;
}
.mypage main .wrapper__projects .content__project > p {
  margin-bottom: 5px;
}
.mypage main .wrapper__projects .content__project .btn__shipping {
  border: solid 2px #000;
  display: inline-block;
  width: 150px;
  padding: 5px;
}
.mypage main .wrapper__projects .content__project .btn__shipping:hover {
  background: #FFA127;
}
.mypage main .wrapper__projects .content__project .btn__detail {
  border: solid 2px #000;
  display: inline-block;
  width: 150px;
  padding: 5px;
}
.mypage main .wrapper__projects .content__project .btn__detail:hover {
  background: #FFA127;
}

.notification main {
  background: #fff;
  border: solid 5px #000;
  padding: 10px;
}
.notification main .title {
  font-weight: 500;
}
.notification main .time {
  font-size: 80%;
  font-weight: 500;
}
.notification main .time::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url(../images/schedule_black_24dp.svg);
  background-size: cover;
  vertical-align: middle;
  margin-right: 2px;
}

.owner__page .container__main {
  background: #fff;
  min-height: inherit;
  margin-bottom: 0;
}
.owner__page .container__main .container__owner {
  margin-top: 50px;
}
.owner__page .container__main .container__owner .wrapper__owner {
  align-items: flex-start;
}
.owner__page .container__main .container__owner .wrapper__owner .img__owner {
  width: 200px;
  height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 30px;
  margin-left: 10px;
}
.owner__page .container__main .container__owner .wrapper__owner .text__owner {
  padding-right: 10px;
}
.owner__page .container__main .container__owner .wrapper__owner .text__owner .name__owner {
  font-size: 120%;
  font-weight: bold;
  margin-bottom: 20px;
}
.owner__page .owner__proposal {
  background: #fff;
  padding: 50px 10px 30px 10px;
  margin-bottom: 20px;
}
.owner__page .owner__proposal div {
  width: 80%;
}
.owner__page .owner__proposal div .wrapper__projects {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 10px auto;
}
.owner__page .owner__proposal div .wrapper__projects .container__project {
  background: #fff;
  margin-bottom: 10px;
  width: 100%;
  padding: 15px 10px 5px 10px;
  position: relative;
  transition: 0.3s;
}
@media (min-width: 768px) {
  .owner__page .owner__proposal div .wrapper__projects .container__project {
    flex: 1 47%;
    max-width: 47%;
  }
}
@media (min-width: 992px) {
  .owner__page .owner__proposal div .wrapper__projects .container__project {
    flex: 1 32.4%;
    max-width: 32.4%;
  }
}
.owner__page .owner__proposal div .wrapper__projects .container__project a {
  transition: 0.3s;
}
.owner__page .owner__proposal div .wrapper__projects .container__project a:hover {
  text-decoration: underline;
}
@media (min-width: 768px) {
  .owner__page .owner__proposal div .wrapper__projects .container__project:nth-of-type(2n-1) {
    margin-right: 10px;
    margin-left: 10px;
  }
}
@media (min-width: 992px) {
  .owner__page .owner__proposal div .wrapper__projects .container__project:nth-of-type(2n-1) {
    margin-right: 0px;
    margin-left: 0px;
  }
}
@media (min-width: 992px) {
  .owner__page .owner__proposal div .wrapper__projects .container__project:nth-of-type(3n-1) {
    margin-right: 10px;
    margin-left: 10px;
  }
}
.owner__page .owner__proposal div .wrapper__projects .container__project:nth-of-type(n+7) {
  display: none;
}
.owner__page .owner__proposal div .wrapper__projects .container__project .project__title {
  margin-bottom: 30px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-bottom: 5px;
  height: 49px;
}
.owner__page .owner__proposal div .wrapper__projects .container__project .project__title > p {
  font-size: 15px;
}
@media (min-width: 576px) {
  .owner__page .owner__proposal div .wrapper__projects .container__project .project__title > p {
    font-size: 16px;
  }
}
.owner__page .owner__proposal div .wrapper__projects .container__project .project__text {
  font-weight: bold;
  font-size: 12px;
  color: #555;
  margin-bottom: 20px;
  height: 55px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.owner__page .owner__proposal div .wrapper__projects .container__project .wrapper__desc > div {
  justify-content: space-between;
}
.owner__page .owner__proposal div .wrapper__projects .container__project .wrapper__desc > div .wrapper__owner {
  display: flex;
}
.owner__page .owner__proposal div .wrapper__projects .container__project .wrapper__desc > div .wrapper__owner .img__owner {
  width: 45px;
  height: 45px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 5px;
  margin-bottom: 5px;
}
.owner__page .owner__proposal div .wrapper__projects .container__project .wrapper__desc > div .wrapper__owner .name__owner {
  font-size: 13px;
  font-weight: bold;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  max-width: 500px;
  margin-right: 10px;
}
@media (min-width: 768px) {
  .owner__page .owner__proposal div .wrapper__projects .container__project .wrapper__desc > div .wrapper__owner .name__owner {
    max-width: 220px;
  }
}
.owner__page .owner__proposal div .wrapper__projects .container__project .wrapper__desc > div .type {
  border: solid 2px #000;
  min-width: 57px;
  padding: 3px 7px;
  font-size: 13px;
  text-shadow: 1px 1px 1px #ffffff, -1px 1px 1px #ffffff, 1px -1px 1px #ffffff, -1px -1px 1px #ffffff, 1px 0px 1px #ffffff, 0px 1px 1px #ffffff, -1px 0px 1px #ffffff, 0px -1px 1px #ffffff;
  font-weight: bold;
}
.owner__page .owner__proposal div .wrapper__projects .container__project .wrapper__desc > div .type.type__purchase {
  background: #FFA127;
}
.owner__page .owner__proposal div .wrapper__projects .container__project .wrapper__desc > div .type.type__vote {
  background: #FF27C5;
}
.owner__page .owner__proposal div .wrapper__projects .container__project .tag {
  font-size: 13px;
  margin-top: 5px;
  margin-left: 3px;
  font-weight: bold;
}
.owner__page .owner__proposal div .wrapper__projects .container__project .tag::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url(../images/tag.png);
  background-size: cover;
  background-repeat: no-repeat;
  vertical-align: middle;
}
.owner__page .owner__proposal div .wrapper__projects .container__project .text__yen {
  font-size: 14px;
  margin-top: 5px;
  margin-right: 3px;
  font-weight: bold;
}
.owner__page .owner__proposal div .wrapper__projects .container__project .text__yen.d-none {
  opacity: 0;
  color: #fff;
}
.owner__page .owner__proposal div .wrapper__projects .container__project .meter {
  border: solid 4px #000;
  width: 100%;
  background: #fff;
}
.owner__page .owner__proposal div .wrapper__projects .container__project .wrapper__text {
  justify-content: space-between;
  font-size: 13px;
  margin: 0 3px;
  font-weight: bold;
}
.owner__page .owner__proposal div .wrapper__projects .container__project .wrapper__text .text__people {
  margin-top: 3px;
}
.owner__page .owner__proposal div .wrapper__projects .container__project .wrapper__text .text__people::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 18px;
  background: url(../images/people.png);
  background-size: cover;
  background-repeat: no-repeat;
  vertical-align: middle;
}

.mypage__like main {
  background: #fff;
  border: solid 5px #000;
  padding: 10px;
}
.mypage__like main .styles__list__simple li {
  background: #fff;
}
.mypage__like main .styles__list__simple li:hover {
  background: #ccc;
}
.mypage__like main .styles__list__simple .title {
  font-weight: 700;
}
.mypage__like main .styles__list__simple .price {
  font-weight: 500;
}
.mypage__like main .styles__list__simple div figure figcaption a {
  font-weight: 500;
}
.mypage__like main .styles__list__simple div figure figcaption a:hover {
  text-decoration: underline;
}

.cart main .wrapper__items {
  background: #fff;
  border: solid 5px #222;
  margin-left: 5px;
  margin-right: 5px;
}
.cart main .wrapper__items h2 {
  width: 90%;
  margin: 0 auto;
  padding: 20px 0;
}
.cart main .wrapper__items ul {
  width: 90%;
  margin: 0 auto;
  padding-bottom: 50px;
}
.cart main .wrapper__items ul li {
  padding: 20px 15px;
  border-top: solid 1px rgb(131, 131, 131);
  height: 230px;
  margin-bottom: 15px;
}
.cart main .wrapper__items ul li > .content {
  justify-content: space-between;
}
.cart main .wrapper__items ul li > .content .content-left {
  width: 65%;
  height: 190px;
}
.cart main .wrapper__items ul li > .content .content-left .text-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 48px;
}
.cart main .wrapper__items ul li > .content .content-left .return {
  margin-top: 20px;
  border: solid 1px #ccc;
  padding: 10px;
  background: rgb(250, 250, 250);
}
.cart main .wrapper__items ul li > .content .content-left .return .title {
  margin-bottom: 10px;
  font-size: 14px;
}
.cart main .wrapper__items ul li > .content .content-left .return .text {
  font-size: 13px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  height: 60px;
}
.cart main .wrapper__items ul li > .content .content-left > a {
  font-weight: 500;
  font-size: 17px;
}
.cart main .wrapper__items ul li > .content .content-left > a:hover {
  text-decoration: underline;
}
.cart main .wrapper__items ul li > .content .content-right {
  height: 190px;
  width: 30%;
  margin-left: 15px;
  text-align: right;
}
.cart main .wrapper__items ul li > .content .content-right .text-price {
  font-weight: bold;
  font-size: 20px;
}
.cart main .wrapper__items ul li > .content .content-right .text-shipping {
  font-size: 18px;
}
.cart main .wrapper__items ul li > .content .content-right .button_buy {
  background: #FFA127;
  border: 2px solid #FFA127;
  text-align: center;
  height: 48px;
  width: 200px;
  line-height: 48px;
  margin-top: 77px;
  margin-left: auto;
  transition: 0.3s;
}
.cart main .wrapper__items ul li > .content .content-right .button_buy:hover {
  border-color: #000;
}
.cart main .wrapper__items ul li:last-of-type {
  border-bottom: solid 1px rgb(131, 131, 131);
}
/*# sourceMappingURL=shoppage.css.map */