@charset "UTF-8";
/**/
/* リセットCSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "fude";
  src: url(./HGRAE.TTF);
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  /*
    background-color: #fff;
    background-image: url(../img/bg.png);
    background-repeat: repeat;
    */
}

.fudefont {
  font-family: "fude";
}

.aboutus {
  position: relative;
  z-index: 5;
  color: #fff;
  margin-bottom: 3em;
}
.aboutus a {
  color: #fff;
}

.spDisp {
  display: none;
}
@media (max-width: 768px) {
  .spDisp {
    display: block;
  }
}

.tatefudasimu {
  background: linear-gradient(to right, #2d1f42 50%, #3c2f4f 50%);
  text-align: center;
  border-radius: 10px;
  margin-bottom: 1.7em;
}
.tatefudasimu a {
  text-decoration: none;
  width: 100%;
  height: 100%;
  padding: 0.7em 0.3em;
  line-height: 1.3;
  color: #fff;
  display: block;
  font-size: 160%;
  letter-spacing: 0.2em;
  filter: brightness(0.8);
}
.tatefudasimu a:hover {
  filter: brightness(1);
}
@media (max-width: 768px) {
  .tatefudasimu a {
    font-size: 130%;
  }
}

[id] {
  scroll-margin-top: 120px;
}

.hero-spacer {
  width: 100%;
  height: 100vh;
}

.section-margin-top {
  margin-top: 60px;
}

.section-margin-vertical {
  margin-top: 60px;
  margin-bottom: 60px;
}

.form-title {
  font-size: 27px;
  padding-bottom: 0.2em;
  border-bottom: 3px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 0.3em;
  text-align: center;
}

.form-description {
  text-align: center;
  font-size: 16px;
}

.error-text {
  color: red;
}

.hidden {
  display: none;
}

.loading-message {
  text-align: center;
  padding: 20px;
}

.purchase-flow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin: 30px auto;
  max-width: 900px;
}
@media (max-width: 768px) {
  .purchase-flow {
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px auto;
  }
}
.purchase-flow .flow-step {
  flex: 1;
  min-width: 120px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 2px solid #d4af37;
  border-radius: 8px;
  padding: 15px 10px;
  text-align: center;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .purchase-flow .flow-step {
    flex: 1 1 calc(50% - 5px);
    min-width: auto;
    padding: 12px 8px;
  }
}
.purchase-flow .flow-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
  background: linear-gradient(135deg, #fff8e7 0%, #f8f9fa 100%);
}
.purchase-flow .flow-step .flow-step-number {
  font-size: 12px;
  font-weight: bold;
  color: #d4af37;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .purchase-flow .flow-step .flow-step-number {
    font-size: 11px;
    margin-bottom: 5px;
  }
}
.purchase-flow .flow-step .flow-step-title {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .purchase-flow .flow-step .flow-step-title {
    font-size: 13px;
  }
}
.purchase-flow .flow-arrow {
  font-size: 24px;
  color: #d4af37;
  font-weight: bold;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .purchase-flow .flow-arrow {
    display: none;
  }
  .purchase-flow .flow-arrow:nth-of-type(3) {
    display: none;
  }
}
@media (max-width: 768px) {
  .purchase-flow .flow-step:nth-of-type(5) {
    margin-top: 0;
  }
}

/* ヘッダー */
img {
  vertical-align: bottom;
  max-width: 100%;
}

h2,
h3 {
  font-weight: normal;
}

.fude {
  font-family: "fude";
  writing-mode: vertical-rl;
}

.fude2 {
  font-family: "fude";
}

.w1200 {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .w1200 {
    padding: 0 20px;
  }
}

.p-top7 {
  padding-top: 7em;
}

.site-header {
  position: sticky;
  top: 0px;
  z-index: 10;
  margin-bottom: 3rem;
}
.site-header .container {
  background-color: rgba(89, 69, 12, 0.25);
}
.site-header:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../img/bg.png);
  background-repeat: repeat;
  mix-blend-mode: multiply;
  z-index: 0;
  opacity: 0.3;
}

.site-description {
  font-size: 80%;
  padding: 0.3rem;
  color: #fff;
  font-weight: normal;
  margin: 0;
  background-color: rgba(45, 30, 3, 0.9);
  position: relative;
  z-index: 1;
}

.site-branding {
  padding: 0.7rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}
.site-branding.small {
  padding: 0.3rem;
}
.site-branding.small .site-title img {
  max-width: 120px;
}
.site-branding .site-title {
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
}
.site-branding .site-title img {
  width: 100%;
  max-width: 200px;
  transition: 0.3s;
}
.site-branding .site-title a {
  display: block;
  max-width: 200px;
  line-height: 0;
}

.main-nav {
  position: relative;
  font-family: "WDXL Lubrifont JP N", sans-serif;
  font-size: 170%;
  line-height: 1.3;
}
.main-nav li {
  padding: 0.7rem 0;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 0.3rem;
  position: relative;
  z-index: 1001;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: #333;
  transition: 0.3s;
}
.menu-toggle.active span {
  background: #fff;
}
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(3px, 6px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -7px);
}

.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
  transition: right 0.3s ease;
  z-index: 1000;
  background-color: rgba(120, 90, 0, 0.6);
}
.nav-menu:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}
.nav-menu.active {
  right: 0;
}
.nav-menu a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 2rem;
  transition: all 0.3s;
  text-align: center;
}
.nav-menu a:hover {
  color: #ffd600;
  transform: scale(1.1);
}

/* メインコンテンツ */
/* 記事 */
.post {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #eee;
}
.post:last-child {
  border-bottom: none;
}

.post-title {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.post-title a {
  text-decoration: none;
  color: #333;
}
.post-title a:hover {
  color: #0073aa;
}

.post-meta {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.post-content {
  line-height: 1.8;
}
.post-content p {
  margin-bottom: 1rem;
}

/* フッター */
.site-footer {
  position: relative;
  text-align: center;
  padding: 2rem 0;
  margin-top: 3rem;
  background-image: url(../img/1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 10rem 0;
}
.site-footer .container {
  position: relative;
  z-index: 1;
  color: #fff;
}
.site-footer:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 0;
}

.top {
  position: relative;
  margin-top: 10rem;
}
@media (max-width: 768px) {
  .top {
    margin-top: 5rem;
  }
}
.top .fude {
  color: #fff;
  position: absolute;
  font-size: 630%;
  top: -5rem;
  left: 0;
  letter-spacing: 0.3rem;
  filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.3));
}
@media (max-width: 768px) {
  .top .fude {
    top: -2.7rem;
    font-size: 330%;
  }
}
.top .fude span {
  font-size: 70%;
}
.top .lead {
  font-family: "WDXL Lubrifont JP N", sans-serif;
  color: #fff;
  font-size: 150%;
  width: 50%;
  position: absolute;
  bottom: 1rem;
  right: 1rem;
}
@media (max-width: 768px) {
  .top .lead {
    position: relative;
    width: calc(100% - 2rem);
    margin: 1rem;
    margin-top: -3rem;
    bottom: auto;
    right: auto;
    padding: 1rem;
    background: rgba(79, 65, 25, 0.7);
  }
}
.top .lead .title {
  font-size: 170%;
}
@media (max-width: 768px) {
  .top .lead .title {
    font-size: 140%;
  }
}
.top-aboutKumade .fude {
  right: 0;
}
.top-otakiageCeremony .fude {
  right: 0;
}

@keyframes slide-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.slider {
  position: absolute;
  bottom: 1.3em;
  left: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .slider {
    position: relative;
    bottom: auto;
    left: auto;
  }
}
.slider__track {
  display: flex;
  gap: 1.7em;
  overflow: hidden;
}
.slider__list {
  display: flex;
  gap: 1.7em;
  list-style: none;
  padding: 0;
  margin: 0;
  animation: slide-left 80s infinite linear 0.5s both;
}
.slider__item {
  flex: 0 0 calc((100vw - 4.2rem) / 6);
  margin: 0.7rem;
  font-size: 170%;
  text-align: center;
  color: #fff;
  font-family: "WDXL Lubrifont JP N", sans-serif;
  filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.3));
}
.slider__item img {
  width: 200px;
  height: auto;
  display: block;
  border: 7px solid #fff;
  filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.3));
}
@media (max-width: 768px) {
  .slider__item {
    flex: 0 0 calc((100vw - 2.8rem) / 4);
  }
  .slider__item img {
    width: 100px;
  }
}

/* レスポンシブ */
@media (max-width: 768px) {
  .site-footer {
    padding: 3rem 0;
  }
}
/* YouTube背景動画の基本スタイル */
#videoPlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  opacity: 0;
  /* 初期状態は透明（JSでフェードイン） */
  transition: opacity 1s ease-in-out;
  background: #000;
  /* 動画読み込み前の背景色 */
}

/* 動画要素のスタイル調整 */
#videoPlay .mb_YTPlayer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
}

/* 動画の上にオーバーレイを追加（コンテンツの可読性向上） */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* 半透明の黒いオーバーレイ
    background: rgba(0, 0, 0, 0.3);
    */
  background-image: url(../img/bgb.png);
  background-repeat: repeat;
  z-index: 1;
  pointer-events: none;
}

header,
main,
footer {
  z-index: 2;
}

.product-size {
  font-size: 11px;
}

#kumade-application-form {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
#kumade-application-form .kumade-form-header {
  background: linear-gradient(135deg, rgba(45, 30, 3, 0.9) 0%, rgba(80, 50, 20, 0.95) 100%);
  color: #fff8e7;
  padding: 20px 20px;
  text-align: center;
  cursor: pointer;
  position: relative;
  transition: background 0.3s ease;
}
#kumade-application-form .kumade-form-header:hover {
  background: linear-gradient(135deg, rgb(45, 30, 3) 0%, rgb(80, 50, 20) 100%);
}
#kumade-application-form .kumade-form-header h2 {
  font-size: 18px;
  margin-bottom: 0.7em;
}
#kumade-application-form .kumade-form-header p {
  font-size: 14px;
  opacity: 0.9;
}
#kumade-application-form .kumade-form-header .toggle-icon {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
  transition: transform 0.3s ease;
  font-weight: bold;
}
#kumade-application-form .kumade-form-header.active .toggle-icon {
  transform: translateY(-50%) rotate(90deg);
}
#kumade-application-form .kumade-form-body {
  padding: 40px 30px;
  background: white;
}
#kumade-application-form .kumade-form-body .service-flow {
  background: #fef9f0;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 30px;
  border-left: 4px solid rgba(45, 30, 3, 0.9);
}
#kumade-application-form .kumade-form-body .service-flow h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: rgba(45, 30, 3, 0.9);
}
#kumade-application-form .kumade-form-body .service-flow ul {
  list-style-position: inside;
  font-size: 14px;
}
#kumade-application-form .kumade-form-body .service-flow ul li {
  list-style: none;
  margin: 5px 0;
  line-height: 1.4;
}
#kumade-application-form .kumade-form-footer {
  background: #f8f9fa;
  padding: 20px;
  text-align: center;
  color: #888;
  font-size: 14px;
}

#kumade-form .form-group {
  margin-bottom: 25px;
}
#kumade-form .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #555;
}
#kumade-form .form-group label .required {
  color: #e74c3c;
  margin-left: 5px;
}
#kumade-form .form-group input[type=email],
#kumade-form .form-group input[type=text],
#kumade-form .form-group input[type=tel] {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
}
#kumade-form .form-group small {
  display: block;
  margin-top: 5px;
  color: #888;
  font-size: 13px;
}
#kumade-form .size-selection {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 10px;
}
#kumade-form .size-selection .size-option {
  position: relative;
}
#kumade-form .size-selection .size-option input[type=radio] {
  position: absolute;
  opacity: 0;
}
#kumade-form .size-selection .size-option input[type=radio]:checked + label {
  background: rgba(45, 30, 3, 0.9);
  color: #fff8e7;
  border-color: rgba(45, 30, 3, 0.9);
}
#kumade-form .size-selection .size-option label {
  display: block;
  padding: 20px;
  border: 2px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s;
}
#kumade-form .size-selection .size-option label .size-name {
  display: block;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
}
#kumade-form .size-selection .size-option label .size-price {
  display: block;
  font-size: 18px;
}
#kumade-form .size-selection .size-option label .size-breakdown {
  display: block;
  font-size: 12px;
  color: #888;
  margin-top: 5px;
}
#kumade-form button[type=submit] {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, rgba(45, 30, 3, 0.9) 0%, rgba(80, 50, 20, 0.95) 100%);
  color: #fff8e7;
  border: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
}
#kumade-form button[type=submit]:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(45, 30, 3, 0.5);
}
#kumade-form button[type=submit]:active {
  transform: translateY(0);
}

.kumade-alert {
  padding: 15px 20px;
  border-radius: 5px;
  margin-bottom: 20px;
}
.kumade-alert-danger {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
.kumade-alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.kumade-sales-section {
  margin-top: 40px;
  margin-bottom: 80px;
  max-width: 1000px;
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 20px;
  padding: 2em;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
@media (max-width: 768px) {
  .kumade-sales-section {
    margin-left: 20px;
    margin-right: 20px;
    width: calc(100% - 40px);
  }
}
.kumade-sales-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}
.kumade-sales-section .section-header .title {
  font-size: 27px;
  padding-bottom: 0.2em;
  border-bottom: 3px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 0.3em;
}
.kumade-sales-section .section-header .fude2 {
  font-size: 72px;
  display: inline-block;
  background: linear-gradient(180deg, #3b2d18 40%, #a98472 50%, #2d2313 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(2px 0px 0px rgba(255, 255, 255, 0.7)) drop-shadow(-2px 0px 0px rgba(255, 255, 255, 0.7)) drop-shadow(0px 2px 0px rgba(255, 255, 255, 0.7)) drop-shadow(0px -2px 0px rgba(255, 255, 255, 0.7)) drop-shadow(2px 2px 0px rgba(255, 255, 255, 0.7)) drop-shadow(-2px 2px 0px rgba(255, 255, 255, 0.7)) drop-shadow(2px -2px 0px rgba(255, 255, 255, 0.7)) drop-shadow(-2px -2px 0px rgba(255, 255, 255, 0.7));
}
.kumade-sales-section .section-header p {
  font-size: 16px;
}
.kumade-sales-section .section-footer {
  text-align: center;
  margin-top: 40px;
}
.kumade-sales-section .section-footer p {
  font-size: 14px;
  margin-bottom: 20px;
}
.kumade-sales-section .section-footer p:last-child {
  margin-bottom: 0;
}

.kumade-sales-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .kumade-sales-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.kumade-sales-card {
  position: relative;
}
.kumade-sales-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  filter: drop-shadow(1px 1px 7px rgb(255, 255, 255));
  z-index: 0;
  pointer-events: none;
}
.kumade-sales-card:nth-of-type(1)::before {
  background-image: url(../img/01.svg);
}
.kumade-sales-card:nth-of-type(2)::before {
  background-image: url(../img/03.svg);
}
.kumade-sales-card:nth-of-type(3)::before {
  background-image: url(../img/02.svg);
}
.kumade-sales-card .kumade-sales-card-inner {
  position: relative;
  z-index: 1;
  color: #55492b;
  padding: 40px 20px;
  border-radius: 10px;
  text-align: center;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.kumade-sales-card .kumade-sales-card-inner h3 {
  padding-top: 1.7em;
  font-size: 26px;
  font-weight: bold;
  text-shadow: #fff 2px 0px, #fff -2px 0px, #fff 0px -2px, #fff 0px 2px, #fff 2px 2px, #fff -2px 2px, #fff 2px -2px, #fff -2px -2px, #fff 1px 2px, #fff -1px 2px, #fff 1px -2px, #fff -1px -2px, #fff 2px 1px, #fff -2px 1px, #fff 2px -1px, #fff -2px -1px;
}
.kumade-sales-card .kumade-sales-card-inner p {
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.6;
  text-shadow: #fff 2px 0px, #fff -2px 0px, #fff 0px -2px, #fff 0px 2px, #fff 2px 2px, #fff -2px 2px, #fff 2px -2px, #fff -2px -2px, #fff 1px 2px, #fff -1px 2px, #fff 1px -2px, #fff -1px -2px, #fff 2px 1px, #fff -2px 1px, #fff 2px -1px, #fff -2px -1px;
}
.kumade-sales-card:hover .kumade-sales-card-inner {
  transform: translateY(-5px);
}

#kumade-purchase-form textarea[name=application_content] {
  padding: 0.3em;
  width: 100%;
  height: 9em;
  font-size: 16px;
  padding: 12px;
  border-radius: 5px;
  border: 1px solid #ddd;
}
#kumade-purchase-form textarea[name=application_content]:focus {
  outline: none;
  border-color: #d4af37;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}
#kumade-purchase-form .product-selection {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 15px;
}
@media (max-width: 768px) {
  #kumade-purchase-form .product-selection {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
#kumade-purchase-form .product-option {
  position: relative;
}
#kumade-purchase-form .product-option .product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
  border: 2px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #fff;
  position: relative;
}
#kumade-purchase-form .product-option .product-card:hover {
  border-color: #d4af37;
  background-color: rgba(212, 175, 55, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#kumade-purchase-form .product-option .product-card.selected {
  border-color: #d4af37;
  background-color: rgba(212, 175, 55, 0.1);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.3);
}
#kumade-purchase-form .product-option .product-card img {
  width: 100%;
  height: auto;
  max-width: 120px;
  margin-bottom: 10px;
  border-radius: 4px;
}
#kumade-purchase-form .product-option .product-card .product-name {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
}
#kumade-purchase-form .product-option .product-card .product-price {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}
#kumade-purchase-form .product-option .product-card .product-quantity-display {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #d4af37;
  color: #fff;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
  min-width: 40px;
  text-align: center;
}
#kumade-purchase-form .product-option .product-card .product-quantity-display .quantity-number {
  font-size: 16px;
}
#kumade-purchase-form .product-option .product-card .product-clear-btn {
  margin-top: 10px;
  padding: 6px 16px;
  background: #e74c3c;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.3s ease;
}
#kumade-purchase-form .product-option .product-card .product-clear-btn:hover {
  background: #c0392b;
}
#kumade-purchase-form .product-option .product-card .product-clear-btn:active {
  transform: scale(0.98);
}
#kumade-purchase-form .form-group {
  margin-bottom: 25px;
}
#kumade-purchase-form .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #555;
}
#kumade-purchase-form .form-group label .required {
  color: #e74c3c;
  margin-left: 5px;
}
#kumade-purchase-form .form-group input[type=email],
#kumade-purchase-form .form-group input[type=text],
#kumade-purchase-form .form-group input[type=tel] {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  transition: border-color 0.3s;
}
#kumade-purchase-form .form-group input[type=email]:focus,
#kumade-purchase-form .form-group input[type=text]:focus,
#kumade-purchase-form .form-group input[type=tel]:focus {
  outline: none;
  border-color: #d4af37;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}
#kumade-purchase-form .form-group small {
  display: block;
  margin-top: 5px;
  color: #888;
  font-size: 13px;
}
#kumade-purchase-form button[type=submit] {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.9) 0%, rgba(184, 134, 11, 0.95) 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
}
#kumade-purchase-form button[type=submit]:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.5);
}
#kumade-purchase-form button[type=submit]:active {
  transform: translateY(0);
}

.product-preview {
  display: none;
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  background: #fff;
  border: 3px solid #d4af37;
  border-radius: 50%;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.product-preview img {
  display: block;
  width: 450px;
  height: 450px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 50%;
}/*# sourceMappingURL=user.css.map */