:root {
  --color-red: #c62828;
  --color-red-dark: #9f1f1f;
  --color-red-soft: #fff1f1;
  --color-text: #222222;
  --color-subtext: #555555;
  --color-border: #e5e5e5;
  --color-bg: #ffffff;
  --color-bg-alt: #f8f8f8;
  --color-white: #ffffff;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --radius: 16px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 72px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--color-red);
}

.logo img {
  height: 40px;
  width: auto;
  display: block;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.photo-header-section{
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.photo-header-section img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.photo-section {
  width: 100%;
  margin: 40px 0;
}

.photo-section img {
  margin-left: auto;
  margin-right: auto;
  height: 420px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
@media (max-width: 600px) {
  .photo-section img {
    height: 240px;
  }
  
  .photo-header-section{
    height: 240px;
  }
}
.social-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.nav a {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-subtext);
}

.nav a:hover {
  color: var(--color-red);
}

.nav-cta {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--color-red);
  color: var(--color-white) !important;
}

.hero {
  background:
    linear-gradient(135deg, rgba(198, 40, 40, 0.08), rgba(255, 255, 255, 0.95)),
    linear-gradient(180deg, #fff 0%, #fff7f7 100%);
  padding: 72px 0 56px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  align-items: center;
}

.hero-kicker {
  display: inline-block;
  margin: 0 0 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--color-red-soft);
  color: var(--color-red);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.hero-description {
  margin: 0 0 24px;
  color: var(--color-subtext);
  font-size: 1.05rem;
  max-width: 680px;
}

.hero-buttons,
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points li {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-card {
  width: 100%;
}

.hero-card-inner {
  background: var(--color-white);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(198, 40, 40, 0.08);
}

.hero-card-label {
  margin: 0 0 8px;
  color: var(--color-red);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.hero-card h2 {
  margin: 0 0 12px;
  font-size: 1.5rem;
  line-height: 1.4;
}

.hero-card p {
  margin: 0 0 18px;
  color: var(--color-subtext);
}

.section {
  padding: 72px 0;
}

.section-alt {
  background: var(--color-bg-alt);
}

.section-heading {
  margin-bottom: 28px;
}

.section-label {
  margin: 0 0 8px;
  color: var(--color-red);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.section-label.light {
  color: rgba(255, 255, 255, 0.8);
}

.section-heading h2,
.cta-box h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.3;
}

.cards.two-column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.list {
  margin: 0;
  padding-left: 1.2em;
}

.list li + li {
  margin-top: 8px;
}

.ordered {
  padding-left: 1.4em;
}

.policy-box {
  background: var(--color-white);
  border-left: 6px solid var(--color-red);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.policy-box p {
  margin: 0;
}

.policy-box p + p {
  margin-top: 14px;
}

.note {
  margin-top: 0;
  color: var(--color-subtext);
}

.schedule-table-wrap {
  overflow-x: auto;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
}

.schedule-table th,
.schedule-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
}

.schedule-table th {
  background: #fafafa;
  font-size: 0.95rem;
}

.small-text {
  margin-bottom: 0;
  margin-top: 12px;
  color: #666;
  font-size: 0.92rem;
}

.text-link {
  color: var(--color-red);
  font-weight: 700;
}

.text-link:hover {
  text-decoration: underline;
}

.cta-section {
  background: linear-gradient(135deg, var(--color-red), var(--color-red-dark));
  color: var(--color-white);
}

.cta-box {
  text-align: center;
  padding: 16px 0;
}

.cta-box p {
  max-width: 760px;
  margin: 16px auto 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.2s ease;
  border: 2px solid transparent;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--color-red);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-red-dark);
}

.btn-secondary {
  background: var(--color-white);
  color: var(--color-red);
  border-color: rgba(198, 40, 40, 0.2);
}

.btn-secondary:hover {
  border-color: var(--color-red);
}

.btn-light {
  background: var(--color-white);
  color: var(--color-red);
}

.btn-light:hover {
  background: #fff6f6;
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.9);
  color: var(--color-white);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-block {
  width: 100%;
}

.site-footer {
  background: #111;
  color: rgba(255, 255, 255, 0.86);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-title {
  margin: 0 0 4px;
  font-weight: 800;
  color: var(--color-white);
}

.footer-text {
  margin: 0;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .hero-inner,
  .cards.two-column {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }

  .hero {
    padding-top: 48px;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 56px 0;
  }

  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
  }

  .btn,
  .btn-block {
    width: 100%;
  }

  .hero-card-inner,
  .card,
  .policy-box {
    padding: 20px;
  }

  .header-inner {
    min-height: 64px;
  }

  .logo {
    font-size: 1.1rem;
  }
}