@charset "UTF-8";
/* ===== MHEC Quick Links (EN) : ADD START ===== */
.mhec-links{
  max-width: 1100px;
  margin: 48px auto;
  padding: 0 16px;
}
.mhec-links__title{
  font-size: 22px;
  letter-spacing: .02em;
  margin: 0 0 16px;
  text-align: center;
}
.mhec-links__grid{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.mhec-card{
  grid-column: span 12;
  display: flex;
  align-items: stretch;
  gap: 14px;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 14px;
  padding: 14px;
  text-decoration: none;
  color: inherit;
  background: #fff;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}
.mhec-card:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
  border-color: rgba(0,0,0,.18);
}

.mhec-card__media{
  width: 92px;
  min-width: 92px;
  height: 92px;
  border-radius: 12px;
  background: rgba(0,0,0,.04);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.mhec-card__icon{
  width: 44px;
  height: 44px;
  display: block;
  opacity: .7;
}

.mhec-card__body{
  flex: 1;
  min-width: 0;
  padding-top: 2px;
}
.mhec-card__kicker{
  font-size: 12px;
  opacity: .72;
  margin-bottom: 4px;
}
.mhec-card__title{
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 6px;
}
.mhec-card__desc{
  font-size: 13px;
  opacity: .85;
  line-height: 1.4;
}
.mhec-card__cta{
  align-self: center;
  font-size: 13px;
  opacity: .75;
  white-space: nowrap;
}

@media (min-width: 720px){
  .mhec-card{ grid-column: span 6; }
}
@media (min-width: 1024px){
  .mhec-card{ grid-column: span 4; }
}
/* ===== MHEC Quick Links (EN) : ADD END ===== */

/* ===== EN page fix: hide oversized decorative heart ===== */
/* 英語版トップでは装飾用ハートを非表示にする */
html[lang="en"] .heart,
html[lang="en"] .background-heart,
html[lang="en"] .decorative-heart {
  display: none !important;
}

/* ===== Accent color (EN): Keep monochrome, highlight Donate only ===== */
:root{
  --mhec-accent: #dc2626;   /* 日本語版と同系統の赤（必要なら後で微調整） */
  --mhec-accent2: #ef4444;
}

/* 1) Donate card (Quick links) を強調 */
.mhec-card[href*="syncable.biz/en/associate/mhec"]{
  border: 2px solid rgba(220,38,38,.35);
  box-shadow: 0 10px 30px rgba(220,38,38,.12);
}

.mhec-card[href*="syncable.biz/en/associate/mhec"] .mhec-card__cta{
  background: linear-gradient(135deg, var(--mhec-accent), var(--mhec-accent2));
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  padding: .5em 1.1em;
}

/* 2) Hero の Donate ボタンを強調（過去に入れたクラス名の両方に対応） */
.hero-cta--donate,
.mhec-en-hero__cta--donate{
  background: linear-gradient(135deg, var(--mhec-accent), var(--mhec-accent2));
  color: #fff !important;
  border: none !important;
}

/* 3) モノクロ側（Secondaryボタン）は落ち着かせる */
.hero-cta--secondary,
.mhec-en-hero__cta--secondary{
  background: transparent;
  color: #111827;
  border: 1px solid #d1d5db;
}

/* 4) キーボード操作の見やすさ（アクセシビリティ） */
.hero-cta--donate:focus-visible,
.mhec-en-hero__cta--donate:focus-visible,
.mhec-card[href*="syncable.biz/en/associate/mhec"]:focus-visible{
  outline: 3px solid rgba(220,38,38,.35);
  outline-offset: 3px;
}

/* ===== Organization Profile (EN) ===== */
.mhec-profile{ padding: 42px 0; background: #fff; }
.mhec-profile__inner{ max-width: 1100px; margin: 0 auto; padding: 0 16px; }
.mhec-profile__title{ font-size: 22px; margin: 0 0 8px; text-align: center; }
.mhec-profile__lead{ margin: 0 auto 18px; max-width: 820px; opacity: .85; line-height: 1.7; text-align: center; }
.mhec-profile__grid{ display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; }
.mhec-profile__card{ grid-column: span 12; border: 1px solid rgba(0,0,0,.10); border-radius: 14px; padding: 16px; background: #fafafa; }
.mhec-profile__cardTitle{ margin: 0 0 12px; font-size: 16px; font-weight: 800; }
.mhec-profile__table{ width: 100%; border-collapse: collapse; font-size: 13px; }
.mhec-profile__table th{ width: 34%; text-align: left; padding: 10px; border-top: 1px solid rgba(0,0,0,.08); opacity: .85; vertical-align: top; }
.mhec-profile__table td{ padding: 10px; border-top: 1px solid rgba(0,0,0,.08); line-height: 1.6; }
.mhec-profile__officialLink{ margin-top: 12px; }
.mhec-profile__officialLink a{ text-decoration: none; font-weight: 700; }
.mhec-profile__impactList{ margin: 0; padding-left: 1.2em; line-height: 1.8; opacity: .9; }
.mhec-profile__goalNote{ margin-top: 10px; padding: 10px 12px; border-radius: 12px; background: rgba(0,0,0,.04); }
.mhec-profile__ctaRow{ display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; justify-content: center; }
.mhec-profile__ctaPrimary,.mhec-profile__ctaSecondary{
  display: inline-block; padding: 10px 14px; border-radius: 12px; text-decoration: none; font-weight: 800;
  border: 1px solid rgba(0,0,0,.12); background: #fff;
}
.mhec-profile__ctaPrimary{
  border-color: rgba(220,38,38,.35);
  box-shadow: 0 10px 24px rgba(220,38,38,.12);
}
@media (min-width: 900px){
  .mhec-profile__card{ grid-column: span 6; }
}

/* ===== Establishment date hierarchy (EN) - balanced ===== */
.est-date-main {
  font-size: 14px;      /* 15 → 14 */
  font-weight: 700;     /* 800 → 700 */
  margin-bottom: 2px;
}

.est-date-sub {
  font-size: 12px;
  opacity: 0.72;
  margin-bottom: 10px;
}

.est-cert {
  font-size: 12px;
  font-weight: 800;     /* 強めて準主役に */
  margin-bottom: 8px;
  padding: 8px 10px;    /* バッジっぽく */
  border-radius: 10px;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.08);
}

.est-note {
  font-size: 11px;
  line-height: 1.5;
  opacity: 0.50;        /* 0.6 → 0.5 */
}

/* ===== Official information table refinement (EN) ===== */

/* テーブル全体 */
.mhec-profile__table {
  border-collapse: separate;
  border-spacing: 0;
}

/* 各行 */
.mhec-profile__table tr {
  vertical-align: top;
}

/* 左列（項目名） */
.mhec-profile__table th {
  width: 32%;
  padding: 14px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(0,0,0,0.65);
  border-top: 1px solid rgba(0,0,0,0.08);
}

/* 右列（値） */
.mhec-profile__table td {
  padding: 14px 12px;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(0,0,0,0.92);
  border-top: 1px solid rgba(0,0,0,0.08);
}

/* 最初の行の上線を消す */
.mhec-profile__table tr:first-child th,
.mhec-profile__table tr:first-child td {
  border-top: none;
}


/* Phone link tone down */
.mhec-profile__table a[href^="tel:"] {
  color: rgba(0,0,0,0.85);
  text-decoration: none;
  font-weight: 600;
}

.mhec-profile__table a[href^="tel:"]:hover {
  text-decoration: underline;
}


/* Official info card emphasis */
.mhec-profile__card {
  background: #fafafa;
}

.mhec-profile__cardTitle {
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(0,0,0,0.06);
}

/* ===== Tokyo-certified badge (EN) ===== */
.mhec-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.02em;
  background:rgba(0,0,0,.04);
  border:1px solid rgba(0,0,0,.10);
  color:rgba(0,0,0,.75);
  margin:6px 0 14px;
}
.mhec-badge:before{
  content:"";
  width:8px;height:8px;
  border-radius:50%;
  background:rgba(0,0,0,.35);
  display:inline-block;
}
