/* ====================================
   Approach Page Styles
   Theme Color: GIFT Primary (#05A5B9)
   ==================================== */

/* Fix for body opacity (overrides common.css) */
body.page-gift_approach {
  opacity: 1 !important;
}
html.wf-active body.page-gift_approach,
html.wf-inactive body.page-gift_approach,
html.loading-delay body.page-gift_approach {
  opacity: 1 !important;
}

/* ====================================
   Variables
   ==================================== */
:root {
  --approach-primary: #05A5B9;
  --approach-primary-dark: #048a9a;
  --approach-dark: #1E1E1E;
  --approach-text: #333;
  --approach-text-light: #666;
  --approach-white: #fff;
  --approach-bg-light: #F0F9FA;
  --approach-bg-gray: #F5F5F5;
  --approach-border: #E0E0E0;
  --approach-accent: #2a7f62;
}

/* ====================================
   Base
   ==================================== */
.page-gift_approach {
  font-family: "dnp-shuei-gothic-gin-std", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  color: var(--approach-text);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

/* ====================================
   Container
   ==================================== */
.approach-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 30px;
}

@media (max-width: 760px) {
  .approach-container {
    padding: 0 20px;
  }
}

/* ====================================
   Section Title
   ==================================== */
.approach-section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
  text-align: center;
}

.approach-section-title .en {
  font-family: din-2014, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--approach-primary);
}

.approach-section-title .jp {
  font-size: 28px;
  font-weight: 500;
  color: var(--approach-dark);
  letter-spacing: 0.05em;
}

@media (max-width: 760px) {
  .approach-section-title .jp {
    font-size: 22px;
  }
}

/* ====================================
   パンくずリスト
   ==================================== */
.approach-breadcrumb {
  max-width: 1000px;
  margin: 0 auto;
  padding: 12px 20px;
  font-size: 13px;
}

.approach-breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.approach-breadcrumb__item + .approach-breadcrumb__item::before {
  content: ">";
  margin-right: 8px;
  color: #999;
}

.approach-breadcrumb__item a {
  color: var(--approach-accent);
  text-decoration: underline;
}

.approach-breadcrumb__item[aria-current="page"] {
  color: #666;
}

/* ====================================
   FV + 要約（統合ヒーロー）
   ==================================== */
.approach-hero {
  padding: 48px 20px 56px;
  background: #f9f9f6;
}

.approach-hero__title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  color: var(--approach-dark);
  line-height: 1.4;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.approach-hero__sub {
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  color: #777;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
}

.approach-hero__body {
  max-width: 800px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.9;
  color: var(--approach-dark);
}

.approach-hero__lead {
  margin-bottom: 14px;
}

.approach-hero__lead a {
  color: var(--approach-accent);
  text-decoration: underline;
}

.approach-hero__desc {
  font-size: 14px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 14px;
}

.approach-hero__supervisor {
  font-size: 12px;
  color: #888;
  padding-top: 12px;
  border-top: 1px solid #eee;
}

@media (max-width: 760px) {
  .approach-hero {
    padding: 32px 20px 40px;
  }
  .approach-hero__title {
    font-size: 22px;
  }
  .approach-hero__sub {
    font-size: 13px;
    margin-bottom: 24px;
  }
  .approach-hero__body {
    font-size: 14px;
  }
  .approach-hero__desc {
    font-size: 13px;
  }
}

/* ====================================
   STRUCTURE（GIFTの全体構造）
   ==================================== */
.approach-structure {
  padding: 80px 0;
  background: var(--approach-white);
}

.approach-structure__headline {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  color: var(--approach-dark);
  margin-bottom: 48px;
  line-height: 1.6;
}

/* フロー図 */
.approach-structure__flow {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 48px;
}

/* フェーズ共通 */
.approach-structure__phase {
  padding: 32px;
  border-radius: 0;
}

.approach-structure__phase--eval {
  background: var(--approach-bg-light);
  border: 2px solid var(--approach-primary);
}

.approach-structure__phase--intervention {
  background: #FFF8E1;
  border: 2px solid #FFA726;
}

.approach-structure__phase-label {
  font-family: din-2014, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.approach-structure__phase--eval .approach-structure__phase-label {
  color: var(--approach-primary);
}

.approach-structure__phase--intervention .approach-structure__phase-label {
  color: #E65100;
}

.approach-structure__phase-desc {
  font-size: 16px;
  font-weight: 500;
  color: var(--approach-text-light);
  margin-bottom: 20px;
}

/* G・I・F・Tカード */
.approach-structure__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.approach-structure__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 8px;
  background: var(--approach-white);
  border-radius: 0;
  border: 1px solid var(--approach-border);
  text-decoration: none;
  color: var(--approach-text);
  transition: all 0.3s;
}

.approach-structure__card:hover {
  border-color: var(--approach-primary);
  box-shadow: 0 4px 16px rgba(5, 165, 185, 0.15);
  transform: translateY(-2px);
}

.approach-structure__card-letter {
  font-family: din-2014, sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--approach-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.approach-structure__card-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--approach-dark);
  margin-bottom: 2px;
}

.approach-structure__card-jp {
  font-size: 11px;
  color: #888;
}

/* 矢印 */
.approach-structure__arrow {
  display: flex;
  justify-content: center;
  padding: 16px 0;
}

.approach-structure__arrow span {
  display: block;
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-top: 20px solid var(--approach-primary);
}

/* 介入ボタン */
.approach-structure__interventions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.approach-structure__intervention {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 8px;
  background: var(--approach-white);
  border-radius: 0;
  border: 1px solid #FFB74D;
  font-size: 15px;
  font-weight: 600;
  color: var(--approach-dark);
  text-decoration: none;
  transition: all 0.3s;
}

.approach-structure__intervention:hover {
  background: #FFF3E0;
  border-color: #FF9800;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 152, 0, 0.15);
}

@media (max-width: 760px) {
  .approach-structure {
    padding: 50px 0;
  }
  .approach-structure__headline {
    font-size: 18px;
    margin-bottom: 32px;
  }
  .approach-structure__phase {
    padding: 20px;
  }
  .approach-structure__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .approach-structure__card {
    padding: 12px 8px;
  }
  .approach-structure__card-letter {
    font-size: 26px;
  }
  .approach-structure__interventions {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .approach-structure__intervention {
    font-size: 14px;
  }
  .approach-structure__phase-desc {
    font-size: 14px;
  }
}

/* ====================================
   APPROACH（3つのアプローチ一覧）
   ==================================== */
.approach-list {
  padding: 80px 0;
  background: var(--approach-bg-gray);
}

.approach-list__headline {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  color: var(--approach-dark);
  margin-bottom: 48px;
  line-height: 1.6;
}

.approach-list__items {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* 各アプローチカード */
.approach-list__item {
  display: flex;
  gap: 32px;
  background: var(--approach-white);
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.approach-list__item--reverse {
  flex-direction: row-reverse;
}

.approach-list__item-image {
  flex: 0 0 45%;
  max-width: 45%;
}

.approach-list__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.approach-list__item-content {
  flex: 1;
  padding: 32px 32px 32px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.approach-list__item--reverse .approach-list__item-content {
  padding: 32px 0 32px 32px;
}

.approach-list__item-num {
  font-family: din-2014, sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--approach-primary);
  line-height: 1;
  opacity: 0.3;
  margin-bottom: 4px;
}

.approach-list__item-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--approach-dark);
  margin-bottom: 12px;
}

.approach-list__item-catch {
  font-size: 16px;
  font-weight: 500;
  color: var(--approach-primary-dark);
  line-height: 1.7;
  margin-bottom: 16px;
}

.approach-list__item-desc {
  font-size: 15px;
  line-height: 1.9;
  color: var(--approach-text-light);
  margin-bottom: 20px;
}

.approach-list__item-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--approach-primary);
  text-decoration: none;
  border: 2px solid var(--approach-primary);
  padding: 12px 24px;
  min-width: 220px;
  transition: all 0.3s;
}

.approach-list__item-link:hover {
  background: var(--approach-primary);
  color: #fff;
}

.approach-list__item-link:hover span {
  border-color: #fff;
}

.approach-list__item-link span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--approach-primary);
  border-right: 2px solid var(--approach-primary);
  transform: rotate(45deg);
  transition: border-color 0.3s;
}

@media (max-width: 760px) {
  .approach-list {
    padding: 50px 0;
  }
  .approach-list__headline {
    font-size: 18px;
    margin-bottom: 32px;
  }
  .approach-list__items {
    gap: 24px;
  }
  .approach-list__item,
  .approach-list__item--reverse {
    flex-direction: column;
  }
  .approach-list__item-image {
    flex: none;
    max-width: 100%;
  }
  .approach-list__image {
    aspect-ratio: 3 / 2;
  }
  .approach-list__item-content,
  .approach-list__item--reverse .approach-list__item-content {
    padding: 24px 20px;
  }
  .approach-list__item-num {
    font-size: 36px;
  }
  .approach-list__item-title {
    font-size: 20px;
  }
  .approach-list__item-catch {
    font-size: 15px;
  }
  .approach-list__item-desc {
    font-size: 14px;
  }
}

/* ====================================
   SELECTION（どう使い分けるのか？）
   ==================================== */
.approach-selection {
  padding: 80px 0;
  background: var(--approach-white);
}

.approach-selection__headline {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  color: var(--approach-dark);
  margin-bottom: 40px;
  line-height: 1.6;
}

.approach-selection__content {
  margin-bottom: 40px;
}

.approach-selection__image {
  margin-bottom: 24px;
}

.approach-selection__img {
  width: 100%;
  height: auto;
  border-radius: 0;
}

.approach-selection__text {
  text-align: center;
}

.approach-selection__text p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--approach-text);
}

/* ステップ */
.approach-selection__steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.approach-selection__step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--approach-bg-gray);
  padding: 24px 28px;
  border-radius: 0;
}

.approach-selection__step-num {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  background: var(--approach-primary);
  color: var(--approach-white);
  font-family: din-2014, sans-serif;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.approach-selection__step-content {
  flex: 1;
}

.approach-selection__step-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--approach-dark);
  margin-bottom: 4px;
}

.approach-selection__step-content p:last-child {
  font-size: 15px;
  line-height: 1.8;
  color: var(--approach-text-light);
}

/* 補足ノート */
.approach-selection__note {
  background: var(--approach-bg-light);
  border-left: 4px solid var(--approach-primary);
  padding: 24px 28px;
  border-radius: 0;
}

.approach-selection__note p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--approach-dark);
}

@media (max-width: 760px) {
  .approach-selection {
    padding: 50px 0;
  }
  .approach-selection__headline {
    font-size: 18px;
    margin-bottom: 28px;
  }
  .approach-selection__text p {
    font-size: 14px;
    text-align: left;
  }
  .approach-selection__step {
    padding: 20px;
    gap: 16px;
  }
  .approach-selection__step-num {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
  .approach-selection__step-title {
    font-size: 16px;
  }
  .approach-selection__step-content p:last-child {
    font-size: 14px;
  }
  .approach-selection__note {
    padding: 20px;
  }
  .approach-selection__note p {
    font-size: 14px;
  }
}

/* ====================================
   TRUST（監修者セクション）
   ==================================== */
.approach-trust {
  padding: 48px 20px;
  background: #f5f5f0;
}

.approach-trust__profile {
  max-width: 800px;
  margin: 24px auto 0;
  padding: 24px;
  background: var(--approach-white);
  border-radius: 0;
}

.approach-trust__name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--approach-dark);
}

.approach-trust__credential {
  display: inline-block;
  font-size: 13px;
  font-weight: 400;
  color: var(--approach-accent);
  margin-left: 8px;
}

.approach-trust__role {
  font-size: 14px;
  color: var(--approach-text-light);
  margin-bottom: 12px;
}

.approach-trust__desc {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}

/* ====================================
   Gift Page Navigation（ページ間導線）
   ==================================== */
.gift-page-nav {
  padding: 80px 40px;
  background: #F5F5F5;
}

.gift-page-nav__container {
  max-width: 1000px;
  margin: 0 auto;
}

.gift-page-nav__title {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  color: #1E1E1E;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}

.gift-page-nav__method-label {
  font-size: 14px;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.gift-page-nav__methods {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.gift-page-nav__method-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 12px;
  background: #fff;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  border: 2px solid #E0E0E0;
  transition: all 0.3s;
}

.gift-page-nav__method-card:hover {
  border-color: #05A5B9;
  box-shadow: 0 4px 16px rgba(5, 165, 185, 0.15);
  transform: translateY(-2px);
}

.gift-page-nav__method-card.is-current {
  border-color: #05A5B9;
  background: #F0F9FA;
  pointer-events: none;
}

.gift-page-nav__method-letter {
  font-size: 28px;
  font-weight: 700;
  color: #05A5B9;
  line-height: 1;
  margin-bottom: 6px;
}

.gift-page-nav__method-en {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
}

.gift-page-nav__method-jp {
  font-size: 11px;
  color: #888;
}

.gift-page-nav__method-current {
  font-size: 10px;
  color: #05A5B9;
  font-weight: 600;
  margin-top: 6px;
  letter-spacing: 0.05em;
}

.gift-page-nav__divider {
  border: none;
  border-top: 1px solid #ddd;
  margin: 32px 0;
}

.gift-page-nav__approach-label {
  font-size: 14px;
  font-weight: 600;
  color: #888;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.gift-page-nav__approaches {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.gift-page-nav__approach-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  background: #fff;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid #E0E0E0;
  transition: all 0.3s;
}

.gift-page-nav__approach-card:hover {
  border-color: #05A5B9;
  box-shadow: 0 4px 16px rgba(5, 165, 185, 0.15);
  transform: translateY(-2px);
}

.gift-page-nav__approach-card.is-current {
  border-color: #05A5B9;
  background: #F0F9FA;
  pointer-events: none;
}

.gift-page-nav__approach-arrow {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #05A5B9;
  border-right: 2px solid #05A5B9;
  transform: rotate(45deg);
}

.gift-page-nav__approach-card.is-current .gift-page-nav__approach-arrow {
  display: none;
}

.gift-page-nav__approach-current {
  display: none;
  font-size: 10px;
  color: #05A5B9;
  font-weight: 600;
}

.gift-page-nav__approach-card.is-current .gift-page-nav__approach-current {
  display: inline;
}

.gift-page-nav__top-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  background: #05A5B9;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.3s;
}

.gift-page-nav__top-link:hover {
  background: #048a9a;
}

.gift-page-nav__top-arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(-45deg);
}

@media (max-width: 760px) {
  .gift-page-nav {
    padding: 60px 20px;
  }
  .gift-page-nav__title {
    font-size: 17px;
    margin-bottom: 28px;
  }
  .gift-page-nav__methods {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .gift-page-nav__method-letter {
    font-size: 24px;
  }
  .gift-page-nav__approaches {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .gift-page-nav__top-link {
    font-size: 14px;
    padding: 14px;
  }
}

/* ====================================
   FAQ
   ==================================== */
.approach-faq {
  padding: 80px 0;
  background: var(--approach-bg-gray);
}

.approach-faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.approach-faq__item {
  background: var(--approach-white);
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--approach-border);
}

.approach-faq__question {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 16px;
  color: var(--approach-dark);
  transition: background 0.2s;
}

.approach-faq__question::-webkit-details-marker {
  display: none;
}

.approach-faq__question:hover {
  background: var(--approach-bg-light);
}

.approach-faq__q {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  background: var(--approach-primary);
  color: var(--approach-white);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.approach-faq__answer {
  display: flex;
  gap: 14px;
  padding: 0 24px 20px;
}

.approach-faq__a {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  background: var(--approach-bg-gray);
  color: var(--approach-primary);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.approach-faq__answer p {
  flex: 1;
  font-size: 15px;
  line-height: 1.8;
  color: var(--approach-text);
}

@media (max-width: 760px) {
  .approach-faq {
    padding: 50px 0;
  }
  .approach-faq__question {
    padding: 16px 20px;
    font-size: 15px;
    gap: 12px;
  }
  .approach-faq__q,
  .approach-faq__a {
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
    font-size: 13px;
  }
  .approach-faq__answer {
    padding: 0 20px 16px;
    gap: 12px;
  }
  .approach-faq__answer p {
    font-size: 14px;
  }
}

/* ====================================
   CTA
   ==================================== */
.approach-cta {
  padding: 60px 20px;
  background: linear-gradient(135deg, #05A5B9 0%, #048a9a 100%);
  text-align: center;
}

.approach-cta__container {
  max-width: 700px;
  margin: 0 auto;
}

.approach-cta__headline {
  font-size: 24px;
  font-weight: 700;
  color: var(--approach-white);
  line-height: 1.6;
  margin-bottom: 32px;
}

.approach-cta__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.approach-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  min-width: 220px;
}

.approach-cta__btn--primary {
  background: var(--approach-white);
  color: var(--approach-primary);
}

.approach-cta__btn--primary:hover {
  background: #e0f7fa;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.approach-cta__btn--secondary {
  background: transparent;
  color: var(--approach-white);
  border: 2px solid var(--approach-white);
}

.approach-cta__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

@media (max-width: 760px) {
  .approach-cta {
    padding: 48px 20px;
  }
  .approach-cta__headline {
    font-size: 20px;
    margin-bottom: 24px;
  }
  .approach-cta__buttons {
    flex-direction: column;
    gap: 12px;
  }
  .approach-cta__btn {
    min-width: auto;
    width: 100%;
    font-size: 15px;
    padding: 14px 24px;
  }
}

/* ====================================
   免責事項
   ==================================== */
.approach-disclaimer {
  padding: 20px;
  background: #f5f5f5;
  border-top: 1px solid var(--approach-border);
}

.approach-disclaimer__text {
  max-width: 860px;
  margin: 0 auto;
  font-size: 12px;
  line-height: 1.8;
  color: #888;
}

.approach-disclaimer__supervisor {
  max-width: 860px;
  margin: 6px auto 0;
  font-size: 12px;
  color: #999;
}
