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

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

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

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

.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;
}
.text-underline-ora {
  background: linear-gradient(transparent 85%, #FFA127 85%);
  display: inline;
}
.text-underline-green {
  background: linear-gradient(transparent 89%, #0ACCA8 89%);
  display: inline-block;
}
.text-underline-blue {
  background: linear-gradient(transparent 89%, #0073B3 89%);
  display: inline-block;
}

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

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

.ml-1 {
  margin-left: 10px;
}
.ml-2 {
  margin-left: 20px;
}

h5 {
  font-size: 15px;
}

.fixed {
  -webkit-animation: fixed 1s ease;
          animation: fixed 1s ease;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes fixed {
  from {
    top: -100px;
  }
  to {
    top: 0;
  }
}

@keyframes fixed {
  from {
    top: -100px;
  }
  to {
    top: 0;
  }
}
.container {
  max-width: 1260px;
  margin: auto;
  padding: 0 10px;
}
@media (min-width: 992px) {
  .container {
    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;
  }
}

input,
select,
textarea {
  border: 1px solid rgb(194, 194, 194);
  padding: 15px 10px;
}
input:focus,
select:focus,
textarea:focus {
  border: 1px solid rgb(194, 194, 194);
}

input:invalid,
select:invalid {
  border: solid 1px #FFA127;
}

input:invalid + .error-message,
select:invalid + .error-message,
.selectbox + .error-message {
  opacity: 1;
}

input::-moz-placeholder {
  color: rgb(179, 179, 179);
}

input::placeholder {
  color: rgb(179, 179, 179);
}

.error-message {
  position: relative;
  display: inline-block;
  font-size: 12px;
  color: #000;
  opacity: 1;
  margin-top: 8px;
  background: #FFA127;
  padding: 4px 10px;
  border-radius: 3px;
}
.error-message::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 25px;
  margin-left: -10px;
  border: 4px solid transparent;
  border-bottom: 6px solid #FFA127;
}

.btn__save {
  background: #FFA127;
  display: block;
  width: 250px;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: 10px;
  border: 2px solid #FFA127;
  transition: 0.2s;
}
.btn__save:hover {
  border-color: #000;
}
.btn__add {
  font-weight: normal;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
  max-width: 800px;
}
.btn__add:hover {
  text-decoration: underline;
}
.btn__delete {
  min-width: 42px;
  padding: 4px 6px 3px 7px;
  border: 1px solid gray;
  background: rgb(255, 47, 47);
  color: #fff;
  transition: 0.2s;
  font-size: 13px;
  letter-spacing: 0.8px;
}
.btn__delete:hover {
  background: inherit;
  color: rgb(255, 47, 47);
}
.btn__profile-img-change {
  margin-bottom: 20px;
  border: 2px solid #FFA127;
  font-weight: bold;
  display: inline-block;
  padding: 4px 5px;
  cursor: pointer;
  border-radius: 2px;
  font-size: 13px;
  transition: 0.3s;
}
.btn__profile-img-change input[type=file] {
  display: none;
}
.btn__profile-img-change:hover {
  background: #FFA127;
}

form .form__lists {
  margin-top: 20px;
}
form .form__lists > p {
  margin-bottom: 20px;
}
form .form__lists .form__list {
  margin-bottom: 15px;
}

.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;
  }
}

h1 {
  font-size: 21px;
  line-height: 1.4;
}
@media (min-width: 768px) {
  h1 {
    font-size: 24px;
  }
}

.icon-badge {
  position: relative;
}
.icon-badge .badge {
  position: absolute;
  top: -2px;
  right: -8px;
  min-width: 15px;
  padding: 0 1px;
  font-size: 10px;
  color: #fff;
  border-radius: 50%;
  background-color: rgb(240, 8, 8);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.icon-badge .badge[data-num="0"] {
  display: none;
}

.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;
  padding-right: 25px;
}
.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: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .styles__list__simple li::after {
    right: 10px;
  }
}
.styles__list__simple.non-deco li::after {
  content: inherit;
}

.top-mv-swiper.swiper-container {
  height: auto;
  width: 100%;
  max-width: 900px;
  border: solid 10px #000;
  overflow: hidden;
}
.top-mv-swiper.swiper-container .swiper-wrapper .swiper-slide {
  height: 56vw;
  position: relative;
}
@media (min-width: 400px) {
  .top-mv-swiper.swiper-container .swiper-wrapper .swiper-slide {
    height: 59vw;
  }
}
@media (min-width: 768px) {
  .top-mv-swiper.swiper-container .swiper-wrapper .swiper-slide {
    height: 495px;
  }
}
.top-mv-swiper.swiper-container .swiper-wrapper .swiper-slide .swiper-text {
  position: absolute;
  bottom: 0;
  height: 40px;
  padding: 10px;
  width: 100%;
  color: #fff;
  font-size: 14px;
  background: rgba(0, 0, 0, 0.7);
}
@media (min-width: 576px) {
  .top-mv-swiper.swiper-container .swiper-wrapper .swiper-slide .swiper-text {
    height: 50px;
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .top-mv-swiper.swiper-container .swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .top-mv-swiper.swiper-container .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 39%;
  }
}
.top-mv-swiper.swiper-container .swiper-pagination-bullet-active {
  background: #ff8800;
}

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

img {
  width: 100%;
  height: auto;
  max-width: 980px;
  max-height: 495px;
  -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;
  min-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__tag.is-empty {
  height: 0;
  border: 0;
  pointer-events: none;
}
.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);
  }
}

.meter {
  border: solid 4px #000;
  width: 100%;
  background: #fff;
}
.meter .meter-inner .bar {
  max-width: 100%;
  height: 100%;
  color: #000;
  font-weight: bold;
  background: #48F3A1;
}
.meter .meter-inner .bar span {
  padding-left: 5px;
}

header {
  border-bottom: solid 6px #000;
  margin-bottom: 30px;
  position: relative;
}
header .header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
}
header .header__wrapper .wrapper__logo {
  padding-left: 5px;
  font-weight: bold;
  display: flex;
  align-items: center;
}
header .header__wrapper .wrapper__logo p a {
  font-size: clamp(12px, 2vw, 16px);
}
header .header__wrapper .wrapper__logo img {
  max-height: 60px;
  vertical-align: middle;
}
@media (max-width: 400px) {
  header .header__wrapper .wrapper__logo img {
    max-width: 135px;
  }
}
header .header__wrapper .header__nav-pc {
  flex: 1;
  padding-left: 15px;
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
header .header__wrapper .header__nav-pc .wrapper__nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
header .header__wrapper .header__nav-pc .wrapper__nav .nav-item {
  padding: 7px;
  position: relative;
}
header .header__wrapper .header__nav-pc .wrapper__nav .nav-item .nav-link {
  font-size: clamp(14px, 1vw, 16px);
}
header .header__wrapper .header__nav-pc .wrapper__nav .nav-item.login::after {
  content: "|";
  display: inline-block;
  width: 2px;
  height: 100%;
  position: absolute;
  right: 2px;
  top: 6px;
}
header .header__wrapper .header__nav-pc .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: 28px;
  right: 30px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s;
}
header .header__wrapper .header__nav-pc .wrapper__nav .nav-item.has-child ul {
  position: absolute;
  right: 0;
  top: 36px;
  z-index: 999;
  background: #fff;
  width: 103px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s;
  padding: 5px 0;
  box-shadow: #888 1px 1px 5px;
  text-align: center;
}
@media (min-width: 375px) {
  header .header__wrapper .header__nav-pc .wrapper__nav .nav-item.has-child ul {
    width: 117px;
  }
}
header .header__wrapper .header__nav-pc .wrapper__nav .nav-item.has-child ul li {
  padding: 4px 10px;
}
header .header__wrapper .header__nav-pc .wrapper__nav .nav-item.has-child ul li:last-of-type {
  margin-bottom: 0;
}
header .header__wrapper .header__nav-pc .wrapper__nav .nav-item.has-child ul li a {
  font-weight: normal;
  font-size: 14px;
}
header .header__wrapper .header__nav-pc .wrapper__nav .nav-item.has-child ul li:hover {
  text-decoration: underline;
}
header .header__wrapper .header__nav-pc .wrapper__nav .nav-item.has-child ul li:hover a {
  color: #FFA127;
}
header .header__wrapper .header__nav-pc .wrapper__nav .nav-item.has-child:hover::before {
  visibility: visible;
  opacity: 1;
}
header .header__wrapper .header__nav-pc .wrapper__nav .nav-item.has-child:hover ul {
  visibility: visible;
  opacity: 1;
}
@media (max-width: 991.98px) {
  header .header__wrapper .header__nav-pc {
    display: none;
  }
}
header .header__wrapper .header__nav-sp {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: 1000;
  width: 100%;
  height: 100vh;
  background-color: #000;
  opacity: 0.9;
  transition: 0.4s;
}
header .header__wrapper .header__nav-sp.is-active {
  position: fixed;
  left: 0;
}
header .header__wrapper .header__nav-sp ul {
  height: 100vh;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
header .header__wrapper .header__nav-sp ul li {
  margin-bottom: 1rem;
}
header .header__wrapper .header__nav-sp ul li a {
  color: #fff;
}
header .header__wrapper .header__nav-sp ul li:nth-of-type(1) {
  margin-bottom: 2rem;
  font-size: 120%;
}
header .header__wrapper .header__nav-sp ul li:nth-of-type(3) {
  margin-bottom: 2rem;
}
@media (hover: hover) and (pointer: fine) {
  header .header__wrapper .header__nav-sp ul li a:hover {
    color: orange;
  }
}
@media (min-width: 992px) {
  header .header__wrapper .header__nav-sp {
    display: none;
  }
}
header .header__wrapper #nav-button {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1010;
  width: 48px;
  height: 48px;
  position: relative;
}
header .header__wrapper #nav-button span {
  display: inline-block;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  left: 10px;
  height: 4px;
  border-radius: 2px;
  background: #000;
  width: 60%;
}
header .header__wrapper #nav-button span:nth-of-type(1) {
  top: 14px;
}
header .header__wrapper #nav-button span:nth-of-type(2) {
  top: 23px;
}
header .header__wrapper #nav-button span:nth-of-type(3) {
  top: 32px;
}
header .header__wrapper #nav-button.is-active {
  position: fixed;
  top: 15px;
  right: 20px;
}
header .header__wrapper #nav-button.is-active span {
  background: #fff;
}
header .header__wrapper #nav-button.is-active span:nth-of-type(1) {
  top: 18px;
  transform: translateY(6px) rotate(-45deg);
}
header .header__wrapper #nav-button.is-active span:nth-of-type(2) {
  opacity: 0;
}
header .header__wrapper #nav-button.is-active span:nth-of-type(3) {
  top: 30px;
  transform: translateY(-6px) rotate(45deg);
}
@media (min-width: 992px) {
  header .header__wrapper #nav-button {
    display: none;
  }
}

.section__mv {
  display: flex;
  max-width: 1260px;
  position: relative;
}
.section__mv .mv__left {
  width: 100%;
  max-width: 880px;
}
@media (min-width: 992px) {
  .section__mv .mv__left {
    width: 75%;
  }
}
.section__mv .mv__right {
  display: none;
  position: absolute;
  top: -35px;
  right: 0;
  margin-left: 10px;
  flex: 1;
  text-align: center;
  width: 24%;
  min-width: 230px;
  z-index: 99;
}
@media (min-width: 992px) {
  .section__mv .mv__right {
    position: inherit;
    display: block;
    top: 0;
  }
}
.section__mv .mv__right .wrapper_banner {
  border: solid 10px #000;
}
.section__mv .mv__right .wrapper_banner a {
  height: 85px;
}
.section__mv .mv__right .wrapper_banner a:not(:last-of-type) {
  border-bottom: solid 10px #000;
}
.section__mv .mv__right .wrapper_banner a.btn__myProject {
  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;
}
@media (min-width: 768px) {
  .section__mv .mv__right .wrapper_banner a.btn__myProject {
    font-size: 20px;
  }
}
.section__mv .mv__right .wrapper_banner a.btn__myProject:hover {
  background: url(../images/bg2.svg);
  background-color: #fff;
  background-size: cover;
}
.section__mv .mv__right .wrapper_banner a.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;
  line-height: 82px;
  background: #FFA127;
  font-size: 16px;
}
@media (min-width: 768px) {
  .section__mv .mv__right .wrapper_banner a.btn__navGuide {
    font-size: 20px;
  }
}
.section__mv .mv__right .wrapper_banner a.btn__navGuide:hover {
  background: url(../images/dot_102.bmp);
}
.section__mv .mv__right .wrapper_banner a.btn__shop {
  background: #fff url(../images/btn__shop-bg.jpg) no-repeat;
  background-position: -200% 100%;
  background-size: 107%;
  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: 80px;
  line-height: 90px;
  font-size: 18px;
}
.section__mv .mv__right .wrapper_banner a.btn__shop:hover {
  filter: saturate(200%);
  background-position: -120% 100%;
  background-size: 110%;
  transition: 0.5s;
}
.section__youtube {
  overflow: hidden;
}
.section__youtube h2 {
  margin: 30px auto;
}
.section__youtube h2 img {
  max-width: 400px;
}
.section__youtube .youtube-swiper {
  overflow: hidden;
  border: 0;
  height: 105px;
  margin: -30px auto 40px auto;
  max-width: 1260px !important;
  position: relative;
}
.section__youtube .youtube-swiper .swiper-wrapper {
  width: 174px !important;
  position: relative;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}
.section__youtube .youtube-swiper .swiper-wrapper .swiper-slide {
  flex-shrink: 0;
  position: relative;
  width: 174px !important;
  height: 104px;
  border: 7px solid #000;
}
.section__youtube .youtube-swiper .swiper-button-prev,
.section__youtube .youtube-swiper .swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) * 1);
  height: calc(var(--swiper-navigation-size) * 1);
  margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: bold;
  background: #fff;
  border-radius: 50%;
  border: 5px solid #000;
}
.section__youtube .youtube-swiper .swiper-button-prev {
  left: 2px;
}
.section__youtube .youtube-swiper .swiper-button-prev::after {
  content: "";
  background: url(../images/icon__arrowr.svg);
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  width: 25px;
  height: 25px;
}
.section__youtube .youtube-swiper .swiper-button-next {
  right: 2px;
}
.section__youtube .youtube-swiper .swiper-button-next::after {
  content: "";
  background: url(../images/icon__arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  width: 25px;
  height: 25px;
}
.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: 10px;
  }
}
.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;
  justify-content: center;
}
.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: 3rem;
  }
}
@media (min-width: 768px) {
  .section__project .wrapper__title {
    margin-bottom: 4rem;
  }
}
.section__project .wrapper__title h2 {
  background: url(../images/deco__hukidashi.png);
  background-size: contain;
  background-repeat: no-repeat;
  color: #fff;
  width: 100%;
  padding-top: 1em;
  padding-left: 1em;
  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;
  width: 100%;
}
.section__project .wrapper__projects .container__project {
  border: solid 7px #000;
  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: 0 1 calc((100% - 20px) / 2);
  }
}
@media (min-width: 992px) {
  .section__project .wrapper__projects .container__project {
    flex: 0 1 calc((100% - 20px) / 3);
  }
}
.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;
  }
}
@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;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  max-width: 500px;
  margin-right: 10px;
}
.section__project .wrapper__projects .container__project .wrapper__desc > div .wrapper__owner .name__owner > a {
  font-weight: normal;
}
@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: 5rem;
  }
}
.section__project.project-expiring .wrapper__title h2 {
  height: 85px;
}
@media (min-width: 768px) {
  .section__project.project-expiring .wrapper__title h2 {
    padding-top: 1.3em;
    font-size: 22px;
    height: 105px;
  }
}
@media (min-width: 768px) {
  .section__project.project-success .wrapper__title {
    margin-bottom: 5rem;
  }
}
.section__project.project-success .wrapper__title h2 {
  height: 80px;
}
@media (min-width: 768px) {
  .section__project.project-success .wrapper__title h2 {
    padding-top: 1.3em;
    height: 105px;
  }
}
.section__proposal {
  width: 100%;
  background: url(../images/proposal-bg.png);
  background-size: cover;
  position: relative;
  border: 5px solid #000;
  padding: 50px 0;
  overflow-x: hidden;
}
.section__proposal h2 {
  max-width: 650px;
  margin: 0 auto;
  width: 70%;
  min-width: 290px;
}
@media (min-width: 400px) {
  .section__proposal h2 {
    min-width: 300px;
  }
}
@media (min-width: 576px) {
  .section__proposal h2 {
    width: 95%;
  }
}
.section__proposal p {
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}
.section__proposal .wrapper__btn {
  max-width: 1260px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  justify-content: center;
  margin: 20px auto 0 auto;
}
@media (min-width: 576px) {
  .section__proposal .wrapper__btn {
    flex-direction: row;
  }
}
.section__proposal .wrapper__btn .btn__guide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 230px;
  height: 66px;
  border: 5px solid #000;
  background: #fff;
  transition: 0.3s;
  box-shadow: 0 3px 2px #222;
  margin: auto;
}
@media (min-width: 576px) {
  .section__proposal .wrapper__btn .btn__guide {
    margin: 0;
  }
}
.section__proposal .wrapper__btn .btn__guide img {
  width: 130px;
  display: block;
  position: relative;
  display: block;
}
.section__proposal .wrapper__btn .btn__guide:hover {
  box-shadow: 0 1px 0 #111;
  transform: translateY(2px);
}
.section__proposal .wrapper__btn .btn__proposal {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 230px;
  height: 66px;
  border: 5px solid #000;
  background: #FF9100;
  box-shadow: 0 3px 2px #222;
  transition: 0.3s;
  margin: auto;
  margin-top: 20px;
}
@media (min-width: 576px) {
  .section__proposal .wrapper__btn .btn__proposal {
    margin: 0;
    margin-left: 20px;
  }
}
.section__proposal .wrapper__btn .btn__proposal img {
  width: 75px;
  display: block;
}
.section__proposal .wrapper__btn .btn__proposal:hover {
  box-shadow: 0 1px 0 #111;
  transform: translateY(2px);
}

footer {
  bottom: 0;
  background: #FFA127;
  color: #000;
  overflow-x: hidden;
  width: 100%;
}
footer .footer-menu {
  overflow-x: hidden;
  width: 100%;
  background: #000;
}
footer .footer-menu > div {
  flex-direction: column;
  align-items: flex-start;
  padding: 25px 10px;
}
@media (min-width: 576px) {
  footer .footer-menu > div {
    flex-direction: row;
    padding: 50px 15px;
  }
}
footer .footer-menu > div > div {
  flex: 1;
  margin-bottom: 25px;
}
@media (min-width: 576px) {
  footer .footer-menu > div > div {
    margin-bottom: 0px;
  }
}
footer .footer-menu > div > div h6 {
  font-size: clamp(15px, 0.5vw, 18px);
  margin-bottom: 10px;
  color: #fff;
}
footer .footer-menu > div > div ul li a {
  color: #fff;
  font-weight: 500;
  font-size: clamp(12px, 0.5vw, 14px);
}
footer .footer-menu > div > div ul li a:hover {
  text-decoration: underline;
}
footer .footer-bottom > div {
  align-items: center;
  flex-direction: column;
}
@media (min-width: 768px) {
  footer .footer-bottom > div {
    flex-direction: row;
  }
}
footer .footer-bottom > div p {
  padding-bottom: 15px;
  width: 100%;
  font-size: 10px;
}
@media (min-width: 576px) {
  footer .footer-bottom > div p {
    font-size: 12px;
  }
}
@media (min-width: 768px) {
  footer .footer-bottom > div p {
    width: 35%;
    padding-bottom: 0;
  }
}
footer .footer-bottom > div div {
  width: 100%;
  order: -1;
}
@media (min-width: 768px) {
  footer .footer-bottom > div div {
    order: 1;
  }
}
footer .footer-bottom > div div ul {
  display: flex;
  padding: 20px 15px 20px 0;
  justify-content: flex-start;
}
@media (min-width: 768px) {
  footer .footer-bottom > div div ul {
    justify-content: flex-end;
    padding: 20px 15px;
  }
}
footer .footer-bottom > div div ul li {
  margin-right: 10px;
  font-size: 12px;
}
@media (min-width: 576px) {
  footer .footer-bottom > div div ul li {
    font-size: 16px;
  }
}
footer .footer-bottom > div div ul li a:hover {
  text-decoration: underline;
}

.nav__side {
  width: 60px;
  margin-left: auto;
  margin-bottom: 50px;
  position: fixed;
  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: flex;
  justify-content: center;
  align-items: center;
  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: 4px;
  padding-bottom: 2px;
}
.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: 2px;
  padding-bottom: 2px;
}
.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;
  justify-content: center;
  margin: 0 10px 20px 10px;
  min-height: 850px;
}
@media (min-width: 768px) {
  .container__main {
    flex-direction: row-reverse;
    margin: 0 0 20px 0;
  }
}
.container__main main {
  max-width: 1040px;
  flex: 1;
}
.container__main h2 {
  margin-top: 10px;
}
.container__main .wrapper__projects .container__project {
  border: solid 5px #000;
}
.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: 100%;
  flex: none;
  margin: 30px auto;
  border: solid 5px #000;
  background-color: #fff;
}
@media (min-width: 768px) {
  .sidebar__mypage {
    width: 98%;
    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;
  border: solid 5px #000;
  background-color: #fff;
}
@media (min-width: 576px) {
  .sidebar__page {
    width: 210px;
    margin: 0 10px;
  }
}
.sidebar__page h4 {
  background: url(../images/deco__h4.png);
  background-size: 3px;
  padding: 5px 0;
}
.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: 3px;
}
.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__tag > div {
  padding: 15px 0;
}
.sidebar__page .wrapper__tag > div a {
  padding-left: 5%;
}
.sidebar__page .wrapper__type > div {
  padding: 15px 0;
}
.sidebar__page .wrapper__type > 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;
}

.page__project {
  min-height: 100vh;
  position: relative;
}
.page__project main {
  position: relative;
}
.page__project 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) {
  .page__project main .mv__right {
    top: -35px;
  }
}
@media (min-width: 992px) {
  .page__project main .mv__right {
    max-width: 290px;
    position: inherit;
    top: 0;
  }
}
.page__project main .mv__right .wrapper_banner {
  border: solid 10px #000;
}
.page__project main .mv__right .wrapper_banner a {
  height: 86px;
  color: black;
}
.page__project main .mv__right .wrapper_banner a:not(:last-of-type) {
  border-bottom: solid 10px #000;
}
.page__project main .mv__right .wrapper_banner .btn__myProject {
  line-height: 80px;
  background: url(../images/dot_103.bmp);
  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;
}
@media (min-width: 768px) {
  .page__project main .mv__right .wrapper_banner .btn__myProject {
    font-size: 20px;
  }
}
.page__project main .mv__right .wrapper_banner .btn__myProject:hover {
  background: url(../images/bg2.svg);
  background-color: #fff;
  background-size: cover;
}
.page__project main .mv__right .wrapper_banner .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;
  padding-top: 20px;
  border-top: none;
  background: #FFA127;
  font-size: 16px;
}
@media (min-width: 768px) {
  .page__project main .mv__right .wrapper_banner .btn__navGuide {
    font-size: 20px;
  }
}
.page__project main .mv__right .wrapper_banner .btn__navGuide:hover {
  background: url(../images/dot_102.bmp);
}
.page__project main .mv__right .wrapper_banner .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;
  line-height: 70px;
}
.page__project main .mv__right .wrapper_banner .btn__shop:hover {
  filter: saturate(200%);
  background-position: 70% 50%;
  transition: 0.5s;
}

.single__project .content__project {
  background: #fff;
  padding: 15px;
  border: solid 7px #000;
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .single__project .content__project {
    padding: 30px;
  }
}
.single__project .content__project h1 {
  background: #000;
  background-size: contain;
  background-repeat: no-repeat;
  padding: 10px;
  color: #fff;
  margin-bottom: 45px;
  position: relative;
}
.single__project .content__project h1::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -40px;
  left: 50px;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-color: #000 transparent transparent transparent;
  border-width: 45px 35px 0 35px;
}
.single__project .content__project > div {
  flex-direction: column-reverse;
}
@media (min-width: 768px) {
  .single__project .content__project > div {
    flex-direction: row;
  }
}
.single__project .content__project > div .wrapper__text {
  padding-top: 3rem;
  padding-bottom: 60px;
  align-self: flex-start;
  width: 100%;
}
@media (min-width: 768px) {
  .single__project .content__project > div .wrapper__text {
    margin-right: 20px;
    padding-top: 10px;
    width: 70%;
  }
}
.single__project .content__project > div .wrapper__text p {
  font-size: clamp(14px, 0.5vw, 16px);
  margin-top: 1.5rem;
}
.single__project .content__project > div .wrapper__text img {
  max-width: 730px;
  display: block;
  margin: 1rem auto;
}
.single__project .content__project > div .wrapper__action {
  margin-top: 10px;
  padding: 10px;
}
.single__project .content__project > div .wrapper__action .btn__purchase {
  border: solid 5px #000;
  padding: 10px;
  margin-bottom: 10px;
  background: #FFA127;
  text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, 0 -1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
}
.single__project .content__project > div .wrapper__action .btn__favorite {
  border: solid 2px #555;
  justify-content: center;
  padding-right: 10px;
}
.single__project .content__project > div .wrapper__action .btn__favorite p {
  margin-left: -5px;
}
.single__project .content__project > div .wrapper__action .btn__favorite .likeButton .border {
  fill: rgb(255, 255, 255);
}
.single__project .content__project > div .wrapper__action .btn__favorite .likeButton .explosion {
  transform-origin: 250px 250px;
  transform: scale(0.02);
  stroke: rgb(221, 70, 136);
  fill: none;
  opacity: 0;
  stroke-width: 1;
  transform-origin: 250px 250px;
}
.single__project .content__project > div .wrapper__action .btn__favorite .likeButton .particleLayer {
  opacity: 0;
}
.single__project .content__project > div .wrapper__action .btn__favorite .likeButton .particleLayer circle {
  opacity: 0;
  transform-origin: 250px 250px;
}
.single__project .content__project > div .wrapper__action .btn__favorite .likeButton .heart {
  fill: rgba(6, 6, 6, 0.24);
  transform: scale(0.8);
  transform-origin: 250px 250px;
}
.single__project .content__project > div .wrapper__action .btn__favorite.clicked .explosion {
  -webkit-animation: explosionAnime 800ms;
          animation: explosionAnime 800ms;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.single__project .content__project > div .wrapper__action .btn__favorite.clicked .heart {
  -webkit-animation: heartAnime 800ms;
          animation: heartAnime 800ms;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.single__project .content__project > div .wrapper__action .btn__favorite.clicked .particleLayer {
  -webkit-animation: particleLayerAnime 800ms;
          animation: particleLayerAnime 800ms;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.single__project .content__project > div .wrapper__action .btn__favorite.clicked .particleLayer circle:nth-child(1) {
  -webkit-animation: particleAnimate1 800ms;
          animation: particleAnimate1 800ms;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.single__project .content__project > div .wrapper__action .btn__favorite.clicked .particleLayer circle:nth-child(2) {
  -webkit-animation: particleAnimate2 800ms;
          animation: particleAnimate2 800ms;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.single__project .content__project > div .wrapper__action .btn__favorite.clicked .particleLayer circle:nth-child(3) {
  -webkit-animation: particleAnimate3 800ms;
          animation: particleAnimate3 800ms;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.single__project .content__project > div .wrapper__action .btn__favorite.clicked .particleLayer circle:nth-child(4) {
  -webkit-animation: particleAnimate4 800ms;
          animation: particleAnimate4 800ms;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.single__project .content__project > div .wrapper__action .btn__favorite.clicked .particleLayer circle:nth-child(5) {
  -webkit-animation: particleAnimate5 800ms;
          animation: particleAnimate5 800ms;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.single__project .content__project > div .wrapper__action .btn__favorite.clicked .particleLayer circle:nth-child(6) {
  -webkit-animation: particleAnimate6 800ms;
          animation: particleAnimate6 800ms;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.single__project .content__project > div .wrapper__action .btn__favorite.clicked .particleLayer circle:nth-child(7) {
  -webkit-animation: particleAnimate7 800ms;
          animation: particleAnimate7 800ms;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.single__project .content__project > div .wrapper__action .btn__favorite.clicked .particleLayer circle:nth-child(8) {
  -webkit-animation: particleAnimate8 800ms;
          animation: particleAnimate8 800ms;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.single__project .content__project > div .wrapper__action .btn__favorite.clicked .particleLayer circle:nth-child(9) {
  -webkit-animation: particleAnimate9 800ms;
          animation: particleAnimate9 800ms;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.single__project .content__project > div .wrapper__action .btn__favorite.clicked .particleLayer circle:nth-child(10) {
  -webkit-animation: particleAnimate10 800ms;
          animation: particleAnimate10 800ms;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.single__project .content__project > div .wrapper__action .btn__favorite.clicked .particleLayer circle:nth-child(11) {
  -webkit-animation: particleAnimate11 800ms;
          animation: particleAnimate11 800ms;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.single__project .content__project > div .wrapper__action .btn__favorite.clicked .particleLayer circle:nth-child(12) {
  -webkit-animation: particleAnimate12 800ms;
          animation: particleAnimate12 800ms;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.single__project .content__project > div .wrapper__action .btn__favorite.clicked .particleLayer circle:nth-child(13) {
  -webkit-animation: particleAnimate13 800ms;
          animation: particleAnimate13 800ms;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.single__project .content__project > div .wrapper__action .btn__favorite.clicked .particleLayer circle:nth-child(14) {
  -webkit-animation: particleAnimate14 800ms;
          animation: particleAnimate14 800ms;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@-webkit-keyframes particleLayerAnime {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  31% {
    opacity: 1;
  }
  60% {
    transform: translate(0, 0);
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(0, -20px);
  }
}
@keyframes particleLayerAnime {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  31% {
    opacity: 1;
  }
  60% {
    transform: translate(0, 0);
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(0, -20px);
  }
}
@-webkit-keyframes particleAnimate1 {
  0% {
    transform: translate(0, 0);
  }
  30% {
    opacity: 1;
    transform: translate(0, 0);
  }
  80% {
    transform: translate(-16px, -59px);
  }
  90% {
    transform: translate(-16px, -59px);
  }
  100% {
    opacity: 1;
    transform: translate(-16px, -59px);
  }
}
@keyframes particleAnimate1 {
  0% {
    transform: translate(0, 0);
  }
  30% {
    opacity: 1;
    transform: translate(0, 0);
  }
  80% {
    transform: translate(-16px, -59px);
  }
  90% {
    transform: translate(-16px, -59px);
  }
  100% {
    opacity: 1;
    transform: translate(-16px, -59px);
  }
}
@-webkit-keyframes particleAnimate2 {
  0% {
    transform: translate(0, 0);
  }
  30% {
    opacity: 1;
    transform: translate(0, 0);
  }
  80% {
    transform: translate(41px, 43px);
  }
  90% {
    transform: translate(41px, 43px);
  }
  100% {
    opacity: 1;
    transform: translate(41px, 43px);
  }
}
@keyframes particleAnimate2 {
  0% {
    transform: translate(0, 0);
  }
  30% {
    opacity: 1;
    transform: translate(0, 0);
  }
  80% {
    transform: translate(41px, 43px);
  }
  90% {
    transform: translate(41px, 43px);
  }
  100% {
    opacity: 1;
    transform: translate(41px, 43px);
  }
}
@-webkit-keyframes particleAnimate3 {
  0% {
    transform: translate(0, 0);
  }
  30% {
    opacity: 1;
    transform: translate(0, 0);
  }
  80% {
    transform: translate(50px, -48px);
  }
  90% {
    transform: translate(50px, -48px);
  }
  100% {
    opacity: 1;
    transform: translate(50px, -48px);
  }
}
@keyframes particleAnimate3 {
  0% {
    transform: translate(0, 0);
  }
  30% {
    opacity: 1;
    transform: translate(0, 0);
  }
  80% {
    transform: translate(50px, -48px);
  }
  90% {
    transform: translate(50px, -48px);
  }
  100% {
    opacity: 1;
    transform: translate(50px, -48px);
  }
}
@-webkit-keyframes particleAnimate4 {
  0% {
    transform: translate(0, 0);
  }
  30% {
    opacity: 1;
    transform: translate(0, 0);
  }
  80% {
    transform: translate(-39px, 36px);
  }
  90% {
    transform: translate(-39px, 36px);
  }
  100% {
    opacity: 1;
    transform: translate(-39px, 36px);
  }
}
@keyframes particleAnimate4 {
  0% {
    transform: translate(0, 0);
  }
  30% {
    opacity: 1;
    transform: translate(0, 0);
  }
  80% {
    transform: translate(-39px, 36px);
  }
  90% {
    transform: translate(-39px, 36px);
  }
  100% {
    opacity: 1;
    transform: translate(-39px, 36px);
  }
}
@-webkit-keyframes particleAnimate5 {
  0% {
    transform: translate(0, 0);
  }
  30% {
    opacity: 1;
    transform: translate(0, 0);
  }
  80% {
    transform: translate(-39px, 32px);
  }
  90% {
    transform: translate(-39px, 32px);
  }
  100% {
    opacity: 1;
    transform: translate(-39px, 32px);
  }
}
@keyframes particleAnimate5 {
  0% {
    transform: translate(0, 0);
  }
  30% {
    opacity: 1;
    transform: translate(0, 0);
  }
  80% {
    transform: translate(-39px, 32px);
  }
  90% {
    transform: translate(-39px, 32px);
  }
  100% {
    opacity: 1;
    transform: translate(-39px, 32px);
  }
}
@-webkit-keyframes particleAnimate6 {
  0% {
    transform: translate(0, 0);
  }
  30% {
    opacity: 1;
    transform: translate(0, 0);
  }
  80% {
    transform: translate(48px, 6px);
  }
  90% {
    transform: translate(48px, 6px);
  }
  100% {
    opacity: 1;
    transform: translate(48px, 6px);
  }
}
@keyframes particleAnimate6 {
  0% {
    transform: translate(0, 0);
  }
  30% {
    opacity: 1;
    transform: translate(0, 0);
  }
  80% {
    transform: translate(48px, 6px);
  }
  90% {
    transform: translate(48px, 6px);
  }
  100% {
    opacity: 1;
    transform: translate(48px, 6px);
  }
}
@-webkit-keyframes particleAnimate7 {
  0% {
    transform: translate(0, 0);
  }
  30% {
    opacity: 1;
    transform: translate(0, 0);
  }
  80% {
    transform: translate(-69px, -36px);
  }
  90% {
    transform: translate(-69px, -36px);
  }
  100% {
    opacity: 1;
    transform: translate(-69px, -36px);
  }
}
@keyframes particleAnimate7 {
  0% {
    transform: translate(0, 0);
  }
  30% {
    opacity: 1;
    transform: translate(0, 0);
  }
  80% {
    transform: translate(-69px, -36px);
  }
  90% {
    transform: translate(-69px, -36px);
  }
  100% {
    opacity: 1;
    transform: translate(-69px, -36px);
  }
}
@-webkit-keyframes particleAnimate8 {
  0% {
    transform: translate(0, 0);
  }
  30% {
    opacity: 1;
    transform: translate(0, 0);
  }
  80% {
    transform: translate(-12px, -52px);
  }
  90% {
    transform: translate(-12px, -52px);
  }
  100% {
    opacity: 1;
    transform: translate(-12px, -52px);
  }
}
@keyframes particleAnimate8 {
  0% {
    transform: translate(0, 0);
  }
  30% {
    opacity: 1;
    transform: translate(0, 0);
  }
  80% {
    transform: translate(-12px, -52px);
  }
  90% {
    transform: translate(-12px, -52px);
  }
  100% {
    opacity: 1;
    transform: translate(-12px, -52px);
  }
}
@-webkit-keyframes particleAnimate9 {
  0% {
    transform: translate(0, 0);
  }
  30% {
    opacity: 1;
    transform: translate(0, 0);
  }
  80% {
    transform: translate(-43px, -21px);
  }
  90% {
    transform: translate(-43px, -21px);
  }
  100% {
    opacity: 1;
    transform: translate(-43px, -21px);
  }
}
@keyframes particleAnimate9 {
  0% {
    transform: translate(0, 0);
  }
  30% {
    opacity: 1;
    transform: translate(0, 0);
  }
  80% {
    transform: translate(-43px, -21px);
  }
  90% {
    transform: translate(-43px, -21px);
  }
  100% {
    opacity: 1;
    transform: translate(-43px, -21px);
  }
}
@-webkit-keyframes particleAnimate10 {
  0% {
    transform: translate(0, 0);
  }
  30% {
    opacity: 1;
    transform: translate(0, 0);
  }
  80% {
    transform: translate(-10px, 47px);
  }
  90% {
    transform: translate(-10px, 47px);
  }
  100% {
    opacity: 1;
    transform: translate(-10px, 47px);
  }
}
@keyframes particleAnimate10 {
  0% {
    transform: translate(0, 0);
  }
  30% {
    opacity: 1;
    transform: translate(0, 0);
  }
  80% {
    transform: translate(-10px, 47px);
  }
  90% {
    transform: translate(-10px, 47px);
  }
  100% {
    opacity: 1;
    transform: translate(-10px, 47px);
  }
}
@-webkit-keyframes particleAnimate11 {
  0% {
    transform: translate(0, 0);
  }
  30% {
    opacity: 1;
    transform: translate(0, 0);
  }
  80% {
    transform: translate(66px, -9px);
  }
  90% {
    transform: translate(66px, -9px);
  }
  100% {
    opacity: 1;
    transform: translate(66px, -9px);
  }
}
@keyframes particleAnimate11 {
  0% {
    transform: translate(0, 0);
  }
  30% {
    opacity: 1;
    transform: translate(0, 0);
  }
  80% {
    transform: translate(66px, -9px);
  }
  90% {
    transform: translate(66px, -9px);
  }
  100% {
    opacity: 1;
    transform: translate(66px, -9px);
  }
}
@-webkit-keyframes particleAnimate12 {
  0% {
    transform: translate(0, 0);
  }
  30% {
    opacity: 1;
    transform: translate(0, 0);
  }
  80% {
    transform: translate(40px, -45px);
  }
  90% {
    transform: translate(40px, -45px);
  }
  100% {
    opacity: 1;
    transform: translate(40px, -45px);
  }
}
@keyframes particleAnimate12 {
  0% {
    transform: translate(0, 0);
  }
  30% {
    opacity: 1;
    transform: translate(0, 0);
  }
  80% {
    transform: translate(40px, -45px);
  }
  90% {
    transform: translate(40px, -45px);
  }
  100% {
    opacity: 1;
    transform: translate(40px, -45px);
  }
}
@-webkit-keyframes particleAnimate13 {
  0% {
    transform: translate(0, 0);
  }
  30% {
    opacity: 1;
    transform: translate(0, 0);
  }
  80% {
    transform: translate(29px, 24px);
  }
  90% {
    transform: translate(29px, 24px);
  }
  100% {
    opacity: 1;
    transform: translate(29px, 24px);
  }
}
@keyframes particleAnimate13 {
  0% {
    transform: translate(0, 0);
  }
  30% {
    opacity: 1;
    transform: translate(0, 0);
  }
  80% {
    transform: translate(29px, 24px);
  }
  90% {
    transform: translate(29px, 24px);
  }
  100% {
    opacity: 1;
    transform: translate(29px, 24px);
  }
}
@-webkit-keyframes particleAnimate14 {
  0% {
    transform: translate(0, 0);
  }
  30% {
    opacity: 1;
    transform: translate(0, 0);
  }
  80% {
    transform: translate(-10px, 50px);
  }
  90% {
    transform: translate(-10px, 50px);
  }
  100% {
    opacity: 1;
    transform: translate(-10px, 50px);
  }
}
@keyframes particleAnimate14 {
  0% {
    transform: translate(0, 0);
  }
  30% {
    opacity: 1;
    transform: translate(0, 0);
  }
  80% {
    transform: translate(-10px, 50px);
  }
  90% {
    transform: translate(-10px, 50px);
  }
  100% {
    opacity: 1;
    transform: translate(-10px, 50px);
  }
}
@-webkit-keyframes heartAnime {
  0% {
    transform: scale(0);
    fill: #E2264D;
  }
  39% {
    transform: scale(0);
  }
  60% {
    transform: scale(1.1, 1.1);
  }
  70% {
    transform: scale(1, 1) translate(0%, 0%);
  }
  75% {
    transform: scale(1.05, 0.9) translate(0%, 0%);
  }
  80% {
    transform: scale(1, 1) translate(0%, 0%);
  }
  100% {
    transform: scale(0.95, 0.95) translate(0%, 0%);
    fill: #E2264D;
  }
}
@keyframes heartAnime {
  0% {
    transform: scale(0);
    fill: #E2264D;
  }
  39% {
    transform: scale(0);
  }
  60% {
    transform: scale(1.1, 1.1);
  }
  70% {
    transform: scale(1, 1) translate(0%, 0%);
  }
  75% {
    transform: scale(1.05, 0.9) translate(0%, 0%);
  }
  80% {
    transform: scale(1, 1) translate(0%, 0%);
  }
  100% {
    transform: scale(0.95, 0.95) translate(0%, 0%);
    fill: #E2264D;
  }
}
.single__project .content__project > div .wrapper__data {
  width: 100%;
  padding-top: 30px;
}
@media (min-width: 768px) {
  .single__project .content__project > div .wrapper__data {
    padding-top: 10px;
    width: 30%;
    align-self: flex-start;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
  }
}
.single__project .content__project > div .wrapper__data > div {
  border: solid 5px #000;
}
.single__project .content__project > div .wrapper__data > div:last-of-type {
  margin-top: 10px;
  padding: 10px;
}
.single__project .content__project > div .wrapper__data > div:last-of-type > p {
  font-size: 13px;
}
.single__project .content__project > div .wrapper__data > div > P {
  margin: 5px 10px 5px auto;
}
.single__project .content__project > div .wrapper__data dl {
  font-weight: bold;
  padding: 30px 10px;
}
.single__project .content__project > div .wrapper__data dl dt {
  font-size: clamp(13px, 0.5vw, 16px);
}
.single__project .content__project > div .wrapper__data dl dd {
  font-size: clamp(16px, 2vw, 20px);
}
.single__project .content__project > div .wrapper__data .meter {
  width: 95%;
  margin: 0 auto 3px auto;
}
.single__project .content__project > div .wrapper__data > p {
  margin-right: 10px;
  margin-bottom: 5px;
  font-size: clamp(13px, 0.5vw, 16px);
}
.single__project .content__project > div .wrapper__data .wrapper__owner .name__owner {
  font-size: 13px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.single__project .content__project > div .wrapper__data .wrapper__owner .name__owner > a {
  font-weight: normal;
}
.single__project .content__project > div .wrapper__data .wrapper__owner .name__owner:hover {
  text-decoration: underline;
}
.single__project .content__project > div .wrapper__data .wrapper__owner .img__owner {
  width: 45px;
  height: 45px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 5px;
  margin-bottom: 5px;
}
.single__project .section__proposal {
  margin-bottom: 0;
}

.mypage main {
  background: #fff;
  border: solid 5px #000;
}
@media (max-width: 575.98px) {
  .mypage main {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  .mypage main {
    margin-right: 10px;
    margin-left: 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 {
  border: solid 3px #000;
  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;
  transition: 0.3s;
}
.mypage main .wrapper__projects .content__project .btn__detail:hover {
  background: #FFA127;
}

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

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

.mypage__setting main {
  background: #fff;
  border: solid 5px #000;
  padding: 10px;
}
.mypage__setting main h2 {
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}
.mypage__setting main .sub-title {
  margin-bottom: 5px;
}
.mypage__setting main form {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
  width: 95%;
  max-width: 950px;
}
.mypage__setting main form .form__lists {
  margin-top: 20px;
}
.mypage__setting main form .form__lists > p {
  margin-bottom: 20px;
}
.mypage__setting main form .form__lists .form__list {
  margin-bottom: 15px;
  padding: 20px 10px;
  border: 1px solid #c2c2c2;
  margin-bottom: 10px;
  position: relative;
}
.mypage__setting main form .form__lists .form__list.d-flex {
  justify-content: space-between;
}
.mypage__setting main form .form__lists .form__list .address__name-last {
  width: 100%;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .mypage__setting main form .form__lists .form__list .address__name-last {
    width: 49%;
    margin-right: 10px;
    margin-bottom: 0;
  }
}
.mypage__setting main form .form__lists .form__list .address__name-first {
  width: 100%;
}
@media (min-width: 768px) {
  .mypage__setting main form .form__lists .form__list .address__name-first {
    width: 49%;
  }
}
.mypage__setting main form .form__lists .form__list .address__kana-last {
  width: 100%;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .mypage__setting main form .form__lists .form__list .address__kana-last {
    width: 49%;
    margin-right: 10px;
    margin-bottom: 0;
  }
}
.mypage__setting main form .form__lists .form__list .address__kana-first {
  width: 100%;
}
@media (min-width: 768px) {
  .mypage__setting main form .form__lists .form__list .address__kana-first {
    width: 49%;
  }
}
.mypage__setting main form .form__lists .form__list.list__address {
  padding: 20px 10px;
  border: 1px solid #c2c2c2;
  margin-bottom: 10px;
  position: relative;
}
.mypage__setting main form .form__lists .form__list.list__address label input[type=radio] {
  margin-right: 10px;
  position: absolute;
  opacity: 0;
}
.mypage__setting main form .form__lists .form__list.list__address label input[type=radio]:checked + .address:before {
  background-color: #FFA127;
  box-shadow: inset 0 0 0 2px #fff;
}
.mypage__setting main form .form__lists .form__list.list__address label .address {
  white-space: pre-line;
}
.mypage__setting main form .form__lists .form__list.list__address label .address:before {
  content: "";
  background: #fff;
  border-radius: 100%;
  border: 1px solid #999;
  display: inline-block;
  width: 16px;
  height: 16px;
  position: relative;
  top: -2px;
  margin-right: 15px;
  vertical-align: middle;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
}
.mypage__setting main form .form__lists .form__list.list__address:last-of-type {
  margin-bottom: 30px;
}
.mypage__setting main form .form__lists .form__list label input[type=radio] {
  margin-right: 10px;
  position: absolute;
  opacity: 0;
}
.mypage__setting main form .form__lists .form__list label input[type=radio]:checked + .payment::before {
  background-color: #FFA127;
  box-shadow: inset 0 0 0 2px #fff;
}
.mypage__setting main form .form__lists .form__list label .payment {
  display: inline;
}
.mypage__setting main form .form__lists .form__list label .payment:before {
  content: "";
  background: #fff;
  border-radius: 100%;
  border: 1px solid #999;
  display: inline-block;
  width: 16px;
  height: 16px;
  position: relative;
  top: -2px;
  margin-right: 15px;
  vertical-align: middle;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
}
.mypage__setting main form .form__lists .form__list:last-of-type {
  margin-bottom: 30px;
}
.mypage__setting main form .form__lists .form__list.list__addcard, .mypage__setting main form .form__lists .form__list.list__addaddress, .mypage__setting main form .form__lists .form__list.list__mailpass {
  border: 0;
  margin-bottom: 20px;
  padding: 0;
}
.mypage__setting main form .form__lists .form__list.list__addcard .card__num > P, .mypage__setting main form .form__lists .form__list.list__addaddress .card__num > P, .mypage__setting main form .form__lists .form__list.list__mailpass .card__num > P {
  margin-bottom: 2px;
}
.mypage__setting main form .form__lists .form__list.list__addcard .card__num .text__month, .mypage__setting main form .form__lists .form__list.list__addaddress .card__num .text__month, .mypage__setting main form .form__lists .form__list.list__mailpass .card__num .text__month {
  margin-left: 5px;
  margin-right: 10px;
}
.mypage__setting main form .form__lists .form__list.list__addcard .card__num .text__year, .mypage__setting main form .form__lists .form__list.list__addaddress .card__num .text__year, .mypage__setting main form .form__lists .form__list.list__mailpass .card__num .text__year {
  margin-left: 5px;
}
.mypage__setting main form .form__lists .form__list.list__mailpass .text__mail {
  font-size: 13px;
  margin-top: 5px;
  margin-bottom: 5px;
  color: #666;
}
.mypage__setting main .styles__list__simple li {
  background: #fff;
  position: relative;
}
.mypage__setting main .styles__list__simple li:hover {
  background: rgb(243, 243, 243);
}
.mypage__setting main .styles__list__simple li::after {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  content: "";
  width: 13px;
  height: 15px;
  border-right: transparent;
  border-top: transparent;
}
.mypage__setting main .profile__img {
  margin-top: 20px;
}
.mypage__setting main .profile__img figure img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
}
.mypage__setting main .profile__name {
  margin-bottom: 10px;
}
.mypage__setting main .profile__introduce {
  margin-bottom: 20px;
}
.mypage__setting main .btn__add {
  font-weight: normal;
  position: relative;
  display: inline;
}
.mypage__setting main .btn__add::after {
  position: absolute;
  bottom: -6px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #c2c2c2;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.mypage__setting main .btn__add:hover {
  text-decoration: none;
}
.mypage__setting main .btn__add:hover::after {
  bottom: -4px;
  opacity: 1;
  visibility: visible;
}

.mypage__purchases main .wrapper__projects .content__project {
  padding: 0;
}
.mypage__purchases main .wrapper__projects .content__project-top {
  background: #e5e3de;
  padding: 7px 10px;
  font-size: 14px;
  flex-direction: column;
  align-items: inherit;
}
@media (min-width: 576px) {
  .mypage__purchases main .wrapper__projects .content__project-top {
    flex-direction: row;
  }
}
.mypage__purchases main .wrapper__projects .content__project-top .order-date {
  margin-bottom: 0.5em;
}
@media (min-width: 576px) {
  .mypage__purchases main .wrapper__projects .content__project-top .order-date {
    margin-bottom: 0;
    margin-right: 3em;
  }
}
.mypage__purchases main .wrapper__projects .content__project-bottom {
  padding: 15px 10px;
  flex-direction: column;
  align-items: inherit;
}
@media (min-width: 576px) {
  .mypage__purchases main .wrapper__projects .content__project-bottom {
    flex-direction: row;
  }
}
.mypage__purchases main .wrapper__projects .content__project-bottom .order-title {
  margin-bottom: 8px;
  font-size: 18px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  height: 1.1em;
}
.mypage__purchases main .wrapper__projects .content__project-bottom .order-price {
  margin-bottom: 8px;
}
.mypage__purchases main .wrapper__projects .content__project-bottom .btn__detail {
  display: block;
  margin: auto;
}
@media (min-width: 576px) {
  .mypage__purchases main .wrapper__projects .content__project-bottom .btn__detail {
    margin-right: 0;
    margin-left: auto;
  }
}

.mypage__purchases-detail .detail__wrapper-top {
  padding: 10px;
  border: 1px solid #ccc;
  background: rgb(247, 247, 247);
  margin: 30px 10px;
  font-size: 15px;
}
@media (min-width: 576px) {
  .mypage__purchases-detail .detail__wrapper-top {
    margin: 30px 20px;
    font-size: 16px;
  }
}
.mypage__purchases-detail .detail__wrapper-top > P {
  line-height: 1.6;
}
.mypage__purchases-detail .detail__wrapper-bottom {
  margin: 30px 10px;
  font-size: 15px;
}
@media (min-width: 576px) {
  .mypage__purchases-detail .detail__wrapper-bottom {
    margin: 30px 20px;
    font-size: 16px;
  }
}
.mypage__purchases-detail .detail__wrapper-bottom table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 !important;
}
@media (max-width: 575.98px) {
  .mypage__purchases-detail .detail__wrapper-bottom table tr {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
  }
}
.mypage__purchases-detail .detail__wrapper-bottom table tr th, .mypage__purchases-detail .detail__wrapper-bottom table tr td {
  padding: 8px 10px;
  border-right: 1px solid #ddd;
}
.mypage__purchases-detail .detail__wrapper-bottom table tr th:first-of-type, .mypage__purchases-detail .detail__wrapper-bottom table tr td:first-of-type {
  border-left: 1px solid #ddd;
}
.mypage__purchases-detail .detail__wrapper-bottom table tr th {
  background: #eee;
  display: none;
}
@media (min-width: 576px) {
  .mypage__purchases-detail .detail__wrapper-bottom table tr th {
    display: table-cell;
  }
}
@media (max-width: 575.98px) {
  .mypage__purchases-detail .detail__wrapper-bottom table tr td {
    display: flex;
    justify-content: flex-end;
    position: relative;
    padding-left: 5.5em;
    border: 1px solid #ddd;
    border-width: 0 1px;
  }
  .mypage__purchases-detail .detail__wrapper-bottom table tr td::before {
    content: attr(data-label);
    font-weight: bold;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background: #f7f7f7;
    width: 60px;
    height: 99%;
    border-right: 1px solid #ddd;
    padding-top: 0.6em;
    text-align: center;
  }
}
.mypage__purchases-detail .detail__wrapper-bottom table tr:not(:last-of-type) td {
  border-bottom: 1px solid #ccc;
}
@media (max-width: 575.98px) {
  .mypage__purchases-detail .detail__wrapper-bottom table tr:not(:first-of-type) td:first-of-type {
    border-top: 1px solid #ccc;
  }
}
.mypage__purchases-detail .detail__wrapper-bottom table tr:first-of-type th {
  border-top: 1px solid #ccc;
}
.mypage__purchases-detail .detail__wrapper-bottom table tr:last-of-type td {
  border-bottom: 1px solid #ccc;
}
.mypage__purchases-detail .detail__wrapper-bottom > P {
  margin-top: 5px;
}
.mypage__purchases-detail .detail__wrapper-bottom .total {
  width: 53%;
  margin-left: auto;
  font-weight: bold;
  border-top: 1px solid #ccc;
  padding-top: 5px;
  font-size: 16px;
}
@media (min-width: 576px) {
  .mypage__purchases-detail .detail__wrapper-bottom .total {
    font-size: 20px;
  }
}

.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 {
  border: solid 7px #000;
  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;
}

.cart .container__main {
  height: 100%;
}
@media (min-width: 768px) {
  .cart .container__main {
    flex-direction: row;
  }
}
.cart .container__main main {
  margin: 0;
}
.cart .container__main main .wrapper__items {
  background: #fff;
  border: solid 5px #222;
  margin-left: 5px;
  margin-right: 5px;
}
.cart .container__main main .wrapper__items h2 {
  width: 90%;
  margin: 0 auto;
  padding: 20px 0;
}
.cart .container__main main .wrapper__items ul {
  width: 90%;
  margin: 0 auto;
  padding-bottom: 50px;
}
.cart .container__main main .wrapper__items ul li {
  padding: 20px 15px 10px 15px;
  border-top: solid 1px rgb(131, 131, 131);
}
.cart .container__main main .wrapper__items ul li > .content {
  justify-content: space-between;
  flex-direction: column;
}
@media (min-width: 768px) {
  .cart .container__main main .wrapper__items ul li > .content {
    flex-direction: row;
  }
}
.cart .container__main main .wrapper__items ul li > .content .content-left {
  width: 100%;
  height: 230px;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .cart .container__main main .wrapper__items ul li > .content .content-left {
    width: 68%;
    margin-bottom: 0;
  }
}
.cart .container__main 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 .container__main main .wrapper__items ul li > .content .content-left .return {
  margin-top: 20px;
  border: solid 1px #ddd;
  padding: 10px;
  background: rgb(250, 250, 250);
}
.cart .container__main main .wrapper__items ul li > .content .content-left .return .title {
  margin-bottom: 10px;
  font-size: 14px;
}
.cart .container__main 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 .container__main main .wrapper__items ul li > .content .content-left > a {
  font-weight: 500;
  font-size: 17px;
}
.cart .container__main main .wrapper__items ul li > .content .content-left > a:hover {
  text-decoration: underline;
}
.cart .container__main main .wrapper__items ul li > .content .content-left .wrapper__quantity {
  margin-top: 10px;
  font-size: 13px;
}
.cart .container__main main .wrapper__items ul li > .content .content-left .wrapper__quantity select {
  padding: 5px;
}
.cart .container__main main .wrapper__items ul li > .content .content-left .wrapper__quantity a {
  font-weight: normal;
}
.cart .container__main main .wrapper__items ul li > .content .content-left .wrapper__quantity a:hover {
  text-decoration: underline;
}
.cart .container__main main .wrapper__items ul li > .content .content-right {
  width: 100%;
  margin-left: 15px;
  text-align: right;
}
@media (min-width: 768px) {
  .cart .container__main main .wrapper__items ul li > .content .content-right {
    width: 30%;
    height: 190px;
  }
}
.cart .container__main main .wrapper__items ul li > .content .content-right .text-price {
  font-weight: bold;
  font-size: 20px;
}
.cart .container__main main .wrapper__items ul li > .content .content-right .text-shipping {
  font-size: 18px;
}
.cart .container__main main .wrapper__items ul li > .content .content-right .button_buy {
  background: #FFA127;
  border: 2px solid #FFA127;
  text-align: center;
  height: 48px;
  width: 90%;
  min-width: 150px;
  line-height: 48px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  transition: 0.3s;
}
@media (min-width: 576px) {
  .cart .container__main main .wrapper__items ul li > .content .content-right .button_buy {
    width: 50%;
    min-width: 200px;
  }
}
@media (min-width: 768px) {
  .cart .container__main main .wrapper__items ul li > .content .content-right .button_buy {
    min-width: 200px;
    margin-right: inherit;
    margin-top: 77px;
  }
}
.cart .container__main main .wrapper__items ul li > .content .content-right .button_buy:hover {
  border-color: #000;
}
.cart .container__main main .wrapper__items ul li:last-of-type {
  border-bottom: solid 1px rgb(131, 131, 131);
}
.cart .container__main aside {
  background: #fff;
  position: fixed;
  top: -100px;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  padding: 15px;
  border-bottom: 5px solid #000;
  z-index: 100;
}
@media (min-width: 768px) {
  .cart .container__main aside {
    border: 5px solid #000;
    position: -webkit-sticky;
    position: sticky;
    top: 20px;
    left: inherit;
    transform: inherit;
    right: 10px;
    width: 280px;
    height: 310px;
  }
}
.cart .container__main aside .content-top > div {
  padding: 0;
}
@media (max-width: 767.98px) {
  .cart .container__main aside .content-top > div {
    display: none;
  }
}
.cart .container__main aside .content-top > div.total {
  border-bottom: 0;
  padding-bottom: 0;
}
.cart .container__main aside .content-top > div.total p {
  font-size: 18px;
  color: #ff2f2f;
}
.cart .container__main aside .content-top > div:not(:last-of-type) {
  border-bottom: 1px solid rgba(6, 6, 6, 0.1);
  padding: 7px 0;
}
.cart .container__main aside .btn__save {
  width: 100%;
  margin-top: 0;
}
.cart .container__main aside .btn__simple {
  margin-top: 10px;
  margin-bottom: 10px;
  background: #fff;
  border: 1px solid #222;
  display: inline-block;
  padding: 4px 5px;
  cursor: pointer;
  font-size: 13px;
  transition: 0.3s;
}
.cart .container__main aside .btn__simple:hover {
  background: #ffe0bb;
}
.cart .container__main aside .content-bottom {
  padding: 10px 8px;
}
@media (max-width: 767.98px) {
  .cart .container__main aside .content-bottom {
    display: none;
  }
}

.buy main .wrapper__items {
  background: #fff;
  border: solid 5px #222;
}
.buy main .wrapper__items h2 {
  width: 100%;
  margin: 0 auto;
  padding: 20px 15px;
}
@media (min-width: 576px) {
  .buy main .wrapper__items h2 {
    width: 95%;
    padding: 20px 0;
  }
}
.buy main .wrapper__items > div {
  width: 100%;
  padding: 10px 15px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .buy main .wrapper__items > div {
    width: 95%;
  }
}
.buy main .wrapper__items > div .text-title:hover {
  text-decoration: underline;
}
.buy main .wrapper__items > div .text-total {
  font-weight: bold;
  font-size: 20px;
  color: #BF0000;
  margin-top: 20px;
}
.buy main .wrapper__items > div .content {
  margin-bottom: 10px;
}
.buy main .wrapper__items > div .content-top {
  border: solid 1px #ccc;
  padding: 15px;
}
.buy main .wrapper__items > div .content-top .return {
  margin-top: 20px;
  padding: 10px;
  background: #efefef;
}
.buy main .wrapper__shipping {
  background: #fff;
  border: solid 5px #222;
  margin: 10px auto 50px auto;
  position: relative;
}
.buy main .wrapper__shipping .shipping-address-list {
  width: 95%;
  margin: 0 auto;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}
.buy main .wrapper__shipping .wrapper__title {
  padding: 20px 2.5% 10px 2.5%;
}
.buy main .wrapper__shipping .btn__link-change {
  font-size: 14px;
}
.buy main .wrapper__payment {
  width: 97%;
  margin: 10px auto 50px auto;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 576px) {
  .buy main .wrapper__payment {
    width: 95%;
  }
}
.buy main .wrapper__payment input[type=radio] {
  display: none;
}
.buy main .wrapper__payment .tab-menu {
  width: 100%;
}
@media (min-width: 768px) {
  .buy main .wrapper__payment .tab-menu {
    flex: 1 0 33.3%;
  }
}
.buy main .wrapper__payment .payment-list {
  box-sizing: border-box;
  transition: background-color 0.2s linear;
  position: relative;
  display: inline-block;
  padding: 12px 12px 12px 42px;
  background-color: #f6f7f8;
  vertical-align: middle;
  cursor: pointer;
  width: 100%;
}
.buy main .wrapper__payment .payment-list:hover {
  background-color: #FFA127;
}
.buy main .wrapper__payment .payment-list::after {
  transition: border-color 0.2s linear;
  position: absolute;
  top: 50%;
  left: 15px;
  display: inline-block;
  margin-top: -8px;
  width: 15px;
  height: 15px;
  border: 1px solid #555;
  border-radius: 50%;
  content: "";
}
.buy main .wrapper__payment .payment-list::before {
  transition: opacity 0.2s linear;
  position: absolute;
  top: 50%;
  left: 18px;
  display: inline-block;
  margin-top: -5.4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #555;
  content: "";
  opacity: 0;
}
.buy main .wrapper__payment .payment-list:focus {
  background-color: #FFA127;
}
.buy main .wrapper__payment input[type=radio]:checked + .payment-list:before {
  opacity: 1;
}
.buy main .wrapper__payment input[type=radio]:checked + .payment-list {
  background: #FFA127;
}
.buy main .payment_contents {
  width: 95%;
  min-height: 350px;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 400px) {
  .buy main .payment_contents {
    min-height: 300px;
  }
}
.buy main .payment_contents .tabs {
  display: none;
}
.buy main .payment_contents .tabs.creditcard .card-select {
  margin-bottom: 15px;
  padding: 20px 10px;
  border: 1px solid #c2c2c2;
  margin-bottom: 10px;
  position: relative;
}
.buy main .payment_contents .tabs.creditcard .card-select label input[type=radio] {
  margin-right: 10px;
  position: absolute;
  opacity: 0;
}
.buy main .payment_contents .tabs.creditcard .card-select label input[type=radio]:checked + .payment::before {
  background-color: #FFA127;
  box-shadow: inset 0 0 0 2px #fff;
}
.buy main .payment_contents .tabs.creditcard .card-select .payment {
  display: inline;
}
.buy main .payment_contents .tabs.creditcard .card-select .payment:before {
  content: "";
  background: #fff;
  border-radius: 100%;
  border: 1px solid #999;
  display: inline-block;
  width: 16px;
  height: 16px;
  position: relative;
  top: -2px;
  margin-right: 15px;
  vertical-align: middle;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
}
.buy main .payment_contents .tabs.bank {
  position: absolute;
}
.buy main .payment_contents .tabs.convenience {
  position: absolute;
}
.buy main .btn__purchase {
  background: #FFA127;
  border: 2px solid #FFA127;
  text-align: center;
  height: 48px;
  width: 98%;
  line-height: 48px;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s;
  padding: 0;
}
@media (min-width: 400px) {
  .buy main .btn__purchase {
    width: 300px;
  }
}
.buy main .btn__purchase:hover {
  border-color: #000;
}
.buy main .btn__purchase:disabled {
  background: #ccc;
  color: #fff;
  border: 2px solid #ccc;
}
.buy main .btn__purchase:disabled:hover {
  border-color: #ccc;
}

.thankyou main {
  margin-bottom: 50px;
}
.thankyou main .wrapper__contents {
  padding-bottom: 10%;
  background: #fff;
  border: solid 5px #222;
  margin-left: 5px;
  margin-right: 5px;
}
.thankyou main .wrapper__contents h2 {
  margin-top: 10%;
  margin-bottom: 30px;
  position: relative;
}
.thankyou main .wrapper__contents h2 img {
  max-width: 280px;
  width: 90%;
}
@media (min-width: 576px) {
  .thankyou main .wrapper__contents h2 img {
    max-width: 500px;
    width: 85%;
  }
}
.thankyou main .wrapper__contents h2.fade-in {
  opacity: 0;
  -webkit-animation-name: fade-in;
          animation-name: fade-in;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.thankyou main .wrapper__contents p {
  font-size: clamp(14px, 1vw, 16px);
}
.thankyou main .wrapper__contents .wrapper__btn {
  margin: 50px auto auto;
  justify-content: center;
  flex-direction: column;
}
@media (min-width: 576px) {
  .thankyou main .wrapper__contents .wrapper__btn {
    margin: 80px auto auto;
    flex-direction: row;
  }
}
.thankyou main .wrapper__contents .wrapper__btn .btn__save {
  margin-top: 100px;
  margin: 0;
}
.thankyou main .wrapper__contents .wrapper__btn .btn__save:nth-of-type(1) {
  margin-bottom: 10px;
  font-size: 15px;
}
@media (min-width: 576px) {
  .thankyou main .wrapper__contents .wrapper__btn .btn__save:nth-of-type(1) {
    margin-bottom: 0;
    margin-right: 20px;
    font-size: 16px;
  }
}

.proposal h2 {
  width: 110px;
  margin-left: auto;
  margin-right: auto;
}
.proposal #proposal_img {
  border: 0;
  padding: 0;
}

.contact h2 {
  width: 130px;
  margin-left: auto;
  margin-right: auto;
}

.guide main {
  margin-bottom: 80px;
}
.guide main .container-default {
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding: 10px;
}
@media (min-width: 576px) {
  .guide main .container-default {
    padding: 15px;
  }
}
@media (min-width: 768px) {
  .guide main .container-default {
    padding: 30px;
  }
}
.guide main .container-default h1 {
  background: black;
  color: #fff;
  width: 90%;
  max-width: 600px;
  padding: 1rem;
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 399px) {
  .guide main .container-default h1 {
    font-size: 19px;
  }
}
@media (min-width: 992px) {
  .guide main .container-default h1 {
    width: 50%;
  }
}
.guide main .container-default h2 {
  background: black;
  color: #fff;
  width: 90%;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
  padding: 1rem 0;
}
@media (min-width: 992px) {
  .guide main .container-default h2 {
    width: 50%;
  }
}
.guide main .container-default > div {
  margin-bottom: 80px;
}
.guide main .container-default > div:first-of-type {
  padding: 1.5rem 1rem;
  margin-top: 50px;
  background: url(../images/guide-bg.png);
  background-size: 250px;
}
.guide main .container-default > div:first-of-type p.bg {
  background: url(../images/wakuwaku-bg-text.png);
  background-size: 85px;
  background-repeat: no-repeat;
  background-position: right center;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .guide main .container-default > div:first-of-type p.bg {
    margin-bottom: 0;
  }
}
.guide main .container-default > div:first-of-type p span {
  margin-right: 15px;
  padding-bottom: 1.5rem;
}
.guide main .container-default > div:first-of-type p span img {
  width: 110px;
}
.guide main .container-default > div:first-of-type p:first-of-type {
  min-width: 200px;
  font-weight: bold;
  font-size: 20px;
  margin-right: 2rem;
}
.guide main .container-default > div:first-of-type > div {
  background: rgba(255, 255, 255, 0.7);
  padding: 0.5rem;
}
.guide main .container-default > div:nth-of-type(2) p:last-of-type {
  font-size: clamp(22px, 3vw, 26px);
}
.guide main .container-default > div:nth-of-type(2) figure img {
  max-width: 750px;
}
.guide main .container-default > div:nth-of-type(3) .faqlists li {
  margin-bottom: 20px;
}
.guide main .container-default > div:nth-of-type(3) .faqlists li dl .question {
  background: #000;
  color: #fff;
  padding: 1rem;
  padding-right: 2rem;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  transition: 0.3s;
  display: flex;
}
.guide main .container-default > div:nth-of-type(3) .faqlists li dl .question::before {
  content: "Q.";
  margin-right: 0.5rem;
}
.guide main .container-default > div:nth-of-type(3) .faqlists li dl .question::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 10px;
  height: 10px;
  border: solid 2px #fff;
  border-top: 0;
  border-left: 0;
  transition: 0.3s;
  transform: translateY(-50%) rotate(45deg);
}
.guide main .container-default > div:nth-of-type(3) .faqlists li dl .question.on::after {
  transform: translateY(-20%) rotate(-135deg);
}
.guide main .container-default > div:nth-of-type(3) .faqlists li dl .answer {
  display: flex;
  padding: 1rem;
  background: #f3f3f3;
}
.guide main .container-default > div:nth-of-type(3) .faqlists li dl .answer::before {
  content: "A.";
  margin-right: 0.5rem;
}
/*# sourceMappingURL=styles.css.map */