/* ============================================================
   Cherry Fizz 沖縄 — Premium Design
   テーマ：深夜の沖縄の海 × ゴールド × 珊瑚レッド
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap');

/* ===== CSS変数 ===== */
:root {
  --navy:      #0d1b2a;
  --navy-mid:  #1a2e45;
  --navy-light:#243b55;
  --gold:      #c9a84c;
  --gold-light:#f0d080;
  --coral:     #e05a4e;
  --coral-dark:#c0392b;
  --coral-glow:rgba(224,90,78,0.35);
  --green:     #00b900;
  --blue-link: #2980b9;
  --text:      #2c2c2c;
  --text-light:#666;
  --bg:        #fafafa;
  --white:     #ffffff;
  --border:    #e0e0e0;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.18);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 50px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ===== BASE ===== */
body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Meiryo', sans-serif;
  font-size: 15px;
  line-height: 1.85;
  color: var(--text);
  background: var(--bg);
}

a { color: var(--coral); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--coral-dark); text-decoration: none; }

img { max-width: 100%; height: auto; display: block; }

/* ===== HEADER ===== */
.site-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 8px 0;
  border-bottom: 1px solid rgba(201,168,76,0.3);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.header-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.header-title {
  font-size: 10px;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
  flex: 1;
  letter-spacing: 0.03em;
}
.header-sns {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.header-sns a {
  display: inline-flex;
  align-items: center;
  opacity: 0.85;
  transition: opacity 0.2s, transform 0.2s;
}
.header-sns a:hover { opacity: 1; transform: scale(1.1); }
.header-sns a img {
  width: 24px;
  height: 24px;
  display: block;
  border-radius: 6px;
}

/* ===== MAIN WRAPPER ===== */
main {
  max-width: 960px;
  margin: 0 auto;
  padding: 28px 20px 60px;
}

/* ===== HEADINGS ===== */
h1 {
  font-size: 24px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.5;
  margin: 24px 0 20px;
  padding: 16px 20px;
  background: linear-gradient(135deg, #fff 0%, #f8f4ee 100%);
  border-left: 5px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  box-shadow: var(--shadow-sm);
}

h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin: 36px 0 16px;
  padding-bottom: 10px;
  position: relative;
}
h2::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--coral) 0%, var(--gold) 60%, transparent 100%);
  border-radius: 2px;
}

h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin: 28px 0 14px;
  padding: 10px 14px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  border-radius: var(--radius-sm);
  letter-spacing: 0.04em;
}

h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin: 22px 0 12px;
  padding: 8px 14px;
  border-left: 4px solid var(--gold);
  background: linear-gradient(90deg, #fdf8ee 0%, transparent 100%);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--coral);
  margin: 20px 0 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
h5::before {
  content: '◆';
  font-size: 10px;
  color: var(--gold);
}

h6 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-mid);
  margin: 18px 0 10px;
  padding-bottom: 4px;
  border-bottom: 1px dashed var(--gold);
  display: inline-block;
}

p { margin-bottom: 16px; }

ul { margin: 10px 0 16px 0; padding: 0; list-style: none; }
ul li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}
ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 10px;
  top: 5px;
}

/* ===== HERO IMAGE ===== */
.hero-image {
  margin: 0 0 24px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}
.hero-image:hover img { transform: scale(1.02); }

/* ===== SECTION IMAGES ===== */
.section-image {
  margin: 20px 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.section-image img { width: 100%; height: auto; display: block; }

.section-image-2col {
  display: flex;
  gap: 8px;
  margin: 20px 0;
}
.section-image-2col img {
  width: 50%;
  height: auto;
  display: block;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

/* ===== CTA TOP ===== */
.cta-top {
  text-align: center;
  margin: 20px 0 24px;
}

/* ===== BUTTONS ===== */
.btn-tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: var(--white) !important;
  padding: 16px 40px;
  border-radius: var(--radius-xl);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 0 6px 20px var(--coral-glow);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none !important;
}
.btn-tel:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px var(--coral-glow);
  color: var(--white) !important;
}

.btn-reserve {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #27ae60 0%, #1e8449 100%);
  color: var(--white) !important;
  padding: 16px 40px;
  border-radius: var(--radius-xl);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 0 6px 20px rgba(39,174,96,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none !important;
}
.btn-reserve:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(39,174,96,0.45);
  color: var(--white) !important;
}

.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #00c300 0%, #009900 100%);
  color: var(--white) !important;
  padding: 13px 32px;
  border-radius: var(--radius-xl);
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(0,185,0,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none !important;
}
.btn-line:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,185,0,0.4);
  color: var(--white) !important;
}

.btn-mail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: var(--white) !important;
  padding: 13px 32px;
  border-radius: var(--radius-xl);
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(52,152,219,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none !important;
}
.btn-mail:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(52,152,219,0.4);
  color: var(--white) !important;
}

/* ===== LEAD TEXT ===== */
.lead-text {
  background: linear-gradient(135deg, #fff 0%, #fdf8ee 100%);
  border: 1px solid rgba(201,168,76,0.4);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  font-size: 15px;
  line-height: 1.9;
}

/* ===== INFO TABLE ===== */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 14px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.info-table caption {
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  padding: 12px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--gold-light);
  letter-spacing: 0.05em;
}
.info-table th,
.info-table td {
  border: 1px solid #e8e0d0;
  padding: 12px 16px;
  text-align: center;
  vertical-align: middle;
  width: 50%;
}
.info-table th {
  background: linear-gradient(135deg, #fdf8ee 0%, #f5edd8 100%);
  color: var(--navy);
  font-weight: 700;
}
.info-table td { background: var(--white); }
.info-table tr:hover td { background: #fffdf5; }

/* ===== PRICE TABLE ===== */
.price-table,
.cancel-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 14px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.price-table thead th,
.cancel-table thead th {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--gold-light);
  font-weight: 700;
  padding: 12px 16px;
  text-align: center;
  letter-spacing: 0.04em;
}
.price-table tbody td,
.price-table tbody th,
.cancel-table tbody td,
.cancel-table tbody th {
  border: 1px solid var(--border);
  padding: 11px 16px;
  text-align: center;
  vertical-align: middle;
}
.price-table tbody tr:nth-child(even) td,
.price-table tbody tr:nth-child(even) th,
.cancel-table tbody tr:nth-child(even) td,
.cancel-table tbody tr:nth-child(even) th {
  background: #fafaf5;
}
.price-table tbody tr:hover td,
.cancel-table tbody tr:hover td { background: #fdf8ee; }

/* ===== FAQ TABLE ===== */
.faq-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 14px;
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-table th,
.faq-table td {
  border: 1px solid var(--border);
  padding: 14px 16px;
  vertical-align: top;
  line-height: 1.75;
}
.faq-table th {
  background: linear-gradient(135deg, #fdf8ee 0%, #f5edd8 100%);
  color: var(--navy);
  font-weight: 700;
  width: 38%;
}
.faq-table tr:hover th,
.faq-table tr:hover td { background: #fffdf5; }

/* ===== STEPS ===== */
.steps { margin: 16px 0 24px; display: flex; flex-direction: column; gap: 12px; }
.step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.step:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 28px;
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  border-radius: var(--radius-xl);
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

/* ===== REVIEWS ===== */
.reviews { display: flex; flex-direction: column; gap: 12px; margin: 16px 0 24px; }
.review {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: 14px;
  line-height: 1.8;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.review::before {
  content: '"';
  position: absolute;
  top: -8px; right: 12px;
  font-size: 60px;
  color: rgba(201,168,76,0.12);
  font-family: Georgia, serif;
  line-height: 1;
}
.review-stars { color: #f5a623; font-size: 14px; letter-spacing: 1px; }
.review-meta { font-size: 12px; color: var(--text-light); margin-left: 6px; }

/* ===== FAQ SECTION ===== */
.faq-section { margin-top: 36px; }

/* ===== FORM SECTION ===== */
.form-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  margin: 36px 0;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.form-section h2 {
  color: var(--gold-light);
  margin-top: 0;
}
.form-section h2::after {
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
}
.form-section p { color: rgba(255,255,255,0.85); }
.form-cta { margin-top: 20px; }

/* ===== CTA BOTTOM ===== */
.cta-bottom {
  text-align: center;
  margin: 32px 0 20px;
  padding: 28px;
  background: linear-gradient(135deg, #fff8f0 0%, #fdf4e8 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201,168,76,0.3);
  box-shadow: var(--shadow-sm);
}
.cta-bottom p {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 16px;
  color: var(--navy);
}

/* ===== CONTACT LINKS ===== */
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 20px 0;
}

/* ===== PRIVACY ===== */
.privacy {
  text-align: center;
  margin: 12px 0 24px;
  font-size: 13px;
  color: var(--text-light);
}

/* ===== AREA LINKS ===== */
.area-links {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  margin-top: 36px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-lg);
}
.area-links h2 {
  color: var(--gold-light);
  margin-top: 0;
}
.area-links h2::after {
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
}
.area-links ul {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.area-links ul li { margin: 0; }
.area-links ul li::before { display: none; }
.area-links ul li a {
  display: inline-block;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(201,168,76,0.4);
  color: rgba(255,255,255,0.85);
  padding: 6px 16px;
  border-radius: var(--radius-xl);
  font-size: 13px;
  transition: all 0.2s;
  text-decoration: none;
}
.area-links ul li a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-1px);
}
.area-links ul li strong {
  display: inline-block;
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
  color: var(--white);
  padding: 6px 16px;
  border-radius: var(--radius-xl);
  font-size: 13px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: linear-gradient(135deg, var(--navy) 0%, #0a1520 100%);
  color: rgba(255,255,255,0.6);
  padding: 28px 20px 32px;
  text-align: center;
  margin-top: 48px;
  border-top: 1px solid rgba(201,168,76,0.25);
}
.footer-sns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 16px;
}
.footer-sns a {
  color: rgba(255,255,255,0.8);
  font-size: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 5px 14px;
  border-radius: var(--radius-xl);
  text-decoration: none;
  transition: all 0.2s;
}
.footer-sns a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.footer-recruit {
  margin: 16px 0 12px;
}
.footer-recruit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(201,168,76,0.15) 0%, rgba(201,168,76,0.05) 100%);
  border: 1px solid rgba(201,168,76,0.5);
  color: var(--gold-light) !important;
  padding: 12px 28px;
  border-radius: var(--radius-xl);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none !important;
  transition: all 0.25s;
}
.footer-recruit-btn:hover {
  background: linear-gradient(135deg, var(--gold) 0%, #d4a843 100%);
  border-color: var(--gold);
  color: var(--navy) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}
.footer-recruit-icon { font-size: 16px; }
.footer-recruit-arrow {
  font-size: 16px;
  transition: transform 0.2s;
}
.footer-recruit-btn:hover .footer-recruit-arrow { transform: translateX(4px); }

.copyright {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: 8px;
}

/* ===================================================
   スマホ下部固定CTAバー
   =================================================== */
.sp-fixed-bar { display: none; }

@media (max-width: 768px) {
  body { padding-bottom: 70px; }

  .sp-fixed-bar {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 9999;
    height: 64px;
    background: var(--white);
    border-top: 1px solid rgba(201,168,76,0.3);
    box-shadow: 0 -4px 16px rgba(0,0,0,0.15);
  }
  .sp-fixed-bar a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none !important;
    color: var(--white);
    line-height: 1.2;
    padding: 6px 4px;
    transition: filter 0.15s;
  }
  .sp-fixed-bar a:hover { filter: brightness(1.1); }
  .sp-fixed-bar .sp-bar-tel {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  }
  .sp-fixed-bar .sp-bar-line {
    background: linear-gradient(135deg, #00c300 0%, #009900 100%);
  }
  .sp-fixed-bar .sp-bar-reserve {
    background: linear-gradient(135deg, #f39c12 0%, #d68910 100%);
  }
  .sp-fixed-bar .sp-bar-icon { font-size: 22px; line-height: 1; }
  .sp-fixed-bar .sp-bar-label { font-size: 10px; white-space: nowrap; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  h1 { font-size: 18px; padding: 12px 16px; }
  h2 { font-size: 17px; }
  h3 { font-size: 15px; }
  .btn-tel, .btn-reserve { font-size: 16px; padding: 14px 28px; }
  .contact-links { flex-direction: column; align-items: center; }
  .info-table, .price-table, .cancel-table, .faq-table { font-size: 13px; }
  .info-table th, .info-table td { padding: 9px 8px; }
  .faq-table th { width: 100%; display: block; }
  .faq-table td { display: block; width: 100%; }
  .faq-table tr { display: block; margin-bottom: 12px; border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
  .faq-table th, .faq-table td { border: none; border-bottom: 1px solid #eee; }
  .step { padding: 12px 14px; gap: 10px; }
  .form-section { padding: 24px 16px; }
  .area-links { padding: 20px 16px; }
}
