@charset "UTF-8";
html {
  display: flex;
  flex-direction: column;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  min-height: 1px;
}

footer {
  margin-top: auto;
  z-index: 100;
}

body {
  overflow-x: hidden;
  font-family: "m-plus-rounded-1c", "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #635353;
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}
body::before {
  content: "";
  display: block;
  top: 0;
  left: 0;
  background: linear-gradient(-20deg, #e8f5f8 15%, #efeffe 50%, #ffdfeb 80%);
  height: 100vh;
  width: 100%;
  background-size: cover;
  position: fixed;
  z-index: -1;
}

main {
  margin-top: 100px;
  background-image: url(../img/bgimg.png);
  background-size: 360px;
}
@media (max-width: 575px) {
  main {
    margin-top: 134px;
    background-size: 250px;
  }
}

p {
  line-height: 1.6;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  opacity: 0.8;
}
a.btn {
  text-decoration: none;
}

:focus,
button:focus {
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
}

iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  border: none;
}

:root {
  scroll-behavior: auto !important;
}

.list-icon {
  list-style-type: none;
  padding-left: 0;
}
.list-icon > li {
  padding-left: 1.2em;
  position: relative;
  margin-bottom: 8px;
}
.list-icon > li span {
  color: rgb(219, 149, 149);
  position: absolute;
  left: 0;
}

@media (min-width: 768px) and (max-width: 991px) {
  .container {
    width: 88%;
    max-width: none;
  }
}

label {
  transform: rotate(0.05deg);
}

.kvbg h1 {
  margin-bottom: 0;
  padding-bottom: 10px;
}
.kvbg img {
  width: 100%;
  max-width: 1100px;
}

.navbg {
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .navbg {
    margin-bottom: 10px;
  }
}
.navbg h2 {
  color: #dd7eb0;
  font-weight: bold;
  text-align: center;
  padding: 30px 0 16px;
}
@media (max-width: 575px) {
  .navbg h2 {
    padding: 16px 0 4px;
  }
}

.nav-tabs {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 15px;
  overflow-x: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  --bs-nav-tabs-border-color: none;
}
@media (max-width: 1024px) {
  .nav-tabs {
    justify-content: center;
    gap: 15px;
  }
  .nav-tabs .nav-item {
    flex: 0 0 calc((100% - 30px) / 3);
    max-width: calc((100% - 30px) / 3);
  }
}
@media (max-width: 575px) {
  .nav-tabs {
    gap: 12px 8px;
  }
  .nav-tabs .nav-item {
    flex: 0 0 calc((100% - 16px) / 3);
    max-width: calc((100% - 16px) / 3);
  }
}
@media (min-width: 1025px) {
  .nav-tabs .nav-item {
    flex: 0 0 calc((100% - 100px) / 6);
    max-width: 200px;
    min-width: 110px;
  }
}

.nav-link {
  transform: rotate(0.05deg);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  padding: 10px 0;
  height: 56px;
  border-radius: 50px !important;
  font-weight: 600;
  font-size: 22px;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 1px 1px 2px #eff1f5;
  background: #ffffff;
  color: #eb91c0;
  border: 4px solid #efa7cc !important;
}
@media (max-width: 575px) {
  .nav-link {
    border: 3px solid #efa7cc !important;
  }
}
@media (max-width: 767px) {
  .nav-link {
    height: 42px;
    line-height: normal;
    font-size: 15px;
  }
}
.nav-link:hover {
  color: #c787ad !important;
}
.nav-link.active {
  font-weight: bold;
  border: none;
  color: #ffffff !important;
  background-color: #efa7cc !important;
}

/*タブボタンの色 */
#memberall-tab {
  border: 4px solid #BD0164 !important;
  color: #BD0164;
}
@media (max-width: 575px) {
  #memberall-tab {
    border: 3px solid #BD0164;
  }
}
#memberall-tab.active {
  background-color: #BD0164 !important;
}
#memberall-tab.active:hover {
  color: #fff !important;
}
#memberall-tab:hover {
  color: #BD0164 !important;
}

.fade-in {
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ホバー演出 */
.nav-link:hover:not(.active) {
  filter: brightness(1.07);
  box-shadow: 2px 5px 10px #f7eef5;
}

/* タブ内容部 */
.tab-content {
  border-radius: 15px;
  margin: 0 auto;
  overflow-x: hidden;
  animation: fadeIn 0.5s ease-in;
  padding: 8px;
  position: relative;
  box-sizing: border-box;
}
.tab-content > div {
  border: 14px solid #ffffff;
}
@media (max-width: 575px) {
  .tab-content > div {
    border: 8px solid #ffffff;
  }
}
.tab-content::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  background: radial-gradient(circle, #fff 68%, transparent 74%);
  background-size: 1.4rem 1.4rem;
  background-repeat: space;
  z-index: 0;
  pointer-events: none;
}
.tab-content::after {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border-radius: 5px;
  background: #fff;
  z-index: 0;
  pointer-events: none;
}
.tab-content > * {
  position: relative;
  z-index: 1;
}
.tab-content h2 {
  text-align: center;
  font-weight: bold;
  font-size: 40px;
  padding: 10px 0;
}
@media (max-width: 767px) {
  .tab-content h2 {
    padding: 8px 0 0;
    font-size: 30px;
  }
}
.tab-content h3 {
  font-size: 34px;
  font-weight: normal;
}
@media (max-width: 575px) {
  .tab-content h3 {
    font-size: 22px;
    padding-top: 10px;
  }
}
.tab-content > div {
  background-image: repeating-linear-gradient(90deg, #d1669d, #d1669d 8px, transparent 8px, transparent 16px), repeating-linear-gradient(180deg, #d1669d, #d1669d 8px, transparent 8px, transparent 16px), repeating-linear-gradient(90deg, #d1669d, #d1669d 8px, transparent 8px, transparent 16px), repeating-linear-gradient(180deg, #d1669d, #d1669d 8px, transparent 8px, transparent 16px);
  background-position: left top, right top, left bottom, left top;
  background-repeat: repeat-x, repeat-y, repeat-x, repeat-y;
  background-size: 100% 2px, 2px 100%, 100% 2px, 2px 100%;
  padding: 20px;
}
@media (max-width: 575px) {
  .tab-content > div {
    padding: 20px 0;
  }
}

.section-info {
  background-color: rgba(255, 255, 255, 0.5411764706);
  border-radius: 15px;
  padding: 40px 40px 20px;
  margin-bottom: 60px;
  margin-top: 70px;
}
@media (max-width: 575px) {
  .section-info {
    margin: 38px auto 32px;
    max-width: 96%;
    padding: 32px 12px 2px;
  }
}
.section-info::before {
  content: "";
  height: 32px;
  margin-top: -52px;
  margin-bottom: 26px;
  display: block;
  background: url(../img/ribbon.png) center center no-repeat;
  background-size: contain;
}
@media (max-width: 575px) {
  .section-info::before {
    height: 28px;
    margin-top: -45px;
    margin-bottom: 20px;
  }
}
.section-info .hdg-info {
  margin-bottom: 32px;
  color: #c787ad;
  text-align: center;
}
@media (max-width: 575px) {
  .section-info .hdg-info {
    font-size: clamp(1.25rem, 0.569rem + 3.11vw, 1.688rem);
    margin-bottom: 20px;
  }
}
.section-info .list-info {
  transform: rotate(0.05deg);
  margin: 32px 0;
}
@media (max-width: 575px) {
  .section-info .list-info {
    margin: 20px 0;
  }
}
.section-info .list-info dt {
  margin-top: 20px;
  padding-top: 12px;
  margin-bottom: 12px;
  font-size: 18px;
  position: relative;
  padding-left: 28px;
  color: #c787ad;
  border-top: solid 1px #d7b1b1;
  padding-left: 24px;
  padding-top: 10px;
}
@media (max-width: 767px) {
  .section-info .list-info dt {
    font-size: 16px;
  }
}
.section-info .list-info dt:first-of-type {
  border-top: none;
}
.section-info .list-info dt::before {
  position: absolute;
  top: 12px;
  left: 0px;
  content: "";
  display: block;
  background: url(../img/listicon.png) center center no-repeat;
  background-size: 100%;
  width: 20px;
  height: 22px;
}
.section-info .list-info dd {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .section-info .list-info dd {
    font-size: 13px;
  }
}
.section-info .list-info dd .list-icon {
  margin: 12px 0 0;
}

footer {
  padding: 20px 0 10px;
}
footer img {
  width: 20vw;
  max-width: 110px;
  animation: floating-y 3s ease-in-out infinite alternate-reverse;
}
footer .link-pageup {
  position: fixed;
  right: 40px;
  bottom: 20px;
  font-size: 40px;
}
@media (max-width: 991px) {
  footer .link-pageup {
    right: 10px;
    bottom: 10px;
  }
}
footer .link-pageup:hover {
  opacity: 0.8;
}
footer .copyright {
  display: block;
  text-align: center;
  color: #635353;
}

@keyframes floating-y {
  0% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(6px);
  }
}
header {
  background-color: rgba(255, 255, 255, 0.8);
  color: #ef84bf;
  padding: 10px 20px 0;
  font-weight: 700;
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100vw;
  max-height: 100vh;
}
@media (max-width: 575px) {
  header {
    padding: 8px 8px 4px;
  }
}
header::before {
  content: "";
  position: absolute;
  bottom: -32px;
  left: 0;
  width: 100%;
  height: 32px;
  background-image: url(../img/line.png);
  background-repeat: repeat-x;
  background-size: auto;
  pointer-events: none;
  z-index: 1;
}
header .head_logo {
  display: flex;
  align-items: center;
}
header .head_logo p {
  font-weight: 500;
  transform: rotate(0.05deg);
  font-size: 13px;
}
@media (max-width: 575px) {
  header .head_logo p {
    font-size: 12px;
  }
}
header .head_logo p .partial-br {
  display: none;
}
@media (min-width: 576px) and (max-width: 700px) {
  header .head_logo p .partial-br {
    display: inline;
  }
}
header .img-logo {
  display: block;
  width: 16vw;
  max-width: 80px;
}
header a {
  color: #f19fc9;
}
header .search_btn {
  transform: rotate(0.05deg);
  display: block;
  background: linear-gradient(140deg, #e6edff, #e8f3ff 35%, #ffeaf4 65%, #fff7fb);
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  padding: 14px 20px;
  border: 2px solid #f9cfe4;
}
@media (max-width: 767px) {
  header .search_btn {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  header .search_btn {
    text-align: center;
    width: 45%;
    font-size: 13px;
    padding: 10px 8px;
  }
}
header .search_btn i {
  display: inline-block;
  margin-right: 0.3em;
}
@media (min-width: 768px) and (max-width: 991px) {
  header .container {
    width: 100%;
    max-width: none;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  header .container {
    max-width: 100%;
  }
}

.section-item .hdg-item {
  font-size: 24px;
  border-bottom: 1px solid #a1a1a1;
  padding-bottom: 8px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .section-item .hdg-item {
    font-size: 20px;
    margin-bottom: 12px;
  }
}

.section-item {
  background-color: #ffffff;
  border-radius: 15px;
  margin: 25px 20px;
}
@media (max-width: 767px) {
  .section-item {
    margin: 16px 20px;
  }
}
.section-item .limit-item {
  border: 1px solid;
  color: #e1adc8;
  padding: 4px 8px;
  display: inline-block;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .section-item .limit-item {
    margin: 12px 0;
  }
}
.section-item .js-sold + span + .soldTxt {
  background-color: #eb9b9b;
  color: #ffffff;
  display: block;
  width: 3.8em;
  padding: 0 8px;
  margin: 4px auto;
  letter-spacing: 0.2em;
  font-size: 14px;
  text-align: center;
}
@media (max-width: 767px) {
  .section-item .js-sold + span + .soldTxt {
    font-size: 12px;
  }
}
.section-item select {
  margin-right: 8px;
  padding: 2px 8px;
  color: #333;
}
@media (max-width: 767px) {
  .section-item select {
    margin-left: 8px;
  }
}

.btn-item {
  color: #ffffff;
  border-radius: 50px;
  display: block;
  text-decoration: none;
  padding: 8px;
  text-align: center;
  margin: 40px auto 0;
  border: none;
  width: 480px;
  max-width: 92%;
}
@media (max-width: 767px) {
  .btn-item {
    margin: 20px auto 0;
    padding: 5px;
  }
}
.btn-item:after {
  content: "\f0d7";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  padding-left: 8px;
  font-size: 20px;
}
.btn-item:hover {
  color: #ffffff;
  text-decoration: none;
}
@media (hover) {
  .btn-item:hover {
    opacity: 0.7;
  }
}

#member1 h2 {
  color: #BD0164;
}

.menberlist h2 {
  color: #efa7cc;
}

@media (max-width: 575px) {
  .form-wrap .container {
    padding-right: 8px;
    padding-left: 8px;
  }
}

@media (max-width: 575px) {
  .goods-wrap {
    padding: 10px;
  }
}
.goods-wrap .StyleF_Frame_ {
  display: flex;
  flex-wrap: wrap;
  z-index: 1;
  position: relative;
  gap: 15px;
}
@media (max-width: 991px) {
  .goods-wrap .StyleF_Frame_ {
    gap: 10px;
  }
}
.goods-wrap .StyleF_Item_ {
  width: calc((100% - 45px) / 4);
  padding: 15px;
  background: #fff;
  border-radius: 8px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}
.goods-wrap .StyleF_Item_::before {
  content: "";
  position: absolute;
  inset: 0; /* top/left/right/bottomすべて0 */
  padding: 2px; /* borderの太さ相当 */
  border-radius: 8px;
  background: linear-gradient(to bottom right, #e7f0ff 0%, #f7e2ec 100%);
  z-index: 0;
  pointer-events: none;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}
@media (max-width: 991px) {
  .goods-wrap .StyleF_Item_ {
    width: calc((100% - 20px) / 3);
    padding: 10px;
  }
}
@media (max-width: 767px) {
  .goods-wrap .StyleF_Item_ {
    width: calc((100% - 10px) / 2);
  }
}
.goods-wrap .StyleF_Item_ img {
  display: block;
  margin-inline: auto;
}
.goods-wrap .StyleF_Item_ .img_ a img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
}
.goods-wrap .StyleF_Item_ .img_ img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
}
.goods-wrap .StyleF_Item_ .name_ {
  transform: rotate(0.05deg);
  margin: 1rem 0;
  text-decoration: none;
  color: #795959;
}
.goods-wrap .StyleF_Item_ .name_ a {
  text-decoration: none;
  color: #795959;
  transform: rotate(0.05deg);
}
@media (max-width: 767px) {
  .goods-wrap .StyleF_Item_ .name_ {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .goods-wrap .StyleF_Item_ .name_ {
    font-size: 12px;
    line-height: 1.4;
  }
}
.goods-wrap .StyleF_Item_ .goods_name_ {
  transform: rotate(0.05deg);
  color: #795959;
}
.goods-wrap .StyleF_Item_ .price_ {
  transform: rotate(0.05deg);
  margin-bottom: 10px;
  text-align: right;
  font-size: 1em;
  color: #736b6b;
}
@media (max-width: 767px) {
  .goods-wrap .StyleF_Item_ .price_ {
    font-size: 16px;
  }
}
.goods-wrap .StyleF_Item_ .cart_ {
  margin-top: auto;
}
.goods-wrap .StyleF_Item_ .cart_ .cart_btn_ {
  display: block;
  width: 100%;
  padding: 4px 0;
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.07em;
  color: #fff;
  transform: rotate(0.05deg);
  border-radius: 100vmax;
  border: 0;
}
@media (max-width: 575px) {
  .goods-wrap .StyleF_Item_ .cart_ .cart_btn_ {
    padding: 6px 6px 6px 6px;
    font-size: 13px;
  }
}
.goods-wrap .StyleF_Item_ .cart_ .order_ {
  background-image: linear-gradient(132deg, rgb(254, 226, 237), rgb(247, 226, 255) 66%, rgb(203, 222, 255));
  border: 3px solid #f19fc9;
  color: #e692bd;
}
.goods-wrap .StyleF_Item_ .cart_ .reservation_ {
  background-image: linear-gradient(132deg, rgb(229, 231, 255), rgb(253, 251, 237) 70%, rgb(229, 255, 251));
  border: 3px solid #c6dbfe;
  color: #8fa9f2;
}
.goods-wrap .StyleF_Item_ .cart_ .sold_out_ {
  background: #d4d4d4;
}
.goods-wrap .StyleF_Item_ .cart_ .closed_ {
  background: #d4d4d4;
}
.goods-wrap .StyleF_Item_ .pre_sales_ {
  transform: rotate(0.05deg);
}
.goods-wrap .StyleF_Item_ .rdt_,
.goods-wrap .StyleF_Item_ .comment_ {
  display: none;
}

.resale_request {
  text-align: center;
}

.resale_request a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f1e9f9;
  border: 2px solid #cdb6eb;
  text-decoration: none;
  color: #ac88db;
  font-size: 19px;
  letter-spacing: 0.07em;
  font-weight: 800;
  border-radius: 100vmax;
  padding: 8px 0 8px;
  height: 48.05px;
  max-width: 240px;
  transform: rotate(0.05deg);
  margin: 0 auto;
}
@media (max-width: 1267px) {
  .resale_request a {
    height: 3.45vw;
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .resale_request a {
    font-size: 1.8vw;
    height: 4.5vw;
  }
}
@media (max-width: 767px) {
  .resale_request a {
    border: 3px solid #cdb6eb;
    font-size: 15px;
    height: 38px;
  }
}
@media (max-width: 575px) {
  .resale_request a {
    font-size: 13px;
    height: 37.5px;
  }
}