@charset "UTF-8";

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f2f2f2;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* Container */
.container {
  max-width: 640px;
  margin: 0 auto;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

/* Header */
header {
  padding: 10px 15px;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pr-label {
  font-size: 10px;
  color: #999;
  border: 1px solid #999;
  padding: 2px 4px;
  border-radius: 2px;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
}

.hero img {
  width: 100%;
  display: block;
}

.hero-text {
  padding: 20px 15px;
  background: #fff;
  text-align: center;
}

.hero-title {
  font-size: 24px;
  font-weight: bold;
  color: #000;
  line-height: 1.4;
  margin-bottom: 10px;
  background: linear-gradient(transparent 60%, #ffff00 60%);
  display: inline;
}

/* Content Sections */
/* Content Sections */
.content-section {
  padding: 40px 20px;
  /* Increased for uniform breathing room */
  border-bottom: 1px dashed #eee;
}

.content-section>*:first-child {
  margin-top: 0;
}

.content-section>*:last-child {
  margin-bottom: 0;
}

.section-title {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin: 0 0 30px;
  /* Removed top margin as it's handled by section padding */
  position: relative;
  line-height: 1.4;
  padding-bottom: 10px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: #e60012;
  /* Accent Red */
}

p {
  margin-bottom: 1.5rem;
  font-size: 16px;
}

/* Typography Helpers */
.bold {
  font-weight: bold;
}

.red {
  color: #e60012;
}

.blue {
  color: #0044cc;
}

.yellow-bg {
  background-color: #ffff99;
  padding: 2px;
}

.text-center {
  text-align: center;
}

.big-text {
  font-size: 1.2em;
}

.highlight {
  font-size: 24px;
  font-weight: bold;
  color: #000;
  line-height: 1.4;
  margin-bottom: 10px;
  background: linear-gradient(transparent 60%, #ffff00 60%);
  display: inline;
}

/* Intro / Profile */
.intro-box {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  background: #f9f9f9;
  padding: 15px;
  border-radius: 8px;
}

.intro-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  margin-right: 15px;
  border: 2px solid #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.intro-text p {
  margin-bottom: 5px;
  font-size: 14px;
}

/* Points */
/* Points refined for smart layout */
.point-box {
  margin-bottom: 20px;
  border: 2px solid #f0f0f0;
  border-radius: 8px;
  padding: 40px 15px 15px;
  /* Added top padding for the absolute badge */
  position: relative;
  background: #fff;

  display: flex;
  flex-direction: row-reverse;
  /* Image on right looks smarter sometimes, but let's stick to standard or check request. User didn't specify. Left is safe. Let's do Left Image. */
  /* Actually for "smart" feel, maybe alternating? No, keep simple. */
  flex-direction: row;
  align-items: center;
  gap: 15px;
  text-align: left;
}

.point-badge {
  position: absolute;
  top: -12px;
  left: 15px;
  background: #e60012;
  color: #fff;
  font-weight: bold;
  padding: 4px 15px;
  border-radius: 20px;
  font-size: 14px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.point-image {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 5px;
  flex-shrink: 0;
  border: 1px solid #eee;
  padding: 5px;
  background: #fff;
}

.point-content {
  flex: 1;
}

.point-title {
  margin-top: 0;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 8px;
  color: #333;
  border-bottom: 1px solid #eee;
  padding-bottom: 5px;
  display: inline-block;
  width: 100%;
}

/* Product Info */
.product-card {
  background: #eef9ff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 20px;
}

.product-features li {
  list-style: none;
  text-align: left;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.product-features li::before {
  content: "✔";
  color: #00aa00;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Experience Diary */
.diary-entry {
  background: #fffdf0;
  border: 1px solid #eee;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.diary-title {
  font-weight: bold;
  color: #d4a017;
  margin-bottom: 5px;
  border-bottom: 1px dotted #ccc;
  padding-bottom: 5px;
  display: inline-block;
}

/* Merits / Demerits */
.review-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.review-card {
  padding: 15px;
  border-radius: 8px;
}

.review-card.good {
  background-color: #f0fff4;
  border: 1px solid #c6f6d5;
}

.review-card.bad {
  background-color: #fff5f5;
  border: 1px solid #fed7d7;
}

.review-header {
  font-weight: bold;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.review-header.good::before {
  content: "⭕";
  margin-right: 5px;
}

.review-header.bad::before {
  content: "🔺";
  margin-right: 5px;
}

/* Expert View */
.expert-box {
  border: 3px solid #0044cc;
  padding: 2px;
  border-radius: 10px;
  margin-top: 20px;
}

.expert-inner {
  border: 1px solid #0044cc;
  padding: 15px;
  border-radius: 8px;
  background: #fff;
  text-align: left;
}

/* Target Audience */
.check-list {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 10px;
}

.check-list ul {
  list-style: none;
}

.check-list li {
  padding: 10px 0;
  border-bottom: 1px dashed #ccc;
  position: relative;
}

/* Rating */
.rating-box {
  text-align: center;
  padding: 20px;
  border: 5px double #gold;
  background: #fff;
  margin: 20px 0;
}

.rating-stars {
  color: #f5c518;
  font-size: 24px;
  letter-spacing: 5px;
}

/* CTA Section */
/* CTA Section (Premium Gold) */
.cta-section {
  background: linear-gradient(to bottom, #fffcf5, #fff8e1);
  /* Subtle Gold Gradient */
  padding: 40px 20px;
  text-align: center;
  border: 2px solid #d4af37;
  /* Gold */
  outline: 2px solid #d4af37;
  outline-offset: -8px;
  /* Inner Frame Effect */
  margin-top: 50px;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
  /* Golden Glow */
  border-radius: 5px;
  position: relative;
}

.price-box {
  background: #fff;
  padding: 30px 20px;
  margin: 30px 0 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #f0e6d2;
  /* Light gold-ish border */
  position: relative;
  z-index: 2;
  /* Ensure above outline */
}

.price-old {
  text-decoration: line-through;
  color: #888;
  font-size: 14px;
}

.price-new {
  font-size: 32px;
  color: #e60012;
  font-weight: 900;
  line-height: 1;
}

.price-label {
  font-size: 14px;
  color: #e60012;
  font-weight: bold;
}

/* CTA Label */
.cta-label {
  text-align: center;
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #000;
  display: block;
}

.cta-button {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  background: linear-gradient(to bottom, #ff4e50, #f9d423);
  /* Vibrant gradient */
  background: linear-gradient(to bottom, #00c853, #009624);
  /* Green buy button */
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  padding: 20px;
  border-radius: 50px;
  box-shadow: 0 5px 0 #00600f;
  transform: translateY(0);
  transition: all 0.1s;
  animation: pulse 2s infinite;
}

.cta-button:active {
  transform: translateY(3px);
  box-shadow: 0 2px 0 #00600f;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.02);
  }

  100% {
    transform: scale(1);
  }
}

/* Profile Section */
.profile-section {
  background: #333;
  color: #fff;
  padding: 30px 20px;
}

.profile-table {
  width: 100%;
  font-size: 14px;
  margin-top: 20px;
  border-collapse: collapse;
}

.profile-table th,
.profile-table td {
  padding: 10px;
  border-bottom: 1px solid #555;
  text-align: left;
}

.profile-table th {
  width: 30%;
  color: #aaa;
}

/* Profile Media Scroll Box */
.media-scroll-box {
  height: 200px;
  overflow-y: scroll;
  border: 1px solid #ddd;
  background: #fff;
  padding: 10px;
  border-radius: 4px;
}

.media-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.media-list li {
  font-size: 13px;
  padding: 6px 0;
  border-bottom: 1px dotted #eee;
  color: #555;
}

.media-list li:last-child {
  border-bottom: none;
}

footer {
  background: #f2f2f2;
  padding: 20px;
  text-align: center;
  font-size: 12px;
  color: #666;
}

/* Responsive */
@media (min-width: 768px) {
  .review-grid {
    flex-direction: row;
  }

  .review-card {
    flex: 1;
  }
}

/* --- Refactoring: New Utilities & Components --- */

/* Utilities */

.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.font-bold {
  font-weight: bold;
}

.text-xs {
  font-size: 60%;
}

.text-sm {
  font-size: 0.8rem;
}

.text-md {
  font-size: 0.9em;
}

.text-lg {
  font-size: 1.2rem;
}

.text-xl {
  font-size: 1.4rem;
}

.text-gray {
  color: #666;
}

.text-light-gray {
  color: #888;
}

.text-blue {
  color: #0044cc;
}

.text-red {
  color: #e60012;
}

.text-white {
  color: #fff;
}

.bg-white {
  background: #fff;
}

.bg-transparent {
  background: transparent;
}

.border-none {
  border: none;
}

.list-none {
  list-style: none;
}

.line-through {
  text-decoration: line-through;
}

.float-right {
  float: right;
}

.block-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* High Impact Visuals (Jump Rate & Markers) */
.text-xxl {
  font-size: 1.8rem;
  line-height: 1.3;
}

.text-3xl {
  font-size: 2.2rem;
  line-height: 1.25;
}

.text-huge {
  font-size: 3rem;
  line-height: 1;
  letter-spacing: -2px;
}

.font-heavy {
  font-weight: 900;
}

/* Markers */
.marker-yellow {
  background: linear-gradient(transparent 60%, #ffff00 60%);
  font-weight: bold;
}

.marker-red {
  background: linear-gradient(transparent 60%, #ffcccc 60%);
  font-weight: bold;
}

.marker-blue {
  background: linear-gradient(transparent 60%, #ccffff 60%);
  font-weight: bold;
}

/* Emphasis Boxes */
.box-yellow {
  background-color: #fffde7;
  border: 3px solid #fdd835;
  border-radius: 10px;
  padding: 20px;
  margin: 25px 0;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.1);
  text-align: center;
}

.box-red {
  background-color: #fff5f5;
  border: 3px solid #e53e3e;
  border-radius: 10px;
  padding: 20px;
  margin: 25px 0;
  text-align: center;
}

.circle-number {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: #333;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  margin-right: 5px;
  font-weight: bold;
}

/* Specific Component Styles */

/* Header */
.ad-label {
  font-size: 60%;
  float: right;
}

/* Problem Section */
.problem-box {
  margin-bottom: 20px;
}

.problem-list {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
  font-weight: bold;
}

/* Comment Box */
.comment-box {
  background: #eef9ff;
  padding: 15px;
  border-radius: 5px;
  margin-top: 10px;
}

/* Reason Box */
.reason-box {
  margin: 20px 0;
  text-align: center;
}

.reason-list {
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 5px;
  background: #fff;
  text-align: left;
  list-style: none;
}

.reason-list li {
  margin-bottom: 10px;
  padding-left: 1.8em;
  text-indent: -1.8em;
}

.reason-list li:last-child {
  margin-bottom: 0;
}

/* Philosophy */
.misconception {
  font-size: 1.1rem;
  margin: 15px 0;
}

.truth-box {
  font-size: 1.2rem;
  background: #fff5f5;
  padding: 10px;
}

/* Timing List */
.timing-list {
  border: 2px dashed #f5a623;
  padding: 15px 15px 15px 30px;
  border-radius: 5px;
  background: #fffcf0;
  margin-top: 15px;
}

/* Profile */
.profile-img-lg {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
}

/* Campaign Badge */
.campaign-badge {
  background: #e60012;
  color: #fff;
  display: inline-block;
  padding: 5px 15px;
  border-radius: 20px;
  margin-top: 5px;
}

/* Animations */
@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

.arrow-down {
  animation: bounce 2s infinite;
  display: block;
  /* Ensure transform works */
}

/* Problem List with Hanging Indent */
.problem-list {
  background: #f9f9f9;
  /* Matching previous subtle background if any, or plain */
  /* Actually strictly following request: just indentation */
  list-style: none;
  /* Ensure no default bullets */
  padding: 20px;
  text-align: left;
  display: inline-block;
}

.problem-list li {
  margin-bottom: 10px;
  padding-left: 1.5em;
  text-indent: -1.5em;
}

.problem-list li:last-child {
  margin-bottom: 0;
}

/* Arrows */
.arrow-gray {
  font-size: 2rem;
  color: #ccc;
  margin: 0 0 20px;
}

.arrow-red {
  font-size: 2rem;
  color: #e60012;
}

/* CTA Ribbon */
.cta-ribbon {
  background: #e60012;
  color: #fff;
  display: inline-block;
  padding: 5px 30px;
  border-radius: 4px;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  font-weight: bold;
  font-size: 1.1rem;
  white-space: nowrap;
}

.cta-title {
  margin-top: 10px;
}

/* Amazon Label */
.amazon-label {
  display: inline-block;
  padding: 5px 20px;
  border-radius: 20px;
  background: #e60012;
  color: #fff;
}

/* Price Elements */
.price-yen {
  color: #333;
}

/* Summary Section */
.section-summary {
  background: #fffcf0;
}

.summary-list {
  padding: 0;
  text-align: center;
}

/* Profile */
.profile-title {
  text-align: center;
  border-bottom: 1px solid #777;
  padding-bottom: 10px;
}

/* High Impact Discount Badge */
.discount-badge {
  background: #ffeb3b;
  /* Vibrant Yellow */
  color: #e60012;
  /* Accent Red */
  border: 4px solid #e60012;
  border-radius: 10px;
  /* Sticker-like shape */
  padding: 10px 30px;
  display: inline-block;
  font-weight: 900;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  /* Pop-out shadow */
  transform: rotate(-2deg);
  /* Slight tilt for attention */
  margin-top: 5px;
  margin-bottom: 5px;
  line-height: 1.2;
}

/* Important Box */
.important-box {
  background: #f0f8ff;
  padding: 15px;
  border-left: 5px solid #0044cc;
  margin-top: 10px;
}

/* Summary */
.summary-links {
  text-decoration: underline;
  font-weight: bold;
  color: #0044cc;
}

/* Footer Container */
.footer-container {
  box-shadow: none;
  background: transparent;
}