@charset "UTF-8";
.header {
  background-color: #FFF;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 50px;
  border-bottom: 1px solid #dadada;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
}

.header .logo {
  width: 100px;
  height: 35px;
}

.logo {
  background-image: url(../img/logo.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.cart-btn {
  width: 32px;
  height: 32px;
  background-image: url(../img/cart_icon.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border: none;
  cursor: pointer;
  margin-right: 12px;
  padding: 0;
  background-color: white;
  transition: background 0.15s;
  position: relative;
}

/* カート商品数バッジ */
.cart-count-badge {
  position: absolute;
  box-sizing: content-box;
  top: -6px;
  right: -6px;
  width: 15px;
  height: 15px;
  background: #ff1818;
  color: #fff;
  font-size: 13px;
  font-family: arial;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4px 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  z-index: 10;
}

.login-area {
  display: flex;
  align-items: center;
  position: fixed;
  top: 9px;
  right: 16px;
  z-index: 200;
}

#userNickname {
  margin-right: 12px;
  font-weight: bold;
  color: #000000;
  font-family: sans-serif;
}

button#loginBtn {
  background-color: #ff1818;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  padding: 8px 18px;
  cursor: pointer;
  font-size: 15px;
  margin-left: auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: background 0.2s;
  font-family: sans-serif;
}

button#loginBtn:hover {
  background-color: #d80000;
}

.menu-area {
  display: inline-block;
  position: relative;
}

.menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
}

.menu-btn span {
  display: block;
  width: 24px;
  height: 3px;
  background: #333;
  margin: 5px 0;
  border-radius: 2px;
  transition: background 0.2s;
}

.menu-list {
  display: none;
  position: fixed;
  left: 10px;
  top: 60px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1333333333);
  min-width: 200px;
  z-index: 300;
  padding: 6px 0;
}

.menu-item {
  font-family: "Mochiy Pop P One", sans-serif;
  font-weight: normal;
  padding: 12px 18px;
  cursor: pointer;
  font-size: 1rem;
  color: #222;
  transition: background 0.15s;
}

.menu-item:hover {
  background: #f5f5f5;
}

/* ログインモーダル用 */
#login-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.3);
}

.modal-content {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  min-width: 320px;
  max-width: 90vw;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: sans-serif;
  font-size: 14px;
}
.modal-content .close {
  position: absolute;
  top: 0px;
  right: 8px;
  cursor: pointer;
  font-size: 28px;
  color: darkgray;
}
.modal-content .login-guide, .modal-content .signup-guide {
  margin-bottom: 12px;
  color: #333;
}
.modal-content .login-guide {
  font-weight: bold;
}
.modal-content form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  width: 100%;
  max-width: 340px;
  margin: 0 auto 8px auto;
}
.modal-content input {
  font-size: 15px;
  border-radius: 8px;
  border: 1px solid #d3d3d3;
  height: 36px;
  text-indent: 8px;
  margin-bottom: 4px;
}
.modal-content button {
  width: 100%;
  height: 40px;
  border-radius: 8px;
  background-color: #ff1818;
  color: #FFF;
  font-size: 15px;
  font-weight: bold;
  margin-top: 8px;
  border: none;
  text-align: center;
}
.modal-content button:disabled {
  background-color: #ccc;
  color: #999;
  cursor: not-allowed;
  opacity: 0.7;
}
.modal-content #login-result, .modal-content #signup-result {
  color: #F60B0B;
  margin-top: 4px;
}

.terms-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.terms-modal {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
  padding: 32px 24px 24px 24px;
  max-width: 420px;
  width: 90vw;
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 80px;
}

.terms-title {
  font-weight: bold;
  margin-bottom: 12px;
}

.terms-message {
  font-size: 0.9em;
  margin-bottom: 12px;
  color: #333;
}

.terms-content-wrap {
  font-size: 0.8em;
  margin-bottom: 10px;
}

.terms-content {
  height: 300px;
  overflow-y: auto;
  border: 1px solid #ccc;
  padding: 10px;
  margin-bottom: 10px;
  font-size: 1em;
  line-height: 1.6;
  background: #fafafa;
  border-radius: 6px;
}

.terms-article-contents {
  margin-bottom: 8px;
}
.terms-article-contents .terms-article-list {
  list-style-type: revert-layer;
  padding-left: 20px;
}
.terms-article-contents .terms-article-string {
  list-style-type: decimal;
  padding-left: 20px;
}

.terms-agree-row label {
  display: flex;
  align-items: center;
  gap: 6px; /* チェックボックスと文字の間隔調整 */
}
.terms-agree-row label input {
  margin: 0;
}
.terms-agree-row label a {
  color: #ff5252;
  text-decoration: underline;
  cursor: pointer;
}

.terms-btn-row {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.terms-btn-row .terms-btn {
  height: 40px;
  padding: 0px 18px;
  border-radius: 6px;
  border: none;
  background: #e0e0e0;
  color: #333;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.2s;
}
.terms-btn-row .terms-btn:disabled {
  background: #ccc;
  color: #999;
  cursor: not-allowed;
}
.terms-btn-row .terms-btn:not(:disabled):hover,
.terms-btn-row .terms-btn:not(:disabled):focus {
  background: #ff5252;
  color: #fff;
}

/* キャラクター名入力・表示エリア */
#charNameInput {
  width: 200px;
  height: 36px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #d3d3d3;
  text-indent: 8px;
  margin-bottom: 4px;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 54px;
  height: 28px;
  vertical-align: middle;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
  border-radius: 28px;
}

.slider:before .toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider:before .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
  border-radius: 28px;
}
.slider:before .slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  background-color: #fff;
  transition: 0.3s;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.slider:before .toggle-switch input:checked + .slider {
  background-color: #ff1818;
}
.slider:before .toggle-switch input:checked + .slider:before {
  transform: translateX(26px);
}
.slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
}
.slider:before .toggle-label {
  font-family: sans-serif;
  display: inline-block;
  margin-left: 12px;
  font-size: 15px;
  vertical-align: middle;
  line-height: 28px;
  user-select: none;
  white-space: nowrap;
}
.slider:before {
  background-color: #fff;
  transition: 0.3s;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.toggle-switch input:checked + .slider {
  background-color: #ff1818;
}

.toggle-switch input:checked + .slider:before {
  transform: translateX(26px);
}

.toggle-label {
  font-family: sans-serif;
  margin-left: 12px;
  font-size: 15px;
  vertical-align: middle;
  user-select: none;
}

.char-privacy-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  width: 200px;
}

#charNameSubmit {
  width: 70px;
  height: 36px;
  border-radius: 8px;
  background-color: #ff1818;
  color: #FFF;
  font-size: 15px;
  font-weight: bold;
  border: none;
  margin-left: 8px;
  cursor: pointer;
  text-align: center;
}

.charNameInputWrap {
  font-family: sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 24px 0 12px 0;
  gap: 8px;
}

.charName {
  margin: 18px 0 10px 0;
  font-size: 20px;
  font-family: "Mochiy Pop P One", sans-serif;
  color: #000000;
  text-align: center;
}

html {
  scroll-padding-top: 60px;
}

body {
  background-color: #FFF;
}

html, body {
  height: 100%;
}

#app {
  min-height: calc(100% - 50px);
}

.thanks {
  padding: 50px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.thanks .title {
  font-family: "Mochiy Pop P One", sans-serif;
  font-size: 20px;
  color: #ff1818;
  margin-bottom: 30px;
}
.thanks .dance {
  width: 200px;
  height: 240px;
  background-color: #fafcfa;
  color: #000;
  font-weight: bold;
  background-image: url(../img/loader.gif);
  background-size: 160px;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  border: 6px solid #ff1a1a;
}
.thanks .wrap {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
.thanks .btn {
  background-color: #ff1818;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 20px;
  color: #FFF;
  font-size: 12px;
  font-weight: bold;
  margin-top: 20px;
  text-align: center;
}
.thanks .btn.line {
  border: 2px solid #ff1818;
  background-color: #FFF;
  color: #ff1818;
}

.logo {
  background-image: url(../img/logo.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

#footer {
  width: 100%;
  height: 40px;
  background-color: #313131;
  color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
}
#footer .socologo {
  width: 100px;
  height: 20px;
  background-image: url(../img/socologo.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

#checkout {
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0px;
  left: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: sans-serif;
  z-index: 400;
}
#checkout .co_window {
  width: 95%;
  background-color: #FFF;
  border-radius: 20px;
  padding: 15px 30px 10px;
  overflow: scroll;
  height: 95%;
}
#checkout .co_window .title {
  font-size: 16px;
  font-weight: bold;
}
#checkout .co_window .user-input {
  width: 100%;
  max-width: 300px;
  font-size: 14px;
  border-radius: 8px;
  border: 1px solid #d3d3d3;
  height: 32px;
  text-indent: 8px;
}
#checkout .co_window .user-input::placeholder {
  color: rgb(212, 212, 212);
}
#checkout .co_window .subtitle {
  font-size: 12px;
  font-weight: bold;
  margin: 16px 0px 4px;
}
#checkout .co_window .error {
  font-size: 9px;
  color: #F60B0B;
  margin-left: 6px;
}
#checkout .co_window .btn {
  height: 40px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
}
#checkout .co_window #checkout_cancel {
  background-color: #737373;
  color: #FFF;
  border: none;
}
#checkout .co_window #checkout_do {
  background-color: #533afd;
  color: #FFF;
  border: none;
}
#checkout .co_window .buttons {
  margin-top: 24px;
}
#checkout .co_window .double {
  display: flex;
  flex-direction: row;
}
#checkout .co_window .double > * {
  width: 50%;
}
#checkout .co_window .double > *:first-child {
  margin-right: 8px;
}
#checkout .co_window {
  /* チェックボックスラベル（お客様情報保存） */
}
#checkout .co_window .save-userinfo-label {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 14px;
}
#checkout .co_window #saveUserInfo {
  margin-right: 10px;
}

#loader {
  width: 100%;
  height: 100%;
  background-color: hsla(0, 0%, 0%, 0.3);
  position: fixed;
  top: 0px;
  left: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 500;
}

#loader2 {
  width: 100%;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader_anime {
  width: 200px;
  height: 200px;
  background-color: #fafcfa;
  color: #000;
  font-weight: bold;
  background-image: url(../img/loader.gif);
  background-size: 100px;
  background-position: center 10px;
  background-repeat: no-repeat;
  border-radius: 100px;
  text-align: center;
  padding-top: 160px;
  font-size: 12px;
  font-family: sans-serif;
}

.top-header {
  background-color: #FFF;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 50px;
  border-bottom: 1px solid #dadada;
  z-index: 10;
}

.header {
  background-color: #FFF;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 50px;
  border-bottom: 1px solid #dadada;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .logo {
  width: 100px;
  height: 35px;
}

.top {
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.top .hw_shipping_msg {
  font-size: 12px;
  font-weight: bold;
  margin-top: 20px;
  color: #6B00F8;
}
.top .checkbox-img {
  display: none;
}
.top .checkbox-label {
  display: inline-block;
  width: 80%;
  max-width: 260px;
  height: 60px;
  background: url("../img/hw_btn_disable.svg") no-repeat center/contain;
  cursor: pointer;
  transition: 0.2s ease;
}
.top {
  /* チェックされた状態 */
}
.top .checkbox-img:checked + .checkbox-label {
  background-image: url("../img/hw_btn_enable.svg");
  transform: scale(1.05);
}
.top .logo {
  width: 300px;
  height: 200px;
  background-image: url(../img/logo.svg);
}
.top .msg {
  position: relative;
  overflow: hidden;
  height: 150px; /* 高さは調整 */
  width: 300px;
}
.top .msg-bg-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  width: max-content;
  animation: scroll-bg 30s linear infinite;
  z-index: 1;
  opacity: 0.5; /* 画像を薄くする場合 */
}
.top .msg-bg-slider img {
  height: 100%;
  margin-right: 20px;
  object-fit: cover;
}
.top .msg-text {
  font-family: "Mochiy Pop P One", sans-serif;
  position: relative;
  z-index: 2;
  color: #000;
  font-size: 1.3em;
  text-align: center;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@keyframes scroll-bg {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  } /* 画像の合計幅に応じて調整 */
}
.top .fileUpload {
  margin-top: 40px;
  border: 1px solid #C2C2C2;
  padding: 30px 30px;
  position: relative;
  width: fit-content;
  background-color: #F8F8F8;
  border-radius: 6px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  max-width: 260px;
  text-indent: -99999px;
}
.top .fileUpload::file-selector-button {
  background-image: url(../img/upload.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 30px;
  display: block;
  margin-bottom: 16px;
  background-color: transparent;
  border: none;
  text-indent: -99999px;
}
.top p {
  margin: 10px;
  font-family: "Mochiy Pop P One", sans-serif;
}
.top #openCanvasBtn {
  border: none;
  background-color: #e9a85d;
  color: #FFF;
  max-width: 260px;
  height: 40px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  font-family: "Mochiy Pop P One", sans-serif;
  padding: 0 30px;
}
.top #openCanvasBtn img {
  width: 30px;
  height: 30px;
  vertical-align: middle;
  margin-right: 4px;
}
.top #openCanvasBtn:disabled {
  background: #ccc;
  color: #fff;
  cursor: not-allowed;
}
.top #generateBtn {
  margin-top: 40px;
  margin-bottom: 20px;
  border: none;
  background-color: rgb(255, 0, 0);
  color: #FFF;
  width: 160px;
  height: 40px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  font-family: "Mochiy Pop P One", sans-serif;
}
.top #generateBtn:disabled {
  background: #ccc;
  color: #fff;
  cursor: not-allowed;
}

#canvasModal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
}

#canvasModal .canvas-modal-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1333333333);
}

#closeCanvasModal {
  position: absolute;
  top: 8px;
  right: 12px;
  z-index: 10;
  font-size: 28px;
}

#canvasIframe {
  width: 95vw;
  height: 70vh;
  border: none;
  border-radius: 12px;
}

.gen-modal-overlay {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gen-modal {
  background: #fff;
  padding: 32px 24px 24px 24px;
  border-radius: 16px;
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
}
.gen-modal .gen-modal-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 12px;
}
.gen-modal .gen-modal-img {
  max-width: 220px;
  max-height: 220px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 16px;
}
.gen-modal .gen-modal-msg {
  margin-bottom: 18px;
  font-size: 16px;
  text-align: center;
}
.gen-modal .gen-modal-btn-row {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 16px;
}
.gen-modal .gen-modal-btn-row .gen-modal-btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gen-modal .gen-modal-btn-row .gen-modal-btn-wrap .gen-modal-btn {
  padding: 8px 10px;
  width: 120px;
  font-size: 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  margin: 0 8px 0 0;
}
.gen-modal .gen-modal-btn-row .gen-modal-btn-wrap .gen-modal-btn-retry {
  background: #eee;
  color: #333;
}
.gen-modal .gen-modal-btn-row .gen-modal-btn-wrap .gen-modal-btn-proceed {
  background: #F60B0B;
  color: #fff;
}
.gen-modal .gen-modal-btn-row .gen-modal-btn-wrap .gen-modal-btn-count {
  text-align: center;
  margin-top: 4px;
  font-size: 12px;
  color: #333;
}

.genResult {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 60px 20px 0px;
}
.genResult .main_img {
  max-width: 400px;
  width: 100%;
}
.genResult .goods_title {
  margin-top: 70px;
  margin-bottom: 40px;
  font-size: 34px;
  font-weight: bold;
  font-family: "Mochiy Pop P One", sans-serif;
  color: #F60B0B;
}
.genResult #product_grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 12px;
}
.genResult #product_grid .product {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  position: relative;
}
.genResult #product_grid .product.xmas {
  background-color: green;
  border-radius: 24px;
  padding: 8px;
  color: #FFF;
}
.genResult #product_grid .product.xmas::after {
  content: "クリスマス限定商品";
  font-size: 12px;
  font-weight: bold;
  position: absolute;
  top: -12px;
  background-color: red;
  padding: 6px 12px;
  border-radius: 8px;
}
.genResult #product_grid .product > img {
  width: 100%;
  border-radius: 20px;
}
.genResult #product_grid .product .pdname {
  display: flex;
  margin-top: auto;
  margin-bottom: 8px;
  padding-top: 10px;
  font-family: sans-serif;
  font-weight: bold;
  text-align: center;
}
.genResult #product_grid .product .pd-price {
  display: block;
  margin-top: 0.5em;
}
.genResult #product_grid .product .btn {
  background-color: #F60B0B;
  color: #FFF;
  width: 110px;
  height: 30px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: bold;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 20px;
  font-family: sans-serif;
}
.genResult #product_grid .product .product-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 15px;
}
.genResult #product_grid .product .buy-now-btn {
  background-color: #f68c0b;
}

.productDetail .detail_wrap .left img {
  width: 100%;
}
.productDetail .detail_wrap .right {
  margin-top: 20px;
  padding: 0px 16px 100px;
}
.productDetail .detail_wrap .right .title {
  font-size: 30px;
  margin-bottom: 16px;
  font-family: "Mochiy Pop P One", sans-serif;
}
.productDetail .detail_wrap .right .price {
  margin-bottom: 30px;
  font-weight: bold;
  color: #ff7100;
  font-size: 18px;
  font-family: sans-serif;
}
.productDetail .detail_wrap .right .desc {
  font-size: 14px;
  margin-bottom: 30px;
  font-family: sans-serif;
}
.productDetail .detail_wrap .right .shopping_guide {
  margin: 20px 0px;
}
.productDetail .detail_wrap .right .shopping_guide a {
  font-weight: bold;
  color: blue;
  text-decoration: underline;
  font-size: 12px;
  font-family: sans-serif;
}
.productDetail .detail_wrap .right .quantity-area {
  display: inline-flex;
  align-items: center;
  margin-bottom: 8px;
}
.productDetail .detail_wrap .right .quantity-selector {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.productDetail .detail_wrap .right .qty-btn {
  width: 32px;
  height: 32px;
  border: 1px solid #e2e2e2;
  background: #f8f8f8;
  color: #333;
  font-size: 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.productDetail .detail_wrap .right .qty-btn:hover {
  background: #ffeaea;
  box-shadow: 0 2px 8px rgba(246, 140, 11, 0.12);
}
.productDetail .detail_wrap .right .qty-btn:active {
  background: #ffeaea;
}
.productDetail .detail_wrap .right .qty-input {
  width: 48px;
  height: 32px;
  text-align: center;
  font-size: 15px;
  border: 1px solid #d3d3d3;
  border-radius: 6px;
  margin: 0 2px;
}
.productDetail .detail_wrap .right .btn {
  background-color: #F60B0B;
  width: 120px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  font-weight: bold;
  font-family: sans-serif;
  border-radius: 20px;
}

/*# sourceMappingURL=app.css.map */
