@charset "UTF-8";
/* Global Styles */
:root {
  --primary-color: #CF1F31;
  --accent-color: #CCC;
  --text-color: #333;
  --bg-color: #f9f9f9;
  --sidebar-bg: #fff;
  --font-base: Hiragino Kaku Gothic ProN, Hiragino Sans, Meiryo, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #333;
  background-color: #f9f9f9;
  line-height: 1.8;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  margin-top: 0;
}

a {
  text-decoration: none;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.8;
}

img {
  max-width: 100%;
}

/* Utilities */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
}
.btn-primary {
  background-color: #CF1F31;
  color: white;
  border: none;
}
.btn-outline {
  background-color: transparent;
  color: #CF1F31;
  border: 1px solid #CF1F31;
}
.btn-lg {
  font-size: 1.2rem;
  padding: 16px 32px;
}
.btn-block {
  display: block;
  width: 100%;
}

.animate-pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(138, 21, 56, 0.7);
  }
  70% {
    transform: scale(1.02);
    box-shadow: 0 0 0 10px rgba(138, 21, 56, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(138, 21, 56, 0);
  }
}
/* Header */
.site-header {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.site-header .header-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}
.site-header .logo {
  margin: 0;
  z-index: 1002;
  position: relative;
  line-height: 0;
}
.site-header .logo img {
  height: 60px;
  width: auto;
  display: block;
}

/* Hamburger Button */
.hamburger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 1002;
  padding: 0;
}
.hamburger-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #CF1F31;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}
.hamburger-btn span:nth-child(1) {
  top: 0;
}
.hamburger-btn span:nth-child(2) {
  top: 11px;
}
.hamburger-btn span:nth-child(3) {
  bottom: 0;
}
.hamburger-btn.active span:nth-child(1) {
  top: 11px;
  transform: rotate(45deg);
}
.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}
.hamburger-btn.active span:nth-child(3) {
  bottom: 11px;
  transform: rotate(-45deg);
}
@media (max-width: 767px) {
  .hamburger-btn {
    display: block;
  }
}

/* Navigation */
.GlobalNav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}
.GlobalNav a {
  color: #555;
  font-size: 0.9rem;
  font-weight: 500;
}
.GlobalNav a.active {
  color: #CF1F31;
  border-bottom: 2px solid #CF1F31;
}
@media (max-width: 767px) {
  .GlobalNav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    z-index: 1001;
    transition: right 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .GlobalNav.active {
    right: 0;
  }
  .GlobalNav ul {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .GlobalNav a {
    font-size: 1.2rem;
    font-weight: bold;
  }
}

/* Hero */
.hero {
  height: 500px;
  background: linear-gradient(135deg, #CF1F31 0%, #a01826 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.hero-overlay {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-content {
  max-width: 800px;
  padding: 20px;
}
.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.4;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 24px;
  margin-top: 16px;
}
@media (max-width: 767px) {
  .hero-title {
    font-size: 1.8rem;
  }
}
.hero-subtitle {
  display: block;
  margin-top: 10px;
  font-size: 1.5rem;
  font-weight: normal;
}

.project-tag {
  background-color: #CCC;
  color: #000;
  padding: 4px 12px;
  font-weight: bold;
  font-size: 0.9rem;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 16px;
}

/* Layout */
.container {
  width: 1120px;
  max-width: 100%;
  margin: 40px auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .container {
    grid-template-columns: 1fr;
  }
}

.main-content {
  background: #fff;
  padding: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}
@media (min-width: 768px) {
  .main-content {
    width: calc(100% - 340px);
  }
}
@media (max-width: 767px) {
  .main-content {
    padding: 20px;
  }
}
.main-content h3 {
  border-bottom: 2px solid #CF1F31;
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-size: 1.4rem;
  font-weight: bold;
  margin-top: 40px;
}

.project-outline {
  background: #EEE;
  padding: 24px;
  border-radius: 4px;
  margin-top: 60px;
}
.project-outline h5 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}

/* Sidebar */
@media (min-width: 768px) {
  .sidebar {
    width: 300px;
  }
}
@media (max-width: 767px) {
  .sidebar {
    order: 2;
  }
}
.sidebar-inner {
  height: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .sidebar-inner {
    position: static;
  }
}
.sidebar-title {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 15px;
  padding-left: 10px;
  border-left: 4px solid #CF1F31;
}

.card {
  background: #fff;
  border: 1px solid #eee;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.support-status .status-header {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 5px;
}
.support-status .amount {
  font-size: 2rem;
  font-weight: bold;
  color: #CF1F31;
  margin-bottom: 15px;
}
.support-status .amount .currency {
  font-size: 1rem;
  color: #333;
}
.support-status .progress-bar-container {
  background: #eee;
  height: 10px;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 15px;
}
.support-status .progress-bar-container .progress-bar {
  background: #CF1F31;
  height: 100%;
}
.support-status .status-row {
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.plan-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 20px;
  margin-bottom: 20px;
  transition: transform 0.2s;
}
.plan-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.plan-card.recommended {
  border: 2px solid #CCC;
  position: relative;
}
.plan-card .badge-rec {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #CCC;
  color: #000;
  font-size: 0.8rem;
  padding: 2px 10px;
  border-radius: 10px;
  font-weight: bold;
}
.plan-card .plan-price {
  font-size: 1.4rem;
  font-weight: bold;
  color: #CF1F31;
  margin-bottom: 10px;
}
.plan-card .plan-name {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.plan-card .plan-desc {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 15px;
}

/* Footer */
.site-footer {
  background: #333;
  color: #fff;
  padding: 40px 0;
  text-align: center;
  font-size: 0.9rem;
}

/* Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 {
  transition-delay: 0.1s;
}

.delay-200 {
  transition-delay: 0.2s;
}

.delay-300 {
  transition-delay: 0.3s;
}

/* Heading Accents */
.section-title {
  border-left: 6px solid #CF1F31;
  padding-left: 16px;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 24px;
  line-height: 1.4;
}

/* Tables */
#supporter-table-container table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
#supporter-table-container th {
  background-color: #CF1F31;
  color: white;
  padding: 5px;
  text-align: left;
}
#supporter-table-container td {
  padding: 5px;
  text-align: left;
}
#supporter-table-container tr:nth-child(odd) {
  background-color: #f5f5f5;
}
#supporter-table-container tr:nth-child(even) {
  background-color: #fff;
}

/* Story Details */
.story-detail {
  background: #fff;
  border: 1px solid #eee;
  border-left: 5px solid #CF1F31;
  padding: 32px;
  margin: 40px 0;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 10px 30px rgba(207, 31, 49, 0.05);
}
.story-detail h4 {
  color: #CF1F31;
  font-size: 1.25rem;
  margin-bottom: 12px;
  line-height: 1.5;
  font-weight: bold;
}
.story-detail .story-profile {
  font-size: 0.9rem;
  color: #777;
  border-bottom: 1px solid #eee;
  padding-bottom: 12px;
  margin-bottom: 20px;
  line-height: 1.6;
}
.story-detail p {
  margin-bottom: 16px;
  font-size: 14px;
}
.story-detail p:last-child {
  margin-bottom: 0;
}

/* Lists */
.dot-list,
.check-list {
  list-style: none;
  padding-left: 0;
  margin: 24px 0;
}
.dot-list li,
.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  line-height: 1.6;
}
.dot-list li::before,
.check-list li::before {
  position: absolute;
  left: 0;
  color: #CF1F31;
}

.dot-list li::before {
  content: "●";
  font-size: 0.8rem;
  top: 0.1rem;
}

.check-list li::before {
  content: "✓";
  font-weight: bold;
}

/* Video */
.video-placeholder {
  margin: 40px 0;
}

.video-mock {
  background: #111;
  color: #fff;
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  text-align: center;
  padding: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}
.video-mock .small {
  font-size: 0.85rem;
  opacity: 0.6;
  margin-top: 12px;
}

.figure {
  padding: 0;
  margin: 20px 0;
}

.video {
  padding-top: 56.25%;
  width: 100%;
  position: relative;
}
.video video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

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