/* =============================================
   一般社団法人NBI日本ネトラバスティ普及育成協会
   グローバルスタイルシート
   ============================================= */

/* =============================================
   カラー変数定義
   ============================================= */
:root {
  /* メインカラー */
  --primary-green: #1F5A44;
  --primary-green-dark: #1F5A44;
  --primary-green-light: #1F5A44;
  
  /* アクセントカラー */
  --accent-gold: #D6A84F;
  --accent-gold-dark: #D6A84F;
  --accent-gold-light: #D6A84F;
  
  /* ナチュラルトーン */
  --natural-beige: #FAFBF9;
  --natural-cream: #FAFBF9;
  --natural-sand: #E6EFEA;
  
  /* ライトグリーン */
  --light-green: #E6EFEA;
  --light-green-dark: #A8C1B2;
  
  /* グレースケール */
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  --black: #000000;
  
  /* フォント */
  --font-primary: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', sans-serif;
  --font-accent: 'Noto Serif JP', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', serif;
  
  /* スペーシング */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;
  
  /* ボーダー半径 */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;
  
  /* トランジション */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* シャドウ */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  
  /* コンテナ幅 */
  --container-xs: 640px;
  --container-sm: 768px;
  --container-md: 1024px;
  --container-lg: 1280px;
  --container-xl: 1440px;
}

/* =============================================
   リセット & ベーススタイル
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gray-800);
  background-color: var(--white);
  overflow-x: hidden;
}

/* =============================================
   タイポグラフィ
   ============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-accent);
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
}

h4 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-green);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--primary-green-light);
}

strong {
  font-weight: 600;
}

em {
  font-style: italic;
}

/* =============================================
   レイアウト - コンテナ
   ============================================= */
.container {
  width: 100%;
  max-width: var(--container-lg);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.container-narrow {
  max-width: var(--container-md);
}

.container-wide {
  max-width: var(--container-xl);
}

/* =============================================
   ヘッダー
   ============================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #FAFBF9;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: var(--container-xl);
  margin: 0 auto;
}

.header__logo {
  display: block;
}

.header__logo-image {
  height: 60px;
  width: auto;
}

/* =============================================
   ナビゲーション
   ============================================= */
.nav__list {
  display: flex;
  list-style: none;
  gap: var(--spacing-sm);
  align-items: center;
}

.nav__item {
  position: relative;
}

.nav__link {
  display: inline-block;
  padding: 0.5rem 1rem;
  color: var(--primary-green);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.nav__link:hover,
.nav__link.active {
  color: var(--primary-green);
  background-color: var(--natural-sand);
}

/* モバイルメニュートグル */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 50px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle__bar {
  width: 30px;
  height: 3px;
  background-color: var(--primary-green);
  border-radius: 3px;
  transition: all var(--transition-base);
  display: block;
}

.nav-toggle.active .nav-toggle__bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.nav-toggle.active .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .nav-toggle__bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* =============================================
   ヒーローセクション
   ============================================= */
.hero {
  background: var(--natural-sand);
  color: var(--primary-green);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
  background-size: cover;
  opacity: 0.3;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--container-md);
  margin: 0 auto;
}

.hero__title {
  font-family: var(--font-accent) !important;
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1.5rem;
  font-weight: 600 !important;
  color: var(--primary-green) !important;
  text-shadow: none;
  line-height: 1.2;
}

.hero__subtitle {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  margin-bottom: 2.5rem;
  opacity: 0.8;
  line-height: 1.8;
  font-weight: 400;
  color: var(--primary-green);
}

.hero__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   フッター
   ============================================= */
.footer {
  background: #1F5A44;
  color: var(--white);
  padding: var(--spacing-2xl) 0 var(--spacing-lg);
  margin-top: var(--spacing-3xl);
}

.footer__inner {
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.footer__content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

@media (max-width: 1024px) {
  .footer__content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer__content {
    grid-template-columns: 1fr;
  }
}

.footer__section h3 {
  color: #D6A84F;
  font-size: 1.125rem;
  margin-bottom: var(--spacing-md);
  font-weight: 500;
}

.footer__logo {
  margin-bottom: var(--spacing-md);
}

.footer__logo-image {
  height: 50px;
  width: auto;
  /* filter: brightness(0) invert(1); */
}

.footer__text {
  font-size: 0.875rem;
  line-height: 1.6;
  opacity: 0.9;
}

.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__list-item {
  margin-bottom: var(--spacing-xs);
}

.footer__link {
  color: var(--white);
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-base);
  opacity: 0.9;
}

.footer__link:hover {
  color: #D6A84F;
  opacity: 1;
  transform: translateX(0.25rem);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: var(--spacing-lg);
  text-align: center;
}

.footer__copyright {
  font-size: 0.875rem;
  opacity: 0.8;
}

/* =============================================
   ボタン
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  font-family: var(--font-primary);
}

.btn--primary {
  background-color: var(--accent-gold);
  color: var(--white);
  border-color: var(--accent-gold);
}

.btn--primary:hover {
  background-color: var(--accent-gold-dark);
  border-color: var(--accent-gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--secondary {
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--primary-green);
  border-color: var(--primary-green);
  border-width: 2px;
}

.btn--secondary:hover {
  background-color: var(--primary-green);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(31, 90, 68, 0.3);
}

.btn--outline {
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--primary-green);
  border-color: var(--primary-green);
  border-width: 2px;
}

.btn--outline:hover {
  background-color: var(--primary-green);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(31, 90, 68, 0.3);
}

.btn--large {
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
}

.btn--small {
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
}

/* =============================================
   セクション
   ============================================= */
.section {
  padding: var(--spacing-3xl) 0;
}

.section--light {
  background-color: var(--natural-beige);
}

.section--dark {
  background-color: var(--primary-green);
  color: var(--white);
}

.section--primary {
  background: linear-gradient(135deg, var(--primary-green) 0%, #164232 100%);
  color: var(--white);
}

.section__header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.section__subtitle {
  font-size: 0.875rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.section__title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--primary-green);
  margin-bottom: var(--spacing-sm);
  font-weight: 500;
}

.section__description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
}

/* =============================================
   グリッド
   ============================================= */
.grid {
  display: grid;
  gap: var(--spacing-lg);
}

.grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

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

/* =============================================
   カード
   ============================================= */
.card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--accent-gold);
  color: var(--white);
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

.card__content {
  padding: var(--spacing-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card__category {
  font-size: 0.75rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.card__title {
  color: var(--primary-green);
  margin-bottom: var(--spacing-sm);
  font-size: 1.25rem;
  font-weight: 500;
}

.card__text {
  color: var(--gray-600);
  margin-bottom: var(--spacing-md);
  flex: 1;
  font-weight: 400;
  line-height: 1.7;
}

.card__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--gray-500);
  padding-top: var(--spacing-sm);
  border-top: 1px solid var(--gray-200);
}

.card__date {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.card__footer {
  margin-top: auto;
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--gray-200);
}

/* =============================================
   特徴セクション
   ============================================= */
.features {
  background-color: var(--natural-beige);
}

.feature {
  text-align: center;
  padding: var(--spacing-md);
}

.feature__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 2rem;
}

.feature__title {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
  color: var(--primary-green);
  font-weight: 500;
}

.feature__text {
  color: var(--gray-600);
  line-height: 1.8;
  font-weight: 400;
}

/* =============================================
   CTAセクション
   ============================================= */
.cta {
  background: linear-gradient(135deg, var(--primary-green) 0%, #164232 100%);
  color: var(--white);
  text-align: center;
  padding: var(--spacing-3xl) var(--spacing-md);
}

.cta__title {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--spacing-md);
  font-weight: 500;
}

.cta__text {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: var(--spacing-xl);
  opacity: 0.95;
  font-weight: 400;
}

.cta__buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   フォーム
   ============================================= */
.form-group {
  margin-bottom: var(--spacing-md);
}

.form-label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: 500;
  color: var(--gray-700);
  font-size: 0.95rem;
}

.form-label--required::after {
  content: ' *';
  color: #dc2626;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: var(--font-primary);
  transition: all var(--transition-base);
  background-color: var(--white);
  font-weight: 400;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(31, 90, 68, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
}

/* =============================================
   アコーディオン
   ============================================= */
.accordion {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.accordion__item {
  border-bottom: 1px solid var(--gray-200);
}

.accordion__item:last-child {
  border-bottom: none;
}

.accordion__header {
  width: 100%;
  padding: var(--spacing-md);
  background-color: var(--white);
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--primary-green);
  transition: background-color var(--transition-base);
}

.accordion__header:hover {
  background-color: var(--natural-beige);
}

.accordion__icon {
  transition: transform var(--transition-base);
  font-size: 1.25rem;
}

.accordion__header.active .accordion__icon {
  transform: rotate(180deg);
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion__content.active {
  max-height: 2000px;
  transition: max-height 0.5s ease;
}

.accordion__body {
  padding: var(--spacing-md);
  color: var(--gray-700);
  line-height: 1.8;
  font-weight: 400;
}

/* =============================================
   テーブル
   ============================================= */
.table-wrapper {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--white);
  font-size: 1rem;
}

.table th,
.table td {
  padding: 1.25rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
}

.table th {
  background-color: var(--natural-sand);
  color: var(--primary-green);
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  vertical-align: top;
}

.table td {
  color: var(--gray-700);
  line-height: 1.8;
  font-weight: 400;
}

.table tbody tr:last-child th,
.table tbody tr:last-child td {
  border-bottom: none;
}

.table tbody tr:hover {
  background-color: var(--gray-50);
}

/* レスポンシブテーブル */
@media (max-width: 768px) {
  .table th,
  .table td {
    padding: 1rem;
    font-size: 0.9rem;
  }
  
  .table th {
    width: 35% !important;
  }
}

/* =============================================
   パンくずリスト
   ============================================= */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: var(--spacing-md) 0;
  font-size: 0.875rem;
}

.breadcrumb__item {
  color: var(--gray-600);
}

.breadcrumb__link {
  color: var(--primary-green);
  text-decoration: none;
}

.breadcrumb__link:hover {
  text-decoration: underline;
}

.breadcrumb__separator {
  color: var(--gray-400);
}

/* =============================================
   アラート
   ============================================= */
.alert {
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-md);
}

.alert--info {
  background-color: #DBEAFE;
  border-left: 4px solid #2563EB;
  color: #1E40AF;
}

.alert--success {
  background-color: #D1FAE5;
  border-left: 4px solid #10B981;
  color: #065F46;
}

.alert--warning {
  background-color: #FEF3C7;
  border-left: 4px solid #F59E0B;
  color: #92400E;
}

.alert--error {
  background-color: #FEE2E2;
  border-left: 4px solid #EF4444;
  color: #991B1B;
}

/* =============================================
   ユーティリティクラス
   ============================================= */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-primary {
  color: var(--primary-green);
}

.text-accent {
  color: var(--accent-gold);
}

.text-muted {
  color: var(--gray-600);
}

.bg-primary {
  background-color: var(--primary-green);
}

.bg-accent {
  background-color: var(--accent-gold);
}

.bg-light {
  background-color: var(--natural-beige);
}

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xl); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }

.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-flex {
  display: flex;
}

.justify-center {
  justify-content: center;
}

.align-center {
  align-items: center;
}

.gap-1 { gap: var(--spacing-xs); }
.gap-2 { gap: var(--spacing-sm); }
.gap-3 { gap: var(--spacing-md); }
.gap-4 { gap: var(--spacing-lg); }

.hide-mobile {
  display: inline;
}

/* =============================================
   レスポンシブデザイン
   ============================================= */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: white;
    padding: 2rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    overflow-y: auto;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .nav.active {
    transform: translateX(0);
  }

  .nav__list {
    flex-direction: column;
    gap: 0;
  }

  .nav__item {
    width: 100%;
    border-bottom: 1px solid var(--gray-200);
  }

  .nav__link {
    display: block;
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
  }

  .header__inner {
    padding: 1rem;
  }

  .hero {
    padding: 4rem 1.5rem;
  }

  .hero__buttons {
    flex-direction: column;
  }

  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }

  .section {
    padding: var(--spacing-xl) 0;
  }
  
  .hide-mobile {
    display: none;
  }
}

/* =============================================
   プリントスタイル
   ============================================= */
@media print {
  .header,
  .footer,
  .nav,
  .btn,
  .nav-toggle {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  .section {
    page-break-inside: avoid;
  }
}

/* =============================================
   アニメーション
   ============================================= */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-in;
}

.slide-up {
  animation: slideUp 0.8s ease-out;
}