@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap');

:root {
  --primary: #e60012; /* High Impact Red */
  --secondary: #ffc107; /* High Impact Gold */
  --accent-gold: #d4af37;
  --text-dark: #111111;
  --text-light: #444444;
  --bg-light: #fdf8f8;
  --bg-dark: #1a1a1a;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--bg-light);
  overflow-x: hidden;
}

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

.container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--primary);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--secondary);
  margin: 15px auto 0;
}

/* Hero Section */
.hero {
  position: relative;
  height: 90vh;
  min-height: 600px;
  background: url('images/hero.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: 40px;
  background: rgba(160, 0, 0, 0.85); /* Semi-transparent Red */
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  max-width: 800px;
  width: 90%;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeUp 1s ease forwards 0.5s;
}

@keyframes fadeUp {
  to { transform: translateY(0); opacity: 1; }
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-desc {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 30px;
}

.hero-info {
  background: var(--white);
  color: var(--text-dark);
  padding: 15px;
  border-radius: 8px;
  font-weight: 700;
  margin-bottom: 25px;
  font-size: 1.2rem;
}

.hero-info span {
  color: var(--secondary);
}

/* Event Info */
.event-info {
  background-color: var(--white);
}

.event-box {
  background: var(--bg-light);
  border: 2px solid var(--primary);
  border-radius: 10px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.event-box h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.event-details {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.event-detail-item {
  flex: 1 1 200px;
  background: var(--white);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.event-detail-item h4 {
  color: var(--secondary);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.seo-text {
  margin-top: 30px;
  font-size: 0.95rem;
  color: var(--text-light);
}

/* Products */
.products {
  background-color: var(--bg-dark);
  color: var(--white);
  padding: 100px 0;
}

.products .section-title {
  color: var(--white);
  text-shadow: 2px 2px 0px var(--primary);
  font-size: 2.5rem;
}

.products .section-title::after {
  background-color: var(--secondary);
  height: 6px;
  width: 80px;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(230, 0, 18, 0.2);
  border: 4px solid var(--primary);
  margin-bottom: 50px;
  transition: transform 0.3s ease;
  position: relative;
}

@media (min-width: 768px) {
  .product-card {
    flex-direction: row;
  }
  .product-card:nth-child(even) {
    flex-direction: row-reverse;
  }
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-image {
  flex: 1;
  min-height: 250px;
  background: #ddd; /* Placeholder for product images */
  position: relative;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  flex: 1;
  padding: 40px;
}

.product-info h3 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.product-tags {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.product-tag {
  background: var(--primary);
  color: var(--white);
  padding: 8px 15px;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 900;
  border: none;
  box-shadow: 2px 2px 0 rgba(0,0,0,0.2);
  text-transform: uppercase;
}

.product-info p {
  color: var(--text-light);
  margin-bottom: 15px;
}

.product-price {
  font-size: 1.5rem;
  color: var(--secondary);
  font-weight: 900;
  margin-top: 20px;
}

/* Price Table */
.price-table-section {
  background: var(--white);
  padding: 100px 0;
}

.price-table-section .section-title {
  font-size: 2.5rem;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  border: 4px solid var(--primary);
  border-radius: 8px;
  overflow: hidden;
}

.price-table th, .price-table td {
  padding: 25px 20px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.price-table th {
  background: var(--primary);
  color: var(--secondary);
  font-weight: 900;
  font-size: 1.3rem;
  text-transform: uppercase;
  border-bottom: 4px solid var(--secondary);
}

.price-table td {
  font-weight: 700;
  font-size: 1.1rem;
}

.price-table tr:hover {
  background: #fffdfd;
}

.price-highlight {
  color: var(--primary);
  font-size: 1.8rem !important;
  font-weight: 900;
  text-shadow: 1px 1px 0px rgba(0,0,0,0.1);
}

/* Strengths */
.strengths {
  background: var(--bg-dark);
  color: var(--white);
  padding: 100px 0;
}

.strengths .section-title {
  color: var(--white);
  text-shadow: 2px 2px 0px var(--primary);
}

.strengths .section-title::after {
  background-color: var(--secondary);
}

.strength-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.strength-item {
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(212,175,55,0.3);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.strength-item:hover {
  transform: translateY(-8px);
  border-color: rgba(212,175,55,0.8);
  box-shadow: 0 15px 40px rgba(0,0,0,0.7);
}
.strength-item::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.strength-icon {
  font-size: 3.5rem;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-style: italic;
  font-weight: bold;
  color: #d4af37;
  margin-bottom: 20px;
  line-height: 1;
  text-shadow: 2px 4px 10px rgba(0,0,0,0.5);
}

.strength-item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* CTA */
.cta-area {
  text-align: center;
  margin-top: 30px;
}

.btn {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  text-align: center;
  cursor: pointer;
}

.btn-line {
  background: #06c755;
  color: var(--white);
}

.btn-line:hover {
  background: #05a546;
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--secondary);
  color: var(--white);
}

.btn-primary:hover {
  background: #c0000f;
  transform: translateY(-2px);
}

/* Sticky CTA / Conversion Station */
.sticky-cta {
  position: fixed;
  z-index: 9999;
  display: flex;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

@media (max-width: 767px) {
  /* Mobile: Bottom Bar */
  .sticky-cta {
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.98);
    padding: 10px 5px;
    gap: 5px;
    justify-content: space-around;
  }
  .sticky-cta-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 8px 5px;
    border-radius: 8px;
    color: var(--white);
    font-size: 0.8rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
  }
  .sticky-cta-btn .icon { font-size: 1.2rem; margin-bottom: 2px; }
  .sticky-cta-btn.tel { background-color: #ff7f50; }
  .sticky-cta-btn.line { background-color: #06c755; }
  .sticky-cta-btn.mail { background-color: var(--primary); }
  .sticky-cta-btn .micro-copy { display: none; }
}

@media (min-width: 768px) {
  /* PC: Bottom Right Floating */
  .sticky-cta {
    top: auto;
    bottom: 30px;
    right: 30px;
    transform: none;
    flex-direction: column;
    gap: 15px;
    background: transparent;
    box-shadow: none;
    padding: 0;
    align-items: flex-end;
  }
  .sticky-cta-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 60px;
    padding: 0 25px;
    text-decoration: none;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: bold;
    line-height: 1.2;
    border-radius: 50px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    position: relative;
  }
  .sticky-cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  }
  .sticky-cta-btn .icon { font-size: 1.6rem; margin-right: 10px; margin-bottom: 0; }
  .sticky-cta-btn.tel { background-color: #ff7f50; }
  .sticky-cta-btn.line { background-color: #06c755; }
  .sticky-cta-btn.mail { background-color: var(--primary); }
  
  .sticky-cta-btn .micro-copy {
    position: absolute;
    top: -12px;
    right: 10px;
    background: var(--secondary);
    color: white;
    font-size: 0.75rem;
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
    animation: bounce 2s infinite;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  }
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-5px);}
    60% {transform: translateY(-3px);}
  }
}

.contact-form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  border: 6px solid var(--primary);
  border-radius: 16px;
  padding: 50px 30px 30px;
  box-shadow: 0 15px 40px rgba(230,0,18,0.2);
  position: relative;
}

.contact-form-wrapper::before {
  content: "お得に予約するなら今すぐ！";
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  color: var(--text-dark);
  padding: 10px 30px;
  border-radius: 30px;
  font-weight: 900;
  font-size: 1.3rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  white-space: nowrap;
}

/* Fade in animation class */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .hero-title { font-size: 1.8rem; }
  .section { padding: 50px 0; }
  .price-table { font-size: 0.9rem; }
  .price-table th, .price-table td { padding: 10px; }
}

/* HP Header Fixes */
.coco-hdr { padding: 10px 20px; background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.coco-hdr__top { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; }
.coco-hdr__logo img { max-width: 440px !important; height: auto; }
.coco-hdr__right { display: flex; align-items: center; gap: 20px; }
.coco-hdr-tel { text-align: right; }
.coco-hdr-tel-lead { font-size: 0.8rem; color: #666; }
.coco-hdr-tel-num { font-size: 1.5rem; font-weight: bold; color: #333; text-decoration: none; }
.coco-hdr-tel-note { font-size: 0.7rem; color: #999; }
.coco-hdr-btns { display: flex; gap: 10px; }
.coco-btn { padding: 8px 12px; border-radius: 5px; color: #fff; text-decoration: none; font-size: 0.85rem; font-weight: bold; }
.coco-yt { background: #ff0000; }
.coco-ig { background: #e1306c; }
.coco-line { background: #06c755; }
.coco-mail { background: #333; }
.coco-hdr__bottom, .coco-hdr-menu { display: none !important; }
@media (max-width: 800px) { .coco-hdr__right { display: none; } .coco-hdr__top { justify-content: center; } }
