@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:wght@500;600;700&family=Inter:wght@300;400;500;600;700&family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

body {
    font-family: "Inter", "Noto Sans JP", sans-serif;
    background-color: #f8fafc;
    color: #334155;
}

.index-main {
    flex-grow: 1;
}

.index-page-header {
    background: #ffffff;
    padding-top: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.index-page-header-inner {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .index-page-header-inner {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .index-page-header-inner {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.index-page-header-row {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.index-page-header-main {
    margin-bottom: 1rem;
}

.index-page-category {
    display: inline-flex;
    align-items: center;
    margin: 0 0 0.5rem;
    padding: 0.2rem 0.65rem;
    border: 1px solid #dbeafe;
    border-radius: 9999px;
    background: #eff6ff;
    font-size: 0.75rem;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #1d4ed8;
}

.index-page-header-label {
    margin-top: 0.75rem;
    margin-bottom: 0.5rem;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #64748b;
}

.index-page-header-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.index-page-header-link {
    display: inline-flex;
    align-items: center;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    border-radius: 9999px;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    line-height: 1.4;
    font-weight: 600;
    color: #475569;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.index-page-header-link:hover {
    border-color: #93c5fd;
    color: #1d4ed8;
}

.index-page-header-link-icon {
    margin-right: 0.375rem;
}

/* TEMP: English IR entry link START */
.index-english-entry {
    margin-top: 0.75rem;
}

.index-header-side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.index-english-entry--side {
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.index-english-entry-link {
    display: inline-flex;
    align-items: center;
    margin: 0;
    padding: 0.2rem 0.65rem;
    border: 1px solid #dbeafe;
    border-radius: 9999px;
    background: #eff6ff;
    font-size: 0.75rem;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #1d4ed8;
    text-decoration: none;
    transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.index-english-entry-link:hover {
    border-color: #93c5fd;
    background: #dbeafe;
    color: #1e40af;
}
/* TEMP: English IR entry link END */

.index-message-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    background: #ffffff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
    transition: border-color 0.2s ease;
    cursor: pointer;
}

.index-message-card:hover {
    border-color: #93c5fd;
}

.index-message-card-head {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.index-message-card-photo {
    width: 3rem;
    height: 3rem;
    margin-right: 1rem;
    overflow: hidden;
    border-radius: 9999px;
    background: #e5e7eb;
}

.index-message-card-title {
    font-weight: 700;
    color: #1f2937;
    transition: color 0.2s ease;
}

.index-message-card-link:hover .index-message-card-title {
    color: #1d4ed8;
}

.index-message-card-role {
    font-size: 0.75rem;
    color: #6b7280;
}

.index-message-card-copy {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #4b5563;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (min-width: 768px) {
    .index-page-header-row {
        flex-direction: row;
        align-items: flex-end;
    }

    .index-page-header-main {
        margin-bottom: 0;
    }

    .index-header-side {
        align-items: flex-end;
    }
}

.index-support-links {
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.index-support-links-inner {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.index-support-links-layout {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .index-support-links-inner {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .index-support-links-inner {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.index-support-links-divider {
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #d1d5db;
}

.index-support-links-group {
    padding-top: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.index-support-link {
    display: flex;
    align-items: center;
    color: #475569;
    transition: color 0.2s ease;
}

.index-support-link:hover {
    color: #1d4ed8;
}

.index-support-link-icon {
    width: 2.5rem;
    height: 2.5rem;
    margin-right: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background: #f3f4f6;
    border: 1px solid #d1d5db;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}

.index-support-link:hover .index-support-link-icon {
    border-color: #6b7280;
}

.index-support-link-fa {
    font-size: 1.125rem;
    color: #6b7280;
    transition: color 0.2s ease;
}

.index-support-link:hover .index-support-link-fa {
    color: #374151;
}

.index-support-link-label {
    font-size: 0.875rem;
    font-weight: 700;
}

.index-highlights-section {
    padding-top: 2rem;
    padding-bottom: 4rem;
}

.index-highlights-inner {
    width: 100%;
}

.index-highlights-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.index-highlights-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.index-highlights-cta--desktop {
    display: none;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    border: 1px solid #bfdbfe;
    border-radius: 0.5rem;
    background: #eff6ff;
    color: #1d4ed8;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
    font-size: 0.875rem;
}

.index-highlights-cta--desktop:hover {
    background: #dbeafe;
    border-color: #93c5fd;
    color: #1e3a8a;
}

.index-highlights-mobile-cta-wrap {
    margin-bottom: 1.5rem;
}

.index-highlights-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: stretch;
}

.index-highlights-charts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
}

.index-chart-card {
    display: flex;
    flex: 1 1 0%;
    flex-direction: column;
    padding: 1.25rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    background: #ffffff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.index-chart-card:hover {
    border-color: #dbe3ee;
    box-shadow: 0 2px 4px rgba(15, 23, 42, 0.08);
}

.index-chart-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.index-chart-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #374151;
}

.index-chart-card-unit {
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    background: #f9fafb;
    font-size: 0.75rem;
    font-weight: 400;
    color: #9ca3af;
}

.index-chart-card-note {
    margin-top: 0.5rem;
    text-align: right;
    font-size: 0.75rem;
    font-weight: 600;
    color: #475569;
}

.index-chart-canvas-wrap {
    position: relative;
    flex: 1 1 0%;
    min-height: 190px;
}

.index-highlights-links {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.index-quicklinks-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    height: 100%;
    margin-bottom: 1.5rem;
}

.index-quicklink-card {
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    border-radius: 0.75rem;
    text-align: center;
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.index-quicklink-card--accent {
    border: 1px solid #c7d2fe;
    background: #eef2ff;
}

.index-quicklink-card--accent:hover {
    background: #ffffff;
    border-color: #a5b4fc;
    box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.08);
}

.index-quicklink-card--default {
    border: 1px solid #e5e7eb;
    background: #f8fafc;
}

.index-quicklink-card--default:hover {
    background: #ffffff;
    border-color: #93c5fd;
    box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.08);
}

.index-quicklink-icon {
    margin-bottom: 0.75rem;
    font-size: 2.25rem;
    transition: transform 0.2s ease;
}

.index-quicklink-card:hover .index-quicklink-icon {
    transform: scale(1.1);
}

.index-quicklink-icon--accent {
    color: #4f46e5;
}

.index-quicklink-icon--default {
    color: #2563eb;
}

.index-quicklink-title {
    font-size: 1rem;
    font-weight: 700;
}

.index-quicklink-title--accent {
    color: #312e81;
}

.index-quicklink-title--default {
    color: #374151;
}

.index-quicklink-subtitle {
    margin-top: 0.25rem;
    font-size: 0.875rem;
}

.index-quicklink-subtitle--accent {
    color: #6b7280;
}

.index-quicklink-subtitle--default {
    color: #9ca3af;
}

.index-library-cta-wrap {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: auto;
}

.index-library-cta {
    flex: 1 1 0%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border: 2px solid #dbeafe;
    border-radius: 0.75rem;
    background: #ffffff;
    text-align: center;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
    transition: border-color 0.2s ease;
}

.index-library-cta:hover {
    border-color: #93c5fd;
}

.index-library-cta-title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 700;
    color: #1d4ed8;
    transition: color 0.2s ease;
}

.index-library-cta:hover .index-library-cta-title {
    color: #1e3a8a;
}

.index-library-cta-title-icon {
    margin-left: 0.5rem;
    transition: transform 0.2s ease;
}

.index-library-cta:hover .index-library-cta-title-icon {
    transform: translateX(0.25rem);
}

.index-library-cta-copy {
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: #94a3b8;
}

.index-highlights-cta--mobile {
    width: 100%;
    padding: 0.75rem 1.5rem;
    border: 1px solid #bfdbfe;
    border-radius: 0.5rem;
    background: #eff6ff;
    color: #1d4ed8;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}

.index-highlights-cta--mobile:hover {
    background: #dbeafe;
    border-color: #93c5fd;
    color: #1e3a8a;
}

.index-highlights-cta-icon {
    margin-left: 0.5rem;
    font-size: 0.75rem;
}

.index-highlights-cta-icon--desktop {
    transition: transform 0.2s ease;
}

.index-highlights-cta--desktop:hover .index-highlights-cta-icon--desktop {
    transform: translateX(0.25rem);
}

.index-eir-docs-section {
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.index-eir-docs-inner {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.index-eir-docs-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .index-eir-docs-inner {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .index-eir-docs-inner {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.index-eir-news-section {
    background: #f8fafc;
    padding-top: 3rem;
    padding-bottom: 3rem;
    scroll-margin-top: calc(var(--ir-topnav-height-mobile) + 1.5rem);
}

.index-eir-news-inner {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.index-news-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .index-eir-news-inner {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .index-eir-news-inner {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .index-eir-news-section {
        scroll-margin-top: calc(var(--ir-topnav-height-desktop) + 1.75rem);
    }
}

.index-news-lead {
    margin-bottom: 1.75rem;
    padding-left: 0.25rem;
    color: #475569;
}

.index-news-more-wrap {
    margin-top: 1rem;
}

.index-news-more {
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: #2563eb;
    transition: color 0.2s ease;
}

.index-news-more:hover {
    color: #1d4ed8;
}

.index-news-more-icon {
    margin-left: 0.25rem;
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.index-news-empty {
    display: none;
    padding: 2.5rem;
    text-align: center;
    color: #6b7280;
}

.index-news-more:hover .index-news-more-icon {
    transform: translateX(0.25rem);
}

@media (max-width: 767px) {
    .ir-support-links .ir-support-link {
        width: 12.5rem;
        justify-content: flex-start;
    }
}

@media (min-width: 768px) {
    .index-support-links-layout {
        flex-direction: row;
        align-items: stretch;
    }

    .index-support-links-divider {
        padding-bottom: 0;
        padding-right: 2.5rem;
        border-bottom: 0;
        border-right: 1px solid #d1d5db;
    }

    .index-support-links-group {
        padding-top: 0;
        padding-left: 2.5rem;
        flex-direction: row;
        gap: 2.5rem;
    }

    .index-news-header {
        flex-direction: row;
        align-items: flex-end;
    }

    .index-news-more-wrap {
        margin-top: 0;
    }

    .index-highlights-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }

    .index-highlights-layout {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .index-quicklinks-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .index-library-cta-wrap {
        flex-direction: row;
    }

    .index-highlights-charts {
        grid-column: span 2 / span 2;
    }

    .index-highlights-links {
        grid-column: span 3 / span 3;
    }

    .index-highlights-cta--desktop {
        display: inline-flex;
        margin-top: 1rem;
    }

    .index-highlights-mobile-cta-wrap {
        display: none;
    }
}

/* Stock Colors */
.text-green-custom { color: #16a34a; }
.text-red-custom { color: #dc2626; }

.index-hero-section {
  background: #f1f5f9;
  padding: 2.5rem 0;
}

.index-hero-inner {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.index-hero-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .index-hero-inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 768px) {
  .index-hero-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .index-hero-card-main {
    grid-column: span 2 / span 2;
  }
}

@media (min-width: 1024px) {
  .index-hero-inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.index-hero-card-main {
  border-radius: 0.75rem;
  padding: 2rem;
  color: #fff;
  background-image: url('../../images/globalbusiness.jpg');
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s ease;
  display: block;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.index-hero-card-main:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}



.index-message-card-photo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 8%;
  transform: scale(1.35);
  transform-origin: center top;
}


.index-hero-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
}

.index-hero-card-content {
  position: relative;
  z-index: 10;
}


.index-hero-badge {
  background: #eab308;
  color: #1e3a8a;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  display: inline-block;
}


.index-hero-title {
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .index-hero-title {
    font-size: 1.875rem;
  }
}


.index-hero-copy {
  color: #dbeafe;
  margin-bottom: 1.5rem;
  max-width: 32rem;
}


.index-hero-cta {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  border-bottom: 1px solid #facc15;
  padding-bottom: 0.25rem;
  transition: color 0.2s ease;
}

.index-hero-cta:hover {
  color: #fde047;
}

.index-hero-cta-icon {
  margin-left: 0.5rem;
}


.index-message-card-link {
  transition: box-shadow 0.2s ease;
}

.index-message-card-link:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}


.index-news-panel {
  background: #fff;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.index-news-list > * + * {
  border-top: 1px solid #f3f4f6;
}


