@charset "UTF-8";

/* ==========================================================================
  Reset & Base Settings
  =========================================================================== */
:root {
  /* Colors - Premium Blue Palette */
  --primary-blue: #0353b0;
  --dark-blue: #0a2540;
  --light-blue: #f0f5ff;
  --accent-gold: #fcdb0f;
  --accent-red: #af0005;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-gray: #f5f5f5;
  --border-color: #dddddd;

  /* Font Sizes */
  --font-size-base: 16px;
  
  /* Type variants */
  --type-green: #43a047;
  --type-purple: #673ab7;
  --type-orange: #ff9800;
  --type-blue: #2196f3;
}

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

html {
  font-size: var(--font-size-base);
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text-dark);
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
  background-color: var(--bg-gray);
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}

ul, ol {
  list-style: none;
}

/* ==========================================================================
  Typography
  =========================================================================== */
.txt-sm { font-size: 0.875rem; }
.txt-md { font-size: 1rem; }
.txt-lg { font-size: 1.125rem; }
.txt-xl { font-size: 1.5rem; }
.txt-bold { font-weight: 700; }
.txt-center { text-align: center; }
.txt-blue { color: var(--primary-blue); }

/* ==========================================================================
  Layout Components
  =========================================================================== */
.wrapper {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

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

.section {
  padding: 4rem 0;
}

.section-ttl {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 2rem;
  font-weight: bold;
}

.section-ttl span {
  display: block;
}

.section-ttl--sub {
  font-size: 1rem;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

/* ==========================================================================
  Common Components
  =========================================================================== */
.btn-main {
  display: inline-block;
  background-color: var(--accent-red);
  color: var(--text-light);
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 4px 0 #8b0000;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.btn-main:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.btn-main:active {
  transform: translateY(1px);
  box-shadow: 0 2px 0 #8b0000;
}

.btn-main--blue {
  background-color: var(--primary-blue);
  box-shadow: 0 4px 0 #023d82;
}

/* Symbol Icons */
.symbol {
  font-size: 1.25rem;
  font-weight: bold;
}
.symbol-double { color: #f44336; } /* ◎ */
.symbol-circle { color: #ff9800; } /* ○ */
.symbol-triangle { color: #8bc34a; } /* △ */
.symbol-cross { color: #757575; } /* × */

.ad-label {
  display: inline-block;
  background: #999;
  color: #fff;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 2px;
  line-height: 1;
}

/* ==========================================================================
  Responsive Utilities
  =========================================================================== */
@media (max-width: 768px) {
  .section {
    padding: 2.5rem 0;
  }
}
