/*
Theme Name: GeneratePress Child
Theme URI: https://generatepress.com
Template: generatepress
Author: Tom Usborne
Author URI: https://generatepress.com/about
Description: GeneratePress is a lightweight WordPress theme built with a focus on speed and usability. Performance is important to us, which is why a fresh GeneratePress install adds less than 10kb (gzipped) to your page size. We take full advantage of the block editor (Gutenberg), which gives you more control over creating your content. If you use page builders, GeneratePress is the right theme for you. It is completely compatible with all major page builders, including Beaver Builder and Elementor. Thanks to our emphasis on WordPress coding standards, we can boast full compatibility with all well-coded plugins, including WooCommerce. GeneratePress is fully responsive, uses valid HTML/CSS, and is translated into over 25 languages by our amazing community of users. A few of our many features include 60+ color controls, powerful dynamic typography, 5 navigation locations, 5 sidebar layouts, dropdown menus (click or hover), and 9 widget areas. Learn more and check out our powerful premium version at https://generatepress.com
Tags: two-columns,three-columns,one-column,right-sidebar,left-sidebar,footer-widgets,blog,e-commerce,flexible-header,full-width-template,buddypress,custom-header,custom-background,custom-menu,custom-colors,sticky-post,threaded-comments,translation-ready,rtl-language-support,featured-images,theme-options
Version: 3.6.1.1769406975
Updated: 2026-01-26 14:56:15

*/

/* ==========================
   PBA Payment form styling
   ========================== */

/* ライト時：入力文字を濃い色で表示 */
.pba-payment-app .pba-pay-input,
.pba-payment-app .pba-pay-input:focus,
.pba-payment-app input[type="text"],
.pba-payment-app input[type="email"],
.pba-payment-app input[type="tel"],
.pba-payment-app input[type="number"],
.pba-payment-app textarea {
  color: #111827;
  caret-color: #111827;
  -webkit-text-fill-color: #111827;
}
.pba-payment-app .pba-pay-input::placeholder,
.pba-payment-app input::placeholder,
.pba-payment-app textarea::placeholder {
  color: rgba(107, 114, 128, 0.85);
}

/* ダーク時のみ：入力文字を白にして読めるように */
@media (prefers-color-scheme: dark) {
  .pba-payment-app .pba-pay-input,
  .pba-payment-app .pba-pay-input:focus,
  .pba-payment-app input[type="text"],
  .pba-payment-app input[type="email"],
  .pba-payment-app input[type="tel"],
  .pba-payment-app input[type="number"],
  .pba-payment-app textarea {
    color: #f9fafb !important;
    caret-color: #f9fafb !important;
    -webkit-text-fill-color: #f9fafb !important;
  }
  .pba-payment-app .pba-pay-input::placeholder,
  .pba-payment-app input::placeholder,
  .pba-payment-app textarea::placeholder {
    color: rgba(249, 250, 251, 0.55) !important;
  }
}
body.dark .pba-payment-app .pba-pay-input,
body.dark .pba-payment-app .pba-pay-input:focus,
body.dark .pba-payment-app input,
body.dark .pba-payment-app textarea,
[data-theme="dark"] .pba-payment-app .pba-pay-input,
[data-theme="dark"] .pba-payment-app input,
[data-theme="dark"] .pba-payment-app textarea {
  color: #f9fafb !important;
  caret-color: #f9fafb !important;
  -webkit-text-fill-color: #f9fafb !important;
}

/* Processing overlay (full-screen popup) */
#pba-payment-processing-overlay.pba-pay-overlay {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pba-pay-overlay-inner {
  background: #1f2937;
  color: #f9fafb;
  padding: 1.5rem 2rem;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.pba-pay-overlay-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid rgba(249, 250, 251, 0.2);
  border-top-color: #f9fafb;
  border-radius: 50%;
  animation: pba-pay-spin 0.8s linear infinite;
}
@keyframes pba-pay-spin {
  to { transform: rotate(360deg); }
}
.pba-pay-overlay-text {
  font-size: 1rem;
  letter-spacing: 0.05em;
}

/* 座席選択に戻るリンク */
.pba-payment-app .pba-pay-back-row {
  margin: 1rem 0;
  padding: 0.5rem 0;
}
.pba-payment-app .pba-pay-back-link {
  color: #93c5fd;
  text-decoration: none;
  font-size: 0.95rem;
}
.pba-payment-app .pba-pay-back-link:hover {
  text-decoration: underline;
  color: #bfdbfe;
}

/* Stripe success/cancel pages */
.pba-stripe-result {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  background: #1f2937;
  color: #f9fafb;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.pba-stripe-result h2 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  text-align: center;
}
.pba-stripe-success h2 {
  color: #10b981;
}
.pba-stripe-cancel h2 {
  color: #ef4444;
}
.pba-stripe-details {
  background: rgba(0, 0, 0, 0.2);
  padding: 1rem;
  border-radius: 4px;
  margin: 1rem 0;
}
.pba-stripe-details p {
  margin: 0.5rem 0;
  line-height: 1.6;
}
.pba-stripe-note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: rgba(249, 250, 251, 0.8);
  text-align: center;
}
.pba-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #3b82f6;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  margin-top: 1rem;
}
.pba-btn:hover {
  background: #2563eb;
}

/* 座席選択ページ：固定ページタイトル・メニューバー非表示 */
body.pba-ticket-page .entry-header,
body.pba-ticket-page .main-navigation {
  display: none !important;
}
