/* ============================================
   PostPrime Corporate Theme - Main Stylesheet
   ============================================ */

/* CSS Custom Properties (Design Tokens) */
:root {
    --green-primary: #0abc71;
    --green-secondary: #20e592;
    --green-tertiary: #3affac;
    --white: #fff;
    --white-primary: #ebebeb;
    --white-bg-fixed: #f1f7f4;
    --black: #272c2a;
    --black-dark: #333;
    --black-primary: #303341;
    --black-secondary: #363d3a;
    --black-tertiary: #4b5350;
    --gray-default: #eee;
    --gray-primary: #6e7773;
    --gray-secondary: #858e8a;
    --line-tertiary-fixed: #e2e2e2;
    --tertiary: #777;
    --background: #f1f7f4;
    --foreground: #272c2a;
    --theme-border-color: #ddd;
    --accent-red-secondary: #ff2929;
    --color-base-150: #ddd;
    --base: 20px;
    --font-mono: "Roboto Mono", monospace;
    --theme-text: #3c3c3c;
}

/* Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    background: var(--white-bg-fixed);
    -webkit-font-smoothing: antialiased;
    font-size: 18px;
    line-height: 32px;
}

body {
    margin: 0;
    color: var(--theme-text);
    font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

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

a {
    color: currentColor;
}

a:focus {
    opacity: .8;
    outline: none;
}

a:active {
    opacity: .7;
    outline: none;
}

svg {
    vertical-align: middle;
}

ol, ul {
    padding-left: var(--base);
    margin: 0 0 var(--base);
}

::selection {
    background: #d1ffe6;
    color: #2f2f2f;
}

p {
    margin: 0;
    margin-block: 0;
    margin-inline: 0;
}

.wp-block-paragraph {
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

h1 {
    margin: 40px 0;
    font-size: 64px;
    line-height: 70px;
}

h2 {
    margin: 28px 0;
    font-size: 24px;
    line-height: 36px;
}

h3 {
    margin: 24px 0;
    font-size: 32px;
    line-height: 40px;
}

h4 {
    margin: 20px 0;
    font-size: 26px;
    line-height: 32px;
}

h5 {
    margin: 20px 0;
    font-size: 22px;
    line-height: 30px;
}

h6 {
    margin: 20px 0;
    font-size: inherit;
    line-height: inherit;
}

@media (max-width: 1024px) {
    h1 { margin: 24px 0; font-size: 42px; line-height: 42px; }
    h2 { margin: 22px 0; font-size: 24px; line-height: 36px; }
    h3 { margin: 20px 0; font-size: 26px; line-height: 32px; }
    h4 { font-size: 22px; line-height: 30px; }
    h5 { font-size: 18px; line-height: 24px; }
}

/* ============================================
   Header
   ============================================ */

.header {
    padding: calc(var(--base) / 2) 30px;
    position: sticky;
    top: 29px;
    left: 0;
    z-index: 10;
    background: var(--white-bg-fixed);
}

.header__wrap {
    max-width: 1920px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    gap: calc(var(--base) / 2) var(--base);
}

.header__logo-link {
    display: flex;
    align-items: center;
}

.header__logos {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header__logo {
    width: 150px;
    height: auto;
}

.header__jpx {
    height: 46px;
    width: auto;
}

.header__nav-wrapper {
    display: flex;
    align-items: center;
}

/* Mobile menu toggle */
.header__menu-toggle {
    width: 25px;
    height: 25px;
    display: none;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
    color: var(--black-dark);
    transition: all 0.4s;
}

.header__menu-icon,
.header__close-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__close-icon {
    display: none;
}

.header__menu-toggle.is-active .header__menu-icon {
    display: none;
}

.header__menu-toggle.is-active .header__close-icon {
    display: flex;
}

/* Navigation */
.nav__list {
    display: flex;
    gap: calc(var(--base) / 4) var(--base);
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav__item {
    font-size: 16px;
    line-height: 175%;
    border-bottom: 2px solid transparent;
    padding: 0 8px 2px;
}

.nav__link {
    text-decoration: none;
}

.nav__item.current-menu-item,
.nav__item.current_page_item,
.nav__item.current-page-ancestor {
    font-weight: 600;
    border-bottom: 2px solid var(--green-primary);
}

.nav__item:hover {
    border-bottom: 2px solid var(--green-primary);
}

/* Language switcher */
.header__lang {
    display: flex;
    align-items: center;
    padding: 0 8px;
    cursor: pointer;
    margin-left: 5px;
    height: 25px;
    text-decoration: none;
}

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

.header__lang-text {
    margin-left: 5px;
    min-width: 17px;
    font-size: 14px;
    line-height: 160%;
    font-weight: 700;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    padding: calc(var(--base) * 2) 30px;
    background-color: #000;
    color: var(--white);
}

.footer__wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1920px;
    margin: 0 auto;
    gap: calc(var(--base) / 2) var(--base);
}

.footer__logo {
    width: 150px;
    height: auto;
}

.footer__nav {
    display: flex;
    gap: calc(var(--base) / 4) var(--base);
    align-items: center;
    flex-wrap: wrap;
}

.footer__link {
    text-decoration: none;
    color: var(--white);
}

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

.footer__isms {
    border-radius: 8px;
}

/* ============================================
   Responsive: Tablet (max-width: 1024px)
   ============================================ */

@media screen and (max-width: 1024px) {
    html {
        font-size: 15px;
        line-height: 24px;
    }

    .header__menu-toggle {
        display: flex;
    }

    .header__nav-wrapper {
        position: relative;
        flex-direction: row-reverse;
    }

    .nav {
        display: none;
        position: absolute;
        top: 40px;
        width: 100vw;
        right: -20px;
        background-color: var(--white-bg-fixed);
        flex-direction: column;
        align-items: flex-end;
        transition: opacity 0.1s linear;
    }

    .nav.is-open {
        display: flex;
        border-top: 1px solid var(--theme-border-color);
    }

    .nav__list {
        flex-direction: column;
        align-items: flex-end;
        gap: 0;
        width: 100%;
    }

    .nav__item {
        padding: 10px 20px;
        display: flex;
        font-weight: 500;
        align-items: center;
        width: 100%;
        justify-content: space-between;
        border-bottom: 1px solid var(--theme-border-color);
    }

    .nav__item.current-menu-item,
    .nav__item.current_page_item {
        font-weight: 600;
    }

    .nav__item .nav__link {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .header__lang {
        padding-top: 5px;
        margin-left: 0;
        margin-right: 8px;
    }
}

/* ============================================
   Responsive: Mobile (max-width: 768px)
   ============================================ */

@media screen and (max-width: 768px) {
    p {
        font-size: 16px;
    }

    .header {
        padding: calc(var(--base) / 2) 20px;
    }

    .header__jpx {
        height: 46px;
    }

    .footer {
        padding: calc(var(--base) * 2) 0;
    }

    .footer__wrap {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .footer__nav {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .footer__nav > * {
        margin: 5px 0;
    }

    .footer__logo {
        margin-bottom: 10px;
    }

    .footer__isms {
        margin-top: 10px;
    }
}

/* ============================================
   Utility
   ============================================ */

.site-main {
    min-height: 60vh;
}

.page-content {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ============================================
   Front Page
   ============================================ */

.front-page {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

/* Hero */
.fp-hero {
    width: 100%;
    background-image: url('../images/home/home-block-1-bg.jpg');
    background-size: cover;
    background-position: top;
    min-height: 900px;
    color: var(--black-dark);
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.fp-hero__slogan {
    padding-left: 50px;
}

/* About */
.fp-about {
    width: 100%;
    min-height: 720px;
    padding: 30px 10px 0;
    background-color: var(--black);
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
}

.fp-about__title {
    font-size: 36px;
    line-height: 180%;
    font-weight: 600;
    text-align: center;
    color: var(--white-primary);
    white-space: pre-line;
    margin: 10px 0;
    width: 1100px;
}

.fp-about__title a {
    color: var(--white-primary);
    text-decoration: underline;
}

.fp-about__title a:hover {
    text-decoration: underline;
    color: var(--green-primary);
}

.fp-about__desc {
    white-space: pre-line;
    color: var(--white-primary);
    max-width: 850px;
    text-align: justify;
    font-size: 18px;
    line-height: 175%;
}

.fp-about__images {
    display: flex;
    justify-content: center;
    max-width: 1000px;
    padding-right: 300px;
    position: relative;
    padding-top: 40px;
}

.fp-about__iphone {
    position: absolute;
    bottom: 15px;
    right: 30px;
    width: 350px;
}

/* Mission & Value */
.fp-mv {
    width: 100%;
    min-height: 720px;
    padding: 70px 100px;
    background-size: cover;
    background-position: top;
    background-image: url('../images/home/mission-block-bg.jpg');
    display: flex;
    align-items: center;
    flex-direction: column;
}

.fp-mv__block-title,
.fp-mv__block-sub {
    display: none;
}

.fp-mv__section {
    display: flex;
    max-width: 1424px;
    margin: 0 auto;
    width: 100%;
    justify-content: space-between;
}

.fp-mv__image {
    height: fit-content;
    border-radius: 16px;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.03), 0 20px 24px rgba(0, 0, 0, 0.08);
}

.fp-mv__image img {
    border-radius: 16px;
}

.fp-mv__desc {
    display: flex;
    flex-direction: column;
    max-width: 656px;
}

.fp-mv__desc-title {
    font-size: 48px;
    line-height: 180%;
    font-weight: 600;
    color: var(--black-dark);
    margin: 10px 0;
}

.fp-mv__desc-sub {
    font-size: 18px;
    line-height: 175%;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--tertiary);
}

.fp-mv__section--mission {
    margin-bottom: 120px;
}

.fp-mv__section--mission .fp-mv__image {
    margin-right: 5%;
}

.fp-mv__desc-content {
    font-size: 30px;
    line-height: 180%;
    font-weight: 600;
    color: var(--black-dark);
}

.fp-mv__section--value .fp-mv__image {
    margin-left: 5%;
}

.fp-mv__value-list {
    display: flex;
    flex-direction: column;
}

.fp-mv__value-item {
    display: flex;
    margin-bottom: 10px;
}

.fp-mv__value-index {
    padding-top: 15px;
    font-size: 16px;
    line-height: 175%;
    font-weight: 600;
    text-decoration: underline;
    margin-right: 15px;
    color: var(--black-dark);
}

.fp-mv__value-content {
    display: flex;
    flex-direction: column;
}

.fp-mv__value-label {
    font-size: 30px;
    line-height: 180%;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--black-dark);
}

.fp-mv__value-text {
    font-size: 18px;
    line-height: 175%;
    font-weight: 500;
    color: var(--black-dark);
}

/* Front Page Responsive */
@media screen and (max-width: 1440px) {
    .fp-hero {
        min-height: 720px;
    }

    .fp-hero__slogan {
        width: 580px;
    }
}

@media screen and (max-width: 768px) {
    .fp-hero {
        width: 100%;
        background-image: url('../images/home/home-block-1-sp-bg.jpg');
        justify-content: flex-start;
        background-position: bottom;
        padding: 18% 0 0;
        min-height: 65vh;
    }

    .fp-hero__slogan {
        width: 85%;
        min-width: 300px;
        padding-left: 0;
    }

    .fp-about {
        padding: 20px 10px 0;
    }

    .fp-about__title {
        font-size: 30px;
        line-height: 180%;
        width: auto;
    }

    .fp-about__desc {
        max-width: 100%;
        font-size: 16px;
        line-height: 175%;
    }

    .fp-about__images {
        max-width: 100%;
        padding-right: 0;
        position: relative;
        padding-top: 30px;
    }

    .fp-about__macbook {
        display: none;
    }

    .fp-about__iphone {
        position: unset;
        width: 90%;
        padding-bottom: 40px;
    }

    .fp-mv {
        width: 100%;
        padding: 50px 15px;
        background-position: 30% 50%;
    }

    .fp-mv__block-title {
        color: var(--black-dark);
        font-size: 30px;
        line-height: 180%;
        font-weight: 600;
        margin: 10px 0 0;
        display: block;
        text-align: center;
    }

    .fp-mv__block-sub {
        font-size: 18px;
        line-height: 175%;
        font-weight: 600;
        color: var(--tertiary);
        display: block;
        text-align: center;
        margin-bottom: 40px;
    }

    .fp-mv__section {
        max-width: 100%;
        flex-direction: column;
        justify-content: flex-start;
    }

    .fp-mv__image {
        margin-bottom: 30px;
    }

    .fp-mv__desc {
        max-width: 100%;
    }

    .fp-mv__desc-title {
        font-size: 30px;
        line-height: 180%;
        text-align: center;
    }

    .fp-mv__desc-sub {
        display: none;
    }

    .fp-mv__section--mission {
        margin-bottom: 180px;
    }

    .fp-mv__section--mission .fp-mv__image {
        margin-right: 0;
    }

    .fp-mv__desc-content {
        font-size: 24px;
        line-height: 175%;
    }

    .fp-mv__section--value {
        flex-direction: column-reverse;
    }

    .fp-mv__section--value .fp-mv__image {
        margin-left: 0;
    }

    .fp-mv__value-index {
        padding-top: 7px;
    }

    .fp-mv__value-label {
        font-size: 24px;
        line-height: 175%;
        margin-bottom: 4px;
    }

    .fp-mv__value-text {
        font-size: 18px;
        line-height: 175%;
        font-weight: 500;
    }
}

/* ============================================
   Company Page (会社概要)
   ============================================ */

.company-page {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

.company-block {
    background-color: var(--gray-default);
    min-height: 500px;
}

.company-block__header {
    background-image: url('../images/content-header.jpg');
    background-size: cover;
    width: 100%;
    padding: var(--base) 0;
}

.company-block__header-inner {
    color: var(--black-dark);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.company-block__title {
    font-size: 48px;
    line-height: 180%;
    font-weight: 700;
    margin: 20px 0;
}

.company-info {
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
    padding: 60px 10px 30px;
}

.company-section {
    width: 100%;
    margin-bottom: 50px;
}

.company-section__title {
    color: var(--black-dark);
    font-size: 48px;
    line-height: 180%;
    font-weight: 600;
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
}

.company-table {
    width: 100%;
    border-collapse: collapse;
}

.company-table tbody tr {
    display: flex;
    border-top: 1px solid var(--line-tertiary-fixed);
    border-bottom: 1px solid var(--line-tertiary-fixed);
}

.company-table tbody tr:not(:last-child) {
    border-bottom: none;
}

.company-table th {
    width: 160px;
    font-size: 16px;
    line-height: 175%;
    font-weight: 500;
    flex-shrink: 0;
    text-align: left;
    display: flex;
    color: var(--black-tertiary);
    align-items: center;
    padding: 20px;
}

.company-table td {
    display: flex;
    font-weight: 400;
    align-items: center;
    word-break: break-all;
    white-space: pre-line;
    padding: 20px;
    color: var(--black-dark);
    font-size: 16px;
    line-height: 175%;
}

@media screen and (max-width: 768px) {
    .company-block__title {
        font-size: 36px;
        line-height: 180%;
        text-align: center;
    }

    .company-section__title {
        font-size: 36px;
    }

    .company-table th {
        width: 130px;
    }
}

/* ============================================
   Management Team Page (経営陣)
   ============================================ */

.management-page {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

.management-block {
    background-color: var(--white-bg-fixed);
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.management-block__header {
    background-image: url('../images/content-header.jpg');
    background-size: cover;
    width: 100%;
    padding: var(--base) 0;
}

.management-block__header-inner {
    color: var(--black-dark);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.management-block__title {
    font-size: 48px;
    line-height: 180%;
    font-weight: 700;
    margin: 20px 0;
}

.management-members {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 10px 30px;
}

.management-member {
    display: flex;
    width: 50%;
    padding: 30px 15px;
}

.management-member__image {
    min-width: 30%;
}

.management-member__avatar {
    border-radius: 20px;
}

.management-member__info {
    display: flex;
    flex-direction: column;
    max-width: 322px;
    padding-left: 20px;
}

.management-member__position {
    font-size: 16px;
    line-height: 175%;
    color: var(--tertiary);
    font-weight: 600;
    margin-bottom: 5px;
}

.management-member__name {
    font-size: 20px;
    line-height: 175%;
    font-weight: 600;
    color: var(--black-dark);
    margin-bottom: 5px;
}

.management-member__desc {
    font-size: 16px;
    line-height: 175%;
    color: var(--black-dark);
}

@media screen and (max-width: 768px) {
    .management-block__title {
        font-size: 36px;
        line-height: 180%;
        text-align: center;
    }

    .management-members {
        max-width: 100%;
    }

    .management-member {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 20px 15px;
    }

    .management-member__image {
        min-width: 200px;
        margin-bottom: 20px;
    }

    .management-member__info {
        max-width: 100%;
        padding-left: 0;
        align-items: center;
    }

    .management-member__position {
        margin-bottom: 10px;
    }

    .management-member__name {
        text-align: center;
        margin-bottom: 10px;
    }

    .management-member__desc {
        text-align: justify;
    }
}

/* ============================================
   News Page (ニュース一覧・詳細)
   ============================================ */

.news-page {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

.news-page__header {
    background-image: url('../images/news/news-content-header.jpg');
    background-size: cover;
    width: 100%;
    padding: var(--base) 0;
}

.news-page__header-inner {
    color: var(--white);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.news-page__title {
    font-size: 48px;
    line-height: 180%;
    font-weight: 700;
    margin: 20px 0;
}

.news-page__content {
    padding: var(--base) 20px;
    min-height: 500px;
    background-image: url('../images/news/news-list-bg.jpg');
    background-size: cover;
    width: 100%;
}

.news-page__content-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* News Item */
.news-item {
    display: flex;
    align-items: baseline;
    flex-wrap: nowrap;
    width: 100%;
    padding: 12px 10px;
    border-bottom: 1px solid var(--line-tertiary-fixed);
    gap: 0 12px;
}

.news-item__date {
    font-size: 15px;
    font-weight: 600;
    color: var(--tertiary);
    flex-shrink: 0;
    white-space: nowrap;
}

.news-item__title {
    color: var(--black-dark);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    flex: 1 1 0;
    min-width: 0;
    word-break: break-word;
}

.news-item__title:hover {
    text-decoration: underline;
}

.news-item__type {
    display: inline;
    border: 1px solid var(--accent-red-secondary);
    color: var(--accent-red-secondary);
    font-size: 12px;
    padding: 1px 8px;
    border-radius: 4px;
    margin-left: 8px;
    white-space: nowrap;
}

/* News Single */
.news-single__meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-top: 20px;
}

.news-single__date {
    font-size: 18px;
    line-height: 175%;
    font-weight: 600;
    color: var(--tertiary);
}

.news-single__pdf-link {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    border: 1px solid var(--accent-red-secondary);
    border-radius: 6px;
    text-decoration: none;
    color: var(--accent-red-secondary);
    font-weight: 600;
    font-size: 16px;
}

.news-single__pdf-link:hover {
    background-color: var(--accent-red-secondary);
    color: var(--white);
    text-decoration: none;
}

.news-single__title {
    font-size: 36px;
    line-height: 180%;
    font-weight: 700;
    color: var(--black-dark);
    margin: 0 0 30px;
}

.news-single__body {
    font-size: 18px;
    line-height: 175%;
    color: var(--black-dark);
    margin-bottom: 40px;
    max-width: 800px;
}

.news-single__body p {
    margin-bottom: 1em;
}

.news-single__pdf {
    margin-bottom: 50px;
}

.news-single__back {
    padding-bottom: 30px;
}

.news-single__back a {
    color: var(--green-primary);
    text-decoration: none;
    font-weight: 600;
}

.news-single__back a:hover {
    text-decoration: underline;
}

/* ============================================
   Single Detail Layout (two-column)
   ============================================ */

.news-single__layout,
.ir-single__layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.news-single__main,
.ir-single__main {
    flex: 1 1 0;
    min-width: 0;
}

.news-single__sidebar,
.ir-single__sidebar {
    width: 300px;
    flex-shrink: 0;
    padding-top: 40px;
}

/* Sidebar Widget */
.sidebar-widget {
    margin-bottom: 40px;
}

.sidebar-widget__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--black-dark);
    margin: 0 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--green-primary);
}

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

.sidebar-widget__item {
    border-bottom: 1px solid var(--line-tertiary-fixed);
}

.sidebar-widget__item:last-child {
    border-bottom: none;
}

.sidebar-widget__link {
    display: block;
    padding: 10px 0;
    text-decoration: none;
    color: var(--black-dark);
}

.sidebar-widget__link:hover {
    color: var(--green-primary);
}

.sidebar-widget__link:hover .sidebar-widget__text {
    text-decoration: underline;
}

.sidebar-widget__date {
    display: block;
    font-size: 12px;
    line-height: 175%;
    color: var(--tertiary);
    margin-bottom: 2px;
}

.sidebar-widget__text {
    display: block;
    font-size: 14px;
    line-height: 165%;
    font-weight: 500;
}

/* Sidebar Responsive */
@media screen and (max-width: 768px) {
    .news-single__layout,
    .ir-single__layout {
        flex-direction: column;
        gap: 0;
        padding: 0 10px;
    }

    .news-single__sidebar,
    .ir-single__sidebar {
        width: 100%;
        padding-top: 30px;
    }
}

/* Pagination */
.nav-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 30px 0;
    font-size: 16px;
}

.nav-links a,
.nav-links span {
    padding: 6px 14px;
    border-radius: 4px;
    text-decoration: none;
    color: var(--black-dark);
}

.nav-links .current {
    background-color: var(--green-primary);
    color: var(--white);
    font-weight: 600;
}

.nav-links a:hover {
    background-color: var(--gray-default);
}

@media screen and (max-width: 768px) {
    .news-page__header {
        background-position: 50%;
    }

    .news-page__title {
        font-size: 36px;
        line-height: 180%;
        text-align: center;
    }

    .news-page__content {
        padding: 0;
    }

    .news-page__content-inner {
        padding: var(--base) 10px;
    }

    .news-item {
        padding: 8px 4px;
    }

    .news-item {
        flex-wrap: wrap;
    }

    .news-item__title {
        flex-basis: 100%;
        padding-top: 4px;
    }

    .news-item__date,
    .news-item__title {
        font-size: 14px;
    }

    .news-item__type {
        font-size: 14px;
    }

    .news-single__title {
        font-size: 28px;
    }
}

/* ============================================
   Contact Page (お問い合わせ)
   ============================================ */

.contact-page {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

.contact-page__block {
    background-color: var(--white);
}

.contact-page__header {
    background-image: url('../images/content-header.jpg');
    background-size: cover;
    width: 100%;
    padding: var(--base) 0;
}

.contact-page__header-inner {
    color: var(--black-dark);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.contact-page__title {
    font-size: 48px;
    line-height: 180%;
    font-weight: 700;
    margin: 20px 0;
}

.contact-page__content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
}

/* Alert messages */
.contact-alerts {
    padding: 4px 25px;
    margin-bottom: 20px;
}

.contact-alerts__item {
    font-size: 18px;
    line-height: 175%;
    padding: 3px 0;
}

.contact-alerts__item--small {
    font-size: 14px;
    line-height: 160%;
}

.contact-alerts a {
    color: var(--green-primary);
    text-decoration: none;
}

.contact-alerts a:hover {
    text-decoration: underline;
}

/* Links grid */
.contact-links {
    display: flex;
    flex-grow: 1;
    flex-wrap: wrap;
    margin: 30px auto;
    max-width: 100%;
    width: 100%;
}

.contact-links__notice {
    padding: 4px 25px;
    width: 100%;
}

.contact-links__item-wrapper {
    display: inline-flex;
    width: 50%;
    padding: 10px 25px;
}

.contact-links__item {
    border: 1px solid var(--line-tertiary-fixed);
    border-radius: 4px;
    padding: 15px;
    width: 100%;
}

.contact-links__item-title {
    width: 100%;
    font-weight: 600;
    font-size: 20px;
    line-height: 175%;
    margin-bottom: 4px;
}

.contact-links__item-desc {
    width: 100%;
    font-size: 16px;
    line-height: 175%;
    color: var(--gray-primary);
}

.contact-link a {
    color: var(--black);
    text-decoration: none;
}

.contact-link a:hover {
    text-decoration: underline;
    color: var(--green-primary);
}

/* Markdown HTML fallback */
.markdown-html p {
    margin: 0;
}

.markdown-html a {
    color: var(--green-primary);
    text-decoration: none;
}

.markdown-html a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    .contact-page__title {
        font-size: 36px;
        line-height: 180%;
        text-align: center;
    }

    .contact-page__content {
        padding: var(--base) 10px;
    }

    .contact-alerts {
        padding: 4px 5px;
    }

    .contact-links {
        margin: 20px auto;
    }

    .contact-links__notice {
        padding: 4px 5px;
    }

    .contact-links__item-wrapper {
        width: 100%;
        padding: 10px 0;
    }

    .contact-link a {
        font-size: 18px;
    }
}

/* ============================================
   IR Page (IR情報)
   ============================================ */

.ir-page {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    background-color: var(--white);
}

/* Main Visual */
.ir-mv {
    background-image: url('../images/ir/mv.jpg');
    background-size: cover;
    width: 100%;
    padding: var(--base) 0;
}

.ir-mv__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.ir-mv__title {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    line-height: 180%;
    margin: 20px 0;
}

/* Navigation Tabs */
.ir-nav {
    width: 100%;
    max-width: 1220px;
    padding: 60px 10px 0;
    margin: 0 auto;
}

.ir-nav__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.ir-nav__item a {
    background: var(--color-base-150);
    border-radius: 30px;
    color: var(--tertiary);
    display: flex;
    align-items: center;
    font-size: 16px;
    padding: 6px 40px 6px 20px;
    position: relative;
    text-decoration: none;
}

.ir-nav__item a::before {
    content: "";
    display: inline-block;
    position: absolute;
    right: 18px;
    top: 50%;
    background: var(--tertiary);
    width: 10px;
    height: 2px;
}

.ir-nav__item a::after {
    content: "";
    display: inline-block;
    position: absolute;
    right: 18px;
    top: calc(50% - 3px);
    border-top: 2px solid var(--tertiary);
    border-right: 2px solid var(--tertiary);
    transform: rotate(45deg);
    width: 6px;
    height: 6px;
}

.ir-nav__item a:hover,
.ir-nav__item--active a {
    color: var(--white);
    background: var(--green-primary);
    font-weight: 700;
}

.ir-nav__item a:hover::before,
.ir-nav__item--active a::before {
    background: var(--white);
}

.ir-nav__item a:hover::after,
.ir-nav__item--active a::after {
    border-color: var(--white);
}

/* IR Sub Navigation (sibling links) */
.ir-sub-nav,
.ir__navWrap {
    max-width: 1220px;
    padding: 0 10px;
    margin: 0 auto;
}

.ir-sub-nav__list,
.ir__navList {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
    border-bottom: none;
}

.ir-sub-nav__item a,
.ir__navList_item a {
    display: block;
    padding: 6px 28px;
    color: var(--tertiary);
    background: var(--color-base-150);
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.ir-sub-nav__item a svg,
.ir__navList_item a svg {
    stroke: var(--green-primary);
    transition: all 0.2s;
}

.ir-sub-nav__item a:hover svg,
.ir__navList_item a:hover svg {
    stroke: var(--white);
}

.ir-sub-nav__item--active a svg,
.ir__navList_item-active a svg {
    stroke: var(--white);
}

.ir-sub-nav__item a:hover,
.ir__navList_item a:hover {
    background: var(--green-primary);
    color: var(--white);
}

.ir-sub-nav__item--active a,
.ir__navList_item-active a {
    background: var(--green-primary);
    color: var(--white);
}

/* EIR-style document item */
.s_eirModule_titleBox {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px 20px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line-tertiary-fixed);
}

.s_eirModule_title_link {
    color: var(--black-dark);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}

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

.s_eirModule_type_icon {
    border: 1px solid var(--accent-red-secondary);
    color: var(--accent-red-secondary);
    font-size: 12px;
    padding: 1px 8px;
    border-radius: 4px;
    white-space: nowrap;
}

.s_eirModule_size_item {
    font-size: 13px;
    color: var(--tertiary);
}

/* Main Content */
.ir-main {
    width: 100%;
    max-width: 1220px;
    padding: 30px 10px 30px;
    margin: 0 auto;
}

/* IR FAQ Accordion */
.ir-faq {
    max-width: 900px;
    margin: 0 auto;
}

.ir-faq__item {
    border-bottom: 1px solid var(--line-tertiary-fixed);
}

.ir-faq__q {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-size: 18px;
    color: var(--black-dark);
    gap: 14px;
}

.ir-faq__q-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-primary);
    color: var(--white);
    font-size: 16px;
    font-weight: 800;
    border-radius: 50%;
}

.ir-faq__q-text {
    flex: 1 1 0;
    min-width: 0;
    font-weight: 600;
}

.ir-faq__arrow {
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--tertiary);
    border-bottom: 2px solid var(--tertiary);
    transform: rotate(45deg);
    transition: transform 0.3s;
}

.ir-faq__item--open .ir-faq__arrow {
    transform: rotate(-135deg);
}

.ir-faq__a {
    display: none;
    padding: 0 0 20px 46px;
    font-size: 16px;
    line-height: 175%;
    color: var(--green-primary);
}

.ir-faq__item--open .ir-faq__a {
    display: block;
}

.ir-faq__a-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    background: var(--green-primary);
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
}

.ir-faq__a-text {
    vertical-align: middle;
}

.ir-faq__a a {
    color: var(--green-primary);
    text-decoration: underline;
}

/* IR Sub Page Content */
.ir-sub-content {
    font-size: 16px;
    line-height: 175%;
    color: var(--black-dark);
    margin: 0 auto;
}

.ir-sub-content p {
    margin-bottom: 1em;
}

.ir-sub-content h2 {
    font-size: 22px !important;
    font-weight: 500 !important;
    margin: 40px 0 20px;
}

.ir-sub-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 30px 0 15px;
}

.ir-sub-content ul,
.ir-sub-content ol {
    margin: 0 0 1em 1.5em;
}

.ir-sub-content li {
    margin-bottom: 0.5em;
}

.ir-sub-content a {
    color: var(--green-primary);
    text-decoration: underline;
}

.ir-calendar-note {
    text-align: center;
    color: var(--black-dark);
    font-size: 16px;
    margin-top: 30px;
}

.ir-calendar-images {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.ir-calendar-images__img {
    width: calc(50% - 10px);
    max-width: 100%;
    height: auto;
}

@media screen and (max-width: 768px) {
    .ir-calendar-images {
        flex-direction: column;
        align-items: center;
    }

    .ir-calendar-images__img {
        width: 100%;
    }
}

.ir-tbl {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.ir-tbl tr {
    border-bottom: 1px solid var(--line-tertiary-fixed);
}

.ir-tbl__th {
    font-weight: 600;
    padding: 14px 20px;
    text-align: left;
    width: 30%;
    vertical-align: top;
}

.ir-tbl__td {
    padding: 14px 20px;
    vertical-align: top;
}

/* IR News Section */
.ir-news-sec__title {
    text-align: center;
}

.ir-news-sec__title-en {
    color: var(--black-dark);
    display: block;
    font-size: 48px;
    font-weight: 700;
}

.ir-news-sec__title-ja {
    color: var(--tertiary);
    display: block;
    font-size: 18px;
    font-weight: 700;
    margin-top: 10px;
}

.ir-news-sec__more {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 50px 0 0;
}

.ir-news-sec__more a {
    background: var(--white);
    border: 2px solid var(--green-primary);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    width: 400px;
    height: 60px;
    color: var(--black-dark);
}

.ir-news-sec__more a:hover {
    background: var(--green-primary);
    color: var(--white);
}

/* IR Year Select Dropdown */
.ir-year-select {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 30px;
}

.s_yearController {
    display: inline-block;
    margin-bottom: 30px;
    position: relative;
}

.s_yearController::before {
    pointer-events: none;
    border-right: 2px solid var(--green-primary);
    border-bottom: 2px solid var(--green-primary);
    content: "";
    display: inline-block;
    position: absolute;
    right: 18px;
    top: calc(50% - 7px);
    transform: rotate(45deg);
    width: 8px;
    height: 8px;
}

.ir-year-select__dropdown {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 1px solid var(--tertiary);
    border-radius: 4px;
    color: var(--secondary);
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    padding: 15px 50px 15px 20px;
    max-width: 100%;
}

/* IR Category Filter Tabs */
.ir-cat-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.ir-cat-tabs__item {
    background: var(--color-base-150);
    border-radius: 30px;
    color: var(--tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    padding: 6px 28px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.ir-cat-tabs__item:hover {
    background: var(--green-primary);
    color: var(--white);
}

.ir-cat-tabs__item--active,
.ir-cat-tabs__item--active:hover {
    background: var(--green-primary);
    color: var(--white);
}

/* IR News Empty */
.ir-news-sec__empty {
    text-align: center;
    font-size: 16px;
    color: var(--tertiary);
    padding: 60px 0;
}

/* IR News Item */
.ir-news-item {
    display: flex;
    align-items: baseline;
    flex-wrap: nowrap;
    width: 100%;
    padding: 12px 10px;
    border-bottom: 1px solid var(--line-tertiary-fixed);
    gap: 0 12px;
}

.ir-news-item__date {
    font-size: 15px;
    font-weight: 600;
    color: var(--tertiary);
    flex-shrink: 0;
    white-space: nowrap;
}

.ir-news-item__cat {
    border: 1px solid var(--green-primary);
    border-radius: 4px;
    color: var(--green-primary);
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
    white-space: nowrap;
    min-width: 80px;
    text-align: center;
}

.ir-news-item__title {
    color: var(--black-dark);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    flex: 1 1 0;
    min-width: 0;
    word-break: break-word;
}

.ir-news-item__title:hover {
    text-decoration: underline;
}

.ir-news-item__title {
    color: var(--black-dark);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    flex: 1 1 0;
    min-width: 0;
    word-break: break-word;
}

.ir-news-item__type {
    display: inline;
    border: 1px solid var(--accent-red-secondary);
    color: var(--accent-red-secondary);
    font-size: 12px;
    padding: 1px 8px;
    border-radius: 4px;
    margin-left: 8px;
    white-space: nowrap;
}

/* Single IR */
.ir-single__meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-top: 20px;
}

.ir-single__date {
    font-size: 18px;
    font-weight: 600;
    color: var(--tertiary);
}

.ir-single__pdf-link {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    border: 1px solid var(--accent-red-secondary);
    border-radius: 6px;
    text-decoration: none;
    color: var(--accent-red-secondary);
    font-weight: 600;
}

.ir-single__pdf-link:hover {
    background-color: var(--accent-red-secondary);
    color: var(--white);
    text-decoration: none;
}

.ir-single__title {
    font-size: 36px;
    font-weight: 700;
    color: var(--black-dark);
    margin: 0 0 30px;
}

.ir-single__body {
    font-size: 18px;
    line-height: 175%;
    color: var(--black-dark);
    margin-bottom: 40px;
    max-width: 800px;
}

.ir-single__body p {
    margin-bottom: 1em;
}

.ir-single__pdf {
    margin-bottom: 50px;
}

.ir-single__back a {
    color: var(--green-primary);
    text-decoration: none;
    font-weight: 600;
}

.ir-single__back a:hover {
    text-decoration: underline;
}

/* Panels */
.ir-panels {
    margin-top: 115px;
}

.ir-panels__list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px 45px;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.ir-panels__item {
    width: calc((100% - (45px * 2)) / 3);
}

.ir-panels__bg {
    border-radius: 16px;
    box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.ir-panels__bg img {
    transition: all 0.3s;
    width: 100%;
    height: auto;
}

.ir-panels__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 150%;
    margin: 35px 0 0;
    padding-left: 26px;
    position: relative;
    color: var(--black-dark);
}

.ir-panels__title::before {
    background: var(--black-dark);
    content: "";
    display: inline-block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 80%;
}

.ir-panels__links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    list-style: none;
    margin: 35px 0 0;
    padding: 0;
    width: 100%;
}

.ir-panels__links li {
    line-height: 125%;
}

.ir-panels__links a {
    font-size: 16px;
    padding-left: 24px;
    position: relative;
    text-decoration: none;
    color: var(--black-dark);
}

.ir-panels__links a::before {
    background: var(--green-primary);
    border-radius: 50%;
    content: "";
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0.2rem;
    width: 16px;
    height: 16px;
}

.ir-panels__links a::after {
    border-top: 2px solid var(--white);
    border-right: 2px solid var(--white);
    border-radius: 2px;
    content: "";
    display: inline-block;
    position: absolute;
    left: 4px;
    top: 0.5rem;
    transform: rotate(45deg);
    width: 4px;
    height: 4px;
}

.ir-panels__links a:hover {
    text-decoration: underline;
}

.ir-panels__panel-link {
    display: block;
    text-decoration: none;
    width: 100%;
    color: inherit;
}

.ir-panels__panel-link:hover .ir-panels__bg img {
    transform: scale(1.1);
}

/* Bottom Buttons */
.ir-btns {
    margin-top: 100px;
    margin-bottom: 50px;
}

.ir-btns__list {
    display: flex;
    align-items: center;
    gap: 45px;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
}

.ir-btns__item {
    width: calc((100% - (45px * 2)) / 3);
}

.ir-btns__item a {
    background: var(--white);
    border: 2px solid var(--green-primary);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    width: 100%;
    height: 60px;
    color: var(--black-dark);
}

.ir-btns__item a:hover {
    background: var(--green-primary);
    color: var(--white);
}

/* IR Responsive */
@media screen and (max-width: 768px) {
    .ir-mv__title {
        font-size: 36px;
        line-height: 1.3;
        text-align: center;
    }

    .ir-panels {
        margin-top: 80px;
    }

    .ir-panels__list {
        gap: 50px;
    }

    .ir-panels__item {
        width: 100%;
    }

    .ir-panels__links,
    .ir-panels__title {
    margin: 30px 0 0;
    }

    .ir-btns__list {
        gap: 30px;
        flex-wrap: wrap;
    }

    .ir-btns__item {
        width: 100%;
    }

    .ir-news-sec__more a {
        width: 100%;
    }

    .ir-cat-tabs__item {
        font-size: 14px;
        padding: 5px 20px;
    }

    .ir-news-item {
        flex-wrap: wrap;
    }

    .ir-news-item__title {
        flex-basis: 100%;
        padding-top: 4px;
    }

    .ir-news-item__date,
    .ir-news-item__cat,
    .ir-news-item__title {
        font-size: 16px;
    }

    .ir-news-item__cat {
        font-size: 12px !important;
    }

    .ir-single__title {
        font-size: 28px;
    }

    .ir-news-sec__title-en {
        font-size: 36px;
    }

    .ir-faq__q {
        font-size: 16px;
    }

    .s_eirModule_titleBox {
        justify-content: flex-start;
    }
}

/* ============================================
   Business Page (事業内容)
   ============================================ */

.business-page {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

.business-block {
    background-color: var(--gray-default);
    min-height: 500px;
}

.business-block__header {
    background-image: url('../images/content-header.jpg');
    background-size: cover;
    width: 100%;
    padding: var(--base) 0;
}

.business-block__header-inner {
    color: var(--black-dark);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.business-block__title {
    font-size: 48px;
    line-height: 180%;
    font-weight: 700;
    margin: 20px 0;
}

.business-content {
    width: 100%;
}

.business-section {
    width: 100%;
    padding: 80px 10px;
}

.business-section__wrap {
    max-width: 950px;
    margin: 0 auto;
}

.business-section__label {
    font-size: 14px;
    line-height: 175%;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--green-primary);
    margin-bottom: 8px;
}

.business-section__title {
    font-size: 42px;
    line-height: 180%;
    font-weight: 700;
    color: var(--black-dark);
    margin: 0 0 16px;
}

.business-section__title a {
    color: var(--black-dark);
    text-decoration: underline;
}

.business-section__title a:hover {
    color: var(--green-primary);
}

.business-section__lead {
    font-size: 24px;
    line-height: 180%;
    font-weight: 600;
    color: var(--black-secondary);
    margin-bottom: 24px;
}

.business-section__desc {
    font-size: 18px;
    line-height: 200%;
    color: var(--black-tertiary);
    margin-bottom: 60px;
}

/* -- PostPrime Section -- */
.business-section--postprime {
    background-color: var(--white);
}

.business-section--postprime .business-section__wrap {
    max-width: 1000px;
}

/* Features Grid */
.business-features {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
}

.business-feature {
    flex: 1;
    background-color: var(--white-bg-fixed);
    border-radius: 12px;
    padding: 30px 24px;
    border: 1px solid var(--color-base-150);
}

.business-feature__icon {
    margin-bottom: 16px;
}

.business-feature__title {
    font-size: 20px;
    line-height: 180%;
    font-weight: 700;
    color: var(--black-dark);
    margin: 0 0 8px;
}

.business-feature__text {
    font-size: 15px;
    line-height: 185%;
    color: var(--black-tertiary);
    margin: 0;
}

/* Service Images */
.business-service-images {
    display: flex;
    justify-content: center;
    position: relative;
    padding-right: 250px;
    padding-top: 20px;
}

.business-service-images__main {
    max-width: 650px;
}

.business-service-images__main img {
    width: 100%;
    height: auto;
}

.business-service-images__sub {
    position: absolute;
    bottom: 0;
    right: 40px;
    width: 240px;
}

.business-service-images__sub img {
    width: 100%;
    height: auto;
}

/* Action Button */
.business-section__action {
    text-align: center;
    margin-top: 40px;
}

.business-section__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border: 2px solid var(--green-primary);
    border-radius: 8px;
    color: var(--green-primary);
    font-size: 16px;
    font-weight: 600;
    line-height: 175%;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
}

.business-section__btn:hover {
    background-color: var(--green-primary);
    color: var(--white);
}

/* -- TakaTrade Section -- */
.business-section--takatrade {
    background-color: var(--black);
}

.business-section--takatrade .business-section__title {
    color: var(--white);
}

.business-section--takatrade .business-section__lead {
    color: var(--white-primary);
}

.business-section--takatrade .business-section__desc {
    color: var(--gray-secondary);
    margin-bottom: 40px;
}

.business-takatrade-info {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--black-tertiary);
}

.business-takatrade-info__item {
    display: flex;
    border-bottom: 1px solid var(--black-tertiary);
    padding: 16px 0;
}

.business-takatrade-info__label {
    width: 160px;
    flex-shrink: 0;
    font-size: 15px;
    line-height: 175%;
    font-weight: 500;
    color: var(--gray-secondary);
}

.business-takatrade-info__value {
    font-size: 15px;
    line-height: 175%;
    font-weight: 400;
    color: var(--white-primary);
}

/* Business Page Responsive */
@media screen and (max-width: 768px) {
    .business-block__title {
        font-size: 36px;
        line-height: 180%;
        text-align: center;
    }

    .business-section {
        padding: 50px 10px;
    }

    .business-section__title {
        font-size: 30px;
    }

    .business-section__lead {
        font-size: 20px;
    }

    .business-section__desc {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .business-features {
        flex-direction: column;
        gap: 16px;
    }

    .business-service-images {
        padding-right: 140px;
    }

    .business-service-images__sub {
        width: 140px;
        right: 0;
    }

    .business-takatrade-info__item {
        flex-direction: column;
        gap: 4px;
    }

    .business-takatrade-info__label {
        width: 100%;
    }
}

/* ============================================
   Stock Ticker Bar (marquee)
   ============================================ */
.stock-ticker {
    background: var(--black);
    color: var(--white);
    font-size: 13px;
    line-height: 1.6;
    padding: 4px 0;
    overflow: hidden;
    position: sticky;
    top: 0;
    z-index: 20;
}

.stock-ticker__track {
    display: flex;
    width: max-content;
    animation: ticker-scroll 25s linear infinite;
    animation-delay: -2s;
}

.stock-ticker__item {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    gap: 16px;
    white-space: nowrap;
}

.stock-ticker__update-label {
    font-size: 11px;
    background: var(--green-primary);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 3px;
    font-weight: 700;
    flex-shrink: 0;
}

.stock-ticker__update-time {
    font-size: 11px;
    color: #aaa;
}

.stock-ticker__market {
    color: #ccc;
    font-size: 13px;
}

.stock-ticker__price {
    font-weight: 400;
    font-size: 15px;
    color: var(--white);
}

.stock-ticker__price .price-value {
    font-size: 15px;
}

.stock-ticker__per {
    font-size: 13px;
    color: var(--green-secondary);
}

.stock-ticker__cap {
    color: #ccc;
    font-size: 12px;
}

@keyframes ticker-scroll {
    0%   { transform: translateX(100vw); }
    100% { transform: translateX(-100%); }
}

@media (max-width: 768px) {
    .stock-ticker {
        font-size: 12px;
        padding: 8px 0;
    }

    .stock-ticker__item {
        gap: 10px;
    }

    .stock-ticker__price {
        font-size: 14px;
    }

    .stock-ticker__price .price-value {
        font-size: 16px;
    }
}

.breadcrumb {
    padding: 12px 0 0;
}
.breadcrumb ol {
    list-style: none;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin: 0;
    padding: 0;
    font-size: 12px;
    line-height: 1.4;
}
.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 0;
    color: var(--black-dark);
}
.breadcrumb li:not(:last-child)::after {
    content: "\FF1E";
    color: var(--green-primary);
    font-size: 12px;
    margin: 0 4px;
}
.breadcrumb a {
    color: var(--black-dark);
    text-decoration: none;
}
.breadcrumb a:hover {
    color: var(--green-primary);
    text-decoration: underline;
}
.breadcrumb span {
    color: var(--black-dark);
}

.ir-mv .breadcrumb {
    padding: 4px 0 0;
}

.ir-mv .breadcrumb ol {
    list-style: none;
    list-style-type: none;
}

.ir-mv .breadcrumb li {
    color: rgba(255, 255, 255, 0.6);
}
.ir-mv .breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
}
.ir-mv .breadcrumb a:hover {
    color: #fff;
}
.ir-mv .breadcrumb span {
    color: #fff;
}
.ir-mv .breadcrumb li::after {
    color: var(--green-primary);
}

.news-page__header-inner .breadcrumb li {
    color: rgba(255, 255, 255, 0.6);
}
.news-page__header-inner .breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
}
.news-page__header-inner .breadcrumb a:hover {
    color: #fff;
}
.news-page__header-inner .breadcrumb span {
    color: #fff;
}
.news-page__header-inner .breadcrumb li::after {
    color: var(--green-primary);
}

.company-block__header-inner .breadcrumb ol,
.management-block__header-inner .breadcrumb ol,
.business-block__header-inner .breadcrumb ol,
.contact-page__header-inner .breadcrumb ol,
.news-page__header-inner .breadcrumb ol {
    list-style: none;
    list-style-type: none;
}

/* Front page news section spacing */
.front-page .ir-news-sec {
    max-width: 1040px;
    margin: 0 auto;
    padding: 80px 0;
}
.front-page .ir__navWrap {
    margin-bottom: 30px;
}
@media (max-width: 1100px) {
    .front-page .ir-news-sec {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* Cookie consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(10, 188, 113, 0.8);
    padding: 16px 20px;
}
.cookie-consent__inner {
    max-width: 1040px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.cookie-consent__text {
    font-size: 13px;
    color: #fff;
    line-height: 1.7;
    margin: 0;
    flex: 1;
    min-width: 280px;
}
.cookie-consent__btn {
    padding: 8px 32px;
    font-size: 14px;
    font-weight: 600;
    color: var(--green-primary);
    background: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s;
}
.cookie-consent__btn:hover {
    opacity: 0.85;
}
