.hero {
    position: relative;
    padding: 0 0 7rem;
    min-height: 60vh;
    background-color: var(--color-primary);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero__spacer {
    width: 100%;
    min-height: 320px;
}

.section {
    padding: 2rem 0;
}

.section--light {
    background: #ffffff;
}

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

.section__title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.grid {
    display: grid;
    gap: 2rem;
}

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

.card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 12px 28px var(--shadow-card);
}

.card__title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: 999px;
    background: var(--color-primary);
    color: #ffffff;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px var(--shadow-primary);
}

.cta--outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.category-icon-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 1rem;
    row-gap: 1.2rem;
    justify-items: stretch;
}

@media (max-width: 1100px) {
    .category-icon-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .category-icon-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 0.75rem;
    }
}

@media (max-width: 540px) {
    .category-icon-grid {
        grid-template-columns: 1fr;
        justify-items: stretch;
    }

    .category-icon__image {
        padding: 1.75rem;
    }
}

.category-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    gap: 0.75rem;
    color: var(--color-primary);
    width: 100%;
}

.category-icon__image {
    width: 100%;
    padding: 2.2rem;
    border: 4px solid var(--color-primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    background: #ffffff;
    box-sizing: border-box;
}

.category-icon__image img {
    max-width: 110px;
    height: auto;
}

.category-icon__label {
    font-weight: 600;
    letter-spacing: 0.05em;
}

.category-icon:hover .category-icon__image {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px var(--shadow-primary);
}



.site-footer__cols {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem 4rem;
    margin-bottom: 2.5rem;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.site-footer__brand {
    display: grid;
    gap: 0.4rem;
    flex: 0 1 320px;
    max-width: 360px;
}

.site-footer__brand h2 {
    font-size: clamp(1.6rem, 2vw, 1.9rem);
    margin: 0 0 0.35rem;
}

.site-footer__brand p {
    margin: 0;
    line-height: 1.6;
}

.footer-contact {
    margin-top: 0.75rem;
}

.footer-contact p {
    margin: 0.35rem 0;
    display: flex;
    gap: 0.5rem;
    line-height: 1.5;
    align-items: baseline;
}

.footer-contact strong {
    min-width: 6em;
}

.site-footer__license {
    font-size: 0.875rem;
    opacity: 0.85;
}

.site-footer__links {
    flex: 0 1 240px;
    display: flex;
    justify-content: center;
}

.site-footer__menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    align-items: center;
}

.site-footer__menu li {
    width: 100%;
    text-align: center;
}

.site-footer__menu a {
    color: var(--color-footer-link);
    opacity: 0.9;
    transition: color 0.2s ease, opacity 0.2s ease;
    white-space: nowrap;
}

.site-footer__menu a:hover {
    opacity: 1;
    color: var(--color-footer-link-hover);
}

.site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    padding-top: 1.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    font-size: 0.875rem;
    text-align: center;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.breadcrumb__item + .breadcrumb__item::before {
    content: '> ';
    color: rgba(18, 35, 59, 0.4);
}

.notice-list {
    display: grid;
    gap: 1.25rem;
}

.notice-table {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1.5rem 0 0;
}

.notice-table__row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--color-border);
}

.notice-table__date {
    width: 75px;
    color: var(--text-muted-strong);
    font-size: 0.9rem;
}

.notice-table__categories {
    min-width: 100px;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.notice-table__category-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.15rem 0.75rem;
    border: 1px solid var(--color-border-strong);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-dark);
    background: #fff;
}

.notice-table__title {
    flex: 1;
    margin: 0;
    font-size: 1rem;
}

.notice-table__title a {
    color: inherit;
    text-decoration: none;
}

.notice-table__title a:hover,
.notice-table__title a:focus-visible {
    color: var(--color-primary);
    text-decoration: underline;
}

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

@media (max-width: 640px) {
    .notice-table__row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .notice-table__date,
    .notice-table__categories {
        width: auto;
        min-width: 0;
    }
}

.notice-list__item {
    border-bottom: 1px solid rgba(17, 44, 82, 0.08);
    padding-bottom: 1rem;
}

.notice-list__meta {
    font-size: 0.8125rem;
    color: rgba(18, 35, 59, 0.6);
    margin-bottom: 0.25rem;
}


.market-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.market-table th,
.market-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--color-border);
    text-align: left;
    vertical-align: top;
}

.market-table td {
    padding-left: 4rem;
}

.market-history__scroll {
    margin-top: 1.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.market-history__scroll table {
    min-width: 640px;
}

.market-history__hint {
    margin: 0.5rem 0 0;
    font-size: 0.8rem;
    color: rgba(18, 35, 59, 0.6);
    text-align: right;
}

.market-chart {
    width: 100%;
    height: 360px;
    background: rgba(17, 44, 82, 0.05);
    border-radius: 12px;
    display: grid;
    place-items: center;
}

.market-digest {
    background: var(--color-digest-background, var(--color-primary));
    color: var(--color-digest-text, #ffffff);
    padding: 2.5rem 0;
    margin-top: -6rem;
    position: relative;
    z-index: 5;
}

.market-digest__inner {
    background: var(--color-digest-inner-bg, rgba(255, 255, 255, 0.06));
    border: 1px solid var(--color-digest-border, rgba(255, 255, 255, 0.12));
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 18px 36px rgba(7, 25, 48, 0.35);
}

.market-digest__header {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.market-digest__title {
    margin: 0;
    font-size: 1.5rem;
    letter-spacing: 0.08em;
}

.market-digest__timestamp {
    margin: 0 auto 0 0;
    font-size: 0.9rem;
    opacity: 0.7;
}

.market-digest__note {
    font-size: 0.85rem;
    opacity: 0.6;
}

.market-digest__items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.market-digest__item {
    display: grid;
    gap: 0.5rem;
    padding-right: 1.5rem;
    border-right: 1px solid var(--color-digest-item-border, rgba(255, 255, 255, 0.12));
}

.market-digest__item:last-child {
    border-right: none;
    padding-right: 0;
}

.market-digest__label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.market-digest__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.market-digest__price {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
}

.market-digest__value {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.market-digest__unit {
    font-size: 0.85rem;
}

.market-digest__trend {
    font-size: 0.85rem;
    display: flex;
    gap: 0.5rem;
    align-items: baseline;
}

.market-digest__trend-label {
    opacity: 0.7;
}

.market-digest__trend-value {
    font-weight: 600;
}

.market-digest__trend-value--up {
    color: #3dd17d;
}

.market-digest__trend-value--down {
    color: #f87171;
}

.market-digest__trend-value--flat {
    color: rgba(255, 255, 255, 0.82);
}

.event-slider__container {
    display: flex;
    flex-direction: column;
    padding: 3.5rem 0;
    gap: 1.5rem;
    margin-left: calc(-1 * var(--container-padding, 100px));
    /* padding-left: var(--container-padding, 24px);*/
    width: calc(100% + var(--container-padding, 180px));
}

@media (max-width: 768px) {
    .event-slider__container {
        margin-left: calc(-1 * var(--container-padding-mobile, 20px));
        padding-left: var(--container-padding-mobile, 16px);
        width: calc(100% + var(--container-padding-mobile, 16px));
    }
}

.event-slider {
    position: relative;
    width: 100%;
}

.event-slider.swiper {
    overflow: visible;
}

.event-slider .swiper-wrapper {
    padding: 0;
    display: flex;
    width: 100%;
    align-items: stretch;
}

.event-slider .swiper-slide {
    display: flex;
    flex-shrink: 0;
    width: clamp(220px, 30vw, 300px);
    height: auto;
}
@media (max-width: 768px) {
    .event-slider .swiper-slide {
    display: flex;
    flex-shrink: 0;
    width: clamp(195px, 30vw, 300px);
    height: auto;
}
}
.event-slider .swiper-slide > * {
    width: 100%;
}

.global-alerts {
    background: #d9531e;
    color: #fff;
}

.global-alerts__inner {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.75rem 0;
}

.global-alert {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.85rem;
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}

.global-alert__label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 999px;
    padding: 0.1rem 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.global-alert__date,
.global-alert__category {
    font-size: 0.85rem;
    opacity: 0.85;
}

.global-alert__title {
    font-size: 0.95rem;
    max-width: 360px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .global-alerts__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .global-alert {
        width: 100%;
        flex-wrap: wrap;
        white-space: normal;
        gap: 0.4rem;
    }

    .global-alert__title {
        max-width: 100%;
        white-space: nowrap;
    }
}


.event-slider__footer {
    margin-top: 2rem;
}

.event-slider__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    width: min(280px, 100%);
    margin: 0 auto;
}

.event-slider__control {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: #12233b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: static;
    flex-shrink: 0;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    box-shadow: 0 15px 30px rgba(18, 35, 59, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.event-slider__control:hover,
.event-slider__control:focus-visible {
    background: #deb076;
    color: #fff;
    transform: translateY(-2px);
    outline: none;
    box-shadow: 0 20px 35px rgba(18, 35, 59, 0.25);
}

.event-slider__control::after {
    display: none;
}

.event-slider__control.swiper-button-disabled {
    opacity: 0.4;
    pointer-events: none;
    box-shadow: none;
}

.event-slider__control svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

@media (max-width: 640px) {
    .event-slider__controls {
        width: 100%;
        gap: 0.75rem;
    }

    .event-slider__control {
        width: 44px;
        height: 44px;
    }
}

.event-card {
    flex: 1 1 auto;
    width: 100%;
    box-shadow: none;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.event-card__link {
    display: block;
    color: inherit;
    text-decoration: none;
    height: 100%;
    background: transparent;
}

.event-card__link:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 4px;
}

.event-card:hover,
.event-card:focus-within {
    transform: scale(1.1);
    z-index: 2;
}

.event-card__media {
    position: relative;
    width: 100%;
    height: 200px;
    background: #f1f3f8;
    border-radius: 18px;
    overflow: hidden;
}

.event-card__media img,
.event-card__media--placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.event-card__media--placeholder {
    background: linear-gradient(135deg, rgba(17, 44, 82, 0.08), rgba(17, 44, 82, 0.02));
}

.event-card__body {
    padding: 12px 0 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    background: #fff9f0;
}

.event-card__date {
    font-size: 0.85rem;
    color: rgba(18, 35, 59, 0.65);
    margin: 0;
}

.event-card__title {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
    color: var(--color-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (min-width: 1200px) {
    .event-card__body {
        padding: 12px 1rem 1rem;
    }
}

.market-page__header {
    margin-bottom: 2rem;
    text-align: center;
}

.market-page__header .entry-lead {
    max-width: 720px;
    margin: 0.75rem auto 0;
    line-height: 1.7;
    color: rgba(18, 35, 59, 0.75);
}

.market-summary-card {
    background: #ffffff;
    border: 1px solid rgba(6, 25, 52, 0.08);
    border-radius: 18px;
    padding: 1.75rem 2rem;
    box-shadow: 0 12px 28px rgba(12, 43, 85, 0.08);
    margin-bottom: 2.5rem;
}

.market-summary-card__meta {
    display: flex;
    gap: 0.75rem;
    align-items: baseline;
    justify-content: space-between;
    font-size: 0.85rem;
    color: rgba(18, 35, 59, 0.6);
    margin-bottom: 1.5rem;
}

.market-summary-card__timestamp {
    font-weight: 600;
}

.market-summary-card__note {
    opacity: 0.6;
}

.market-summary-card__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 1.25rem;
}

.market-summary-card__item {
    display: grid;
    gap: 0.45rem;
    padding: 1rem 1.25rem;
    border-radius: 14px;
    border: 1px solid rgba(6, 25, 52, 0.07);
    background: linear-gradient(180deg, rgba(243, 246, 252, 0.55) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.market-summary-card__label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.market-summary-card__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.market-summary-card__price {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
}

.market-summary-card__unit {
    font-size: 0.85rem;
    font-weight: 500;
}

.market-summary-card__trend {
    font-size: 0.85rem;
    display: flex;
    gap: 0.5rem;
    align-items: baseline;
    color: rgba(18, 35, 59, 0.7);
}

.market-summary-card__trend-value {
    font-weight: 600;
}

.market-summary-card__trend-value--up {
    color: #15803d;
}

.market-summary-card__trend-value--down {
    color: #dc2626;
}

.market-summary-card__trend-value--flat {
    color: rgba(18, 35, 59, 0.6);
}

.page-hero {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 20, 37, 0.15) 0%, rgba(8, 20, 37, 0.55) 100%);
}

.page-hero__content {
    position: relative;
    width: 100%;
    padding: 5rem 1rem 4rem;
}

.page-hero__cta {
    text-align: center;
    margin: -1.75rem auto 2.25rem;
}

.page-hero__cta .cta {
    box-shadow: 0 10px 24px var(--shadow-primary);
}

.market-page .entry-content {
    margin-top: 1.5rem;
}

.market-derived-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
}

.market-derived-card {
    background: var(--color-surface);
    border-radius: 16px;
    border: 1px solid var(--color-border);
    box-shadow: 0 10px 24px var(--shadow-card);
    overflow: hidden;
}

.market-derived-card__header {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary) 100%);
    color: #ffffff;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
}

.market-derived-card__header h3 {
    margin: 0;
    font-size: 1.05rem;
    letter-spacing: 0.03em;
}

.market-derived-card__header span {
    font-size: 0.75rem;
    opacity: 0.75;
}

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

.market-derived-table th {
    width: 55%;
    text-align: left;
}

.market-derived-table td {
    text-align: right;
}

.market-derived-table th,
.market-derived-table td {
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid rgba(12, 43, 85, 0.08);
    background: rgba(243, 246, 252, 0.6);
}

.market-derived-table tr:nth-child(odd) th,
.market-derived-table tr:nth-child(odd) td {
    background: #ffffff;
}

.diamond-page__breadcrumb,
.watch-page__breadcrumb {
    background: #ffffff;
    padding: 0.25rem 0 0.6rem;
}

.diamond-page,
.watch-page,
.jewelry-page,
.hosyoku-page,
.bag-page {
    background: #ffffff;
}

.coin-page {
    background: #ffffff;
}

.diamond-hero,
.watch-hero,
.jewelry-hero,
.hosyoku-hero,
.bag-hero {
    background: #ffffff;
    padding: clamp(3rem, 6vw, 5rem) 0;
}

.coin-hero {
    background: #ffffff;
    padding: clamp(3rem, 6vw, 5rem) 0;
}

.diamond-hero .container,
.watch-hero .container,
.jewelry-hero .container,
.hosyoku-hero .container,
.bag-hero .container {
    max-width: 960px;
    margin: 0 auto;
    padding-right: clamp(1.75rem, 7vw, 5rem);
}

.coin-hero .container {
    max-width: 960px;
    margin: 0 auto;
    padding-right: clamp(1.75rem, 7vw, 5rem);
}

.diamond-hero__title,
.watch-hero__title,
.jewelry-hero__title,
.hosyoku-hero__title,
.bag-hero__title {
    margin: 2rem 0 80px;
    font-size: 36px;
    color: #113b78;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.coin-hero__title {
    margin: 2rem 0 80px;
    font-size: 36px;
    color: #113b78;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.diamond-hero__quote,
.watch-hero__quote,
.jewelry-hero__quote,
.hosyoku-hero__quote,
.bag-hero__quote {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: flex-start;
    gap: 0.75rem;
    max-width: 820px;
    font-weight: 500;
    color: #113b78;
}

.coin-hero__quote {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: flex-start;
    gap: 0.75rem;
    max-width: 820px;
    font-weight: 500;
    color: #113b78;
}

.diamond-hero__quote p,
.watch-hero__quote p,
.jewelry-hero__quote p,
.hosyoku-hero__quote p,
.bag-hero__quote p {
    margin: 0;
    font-size: 32px;
    line-height: 1.8;
}

.coin-hero__quote p {
    margin: 0;
    font-size: 32px;
    line-height: 1.8;
}

.diamond-hero__quote-mark,
.watch-hero__quote-mark,
.jewelry-hero__quote-mark,
.hosyoku-hero__quote-mark,
.bag-hero__quote-mark {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #113b78;
    line-height: 1;
}

.coin-hero__quote-mark {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #113b78;
    line-height: 1;
}

.diamond-hero__quote .diamond-hero__quote-mark:first-child,
.watch-hero__quote .watch-hero__quote-mark:first-child,
.jewelry-hero__quote .jewelry-hero__quote-mark:first-child,
.hosyoku-hero__quote .hosyoku-hero__quote-mark:first-child,
.bag-hero__quote .bag-hero__quote-mark:first-child {
    transform: translateY(-0.3em);
}

.coin-hero__quote .coin-hero__quote-mark:first-child {
    transform: translateY(-0.3em);
}

.diamond-hero__quote-mark--close,
.watch-hero__quote-mark--close,
.jewelry-hero__quote-mark--close,
.hosyoku-hero__quote-mark--close,
.bag-hero__quote-mark--close {
    align-self: flex-end;
    justify-self: flex-end;
}

.coin-hero__quote-mark--close {
    align-self: flex-end;
    justify-self: flex-end;
}

.diamond-content,
.watch-content,
.jewelry-content,
.hosyoku-content,
.bag-content {
    background: #ffffff;
    padding: 0 0 clamp(4rem, 7vw, 6rem);
}

.coin-content {
    background: #ffffff;
    padding: 0 0 clamp(4rem, 7vw, 6rem);
}

.diamond-content__inner,
.watch-content__inner,
.jewelry-content__inner,
.hosyoku-content__inner,
.bag-content__inner {
    max-width: 960px;
    margin: 0 auto;
    color: rgba(18, 35, 59, 0.85);
    line-height: 1.9;
    font-size: 1rem;
}

.coin-content__inner {
    max-width: 960px;
    margin: 0 auto;
    color: rgba(18, 35, 59, 0.85);
    line-height: 1.9;
    font-size: 1rem;
}

.diamond-intro,
.watch-intro,
.jewelry-intro,
.hosyoku-intro,
.bag-intro {
    font-size: 1.05rem;
    line-height: 2;
    margin: 0 0 1.25rem;
    color: rgba(18, 35, 59, 0.9);
    font-weight: 600;
}

.coin-intro {
    font-size: 1.05rem;
    line-height: 2;
    margin: 0 0 1.25rem;
    color: rgba(18, 35, 59, 0.9);
    font-weight: 600;
}

.diamond-content__inner p,
.watch-content__inner p,
.jewelry-content__inner p,
.hosyoku-content__inner p,
.bag-content__inner p,
.coin-content__inner p {
    margin: 0 0 1.5rem;
}

.diamond-content__inner h2,
.diamond-content__inner h3,
.watch-content__inner h2,
.watch-content__inner h3,
.jewelry-content__inner h2,
.jewelry-content__inner h3,
.bag-content__inner h2,
.bag-content__inner h3,
.hosyoku-content__inner h2,
.hosyoku-content__inner h3,
.coin-content__inner h2,
.coin-content__inner h3,
.coin-content__inner h2,
.coin-content__:inner h3,
.hosyoku-content__inner h2,
.hosyoku-content__inner h3,
.bag-content__inner h2,
.bag-content__inner h3 {
    color: #113b78;
    margin: 3rem 0 1.5rem;
    letter-spacing: 0.05em;
}

.diamond-content__inner h2,
.watch-content__inner h2,
.jewelry-content__inner h2,
.hosyoku-content__inner h2,
.bag-content__inner h2 {
    font-size: clamp(1.8rem, 4vw, 2.3rem);
}

.diamond-content__inner h3,
.watch-content__inner h3,
.jewelry-content__inner h3,
.hosyoku-content__inner h3,
.bag-content__inner h3 {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
}

.diamond-content__inner figure,
.watch-content__inner figure,
.jewelry-content__inner figure,
.hosyoku-content__inner figure,
.bag-content__inner figure {
    margin: 2rem 0;
}

.diamond-content__inner img,
.watch-content__inner img,
.jewelry-content__inner img,
.hosyoku-content__inner img,
.bag-content__inner img {
    border-radius: 12px;
    width: 100%;
    height: auto;
}

.diamond-content__inner strong,
.watch-content__inner strong,
.jewelry-content__inner strong,
.hosyoku-content__inner strong,
.bag-content__inner strong,
.coin-content__inner strong {
    color: #113b78;
}

.pearl-page__breadcrumb {
    background: #ffffff;
    padding: 0.25rem 0 0.6rem;
}

.pearl-page {
    background: #ffffff;
}

.pearl-hero {
    background: #ffffff;
    padding: clamp(3rem, 6vw, 5rem) 0;
}

.pearl-hero .container {
    max-width: 960px;
    margin: 0 auto;
    padding-right: clamp(1.75rem, 7vw, 5rem);
}

.pearl-hero__title {
    margin: 2rem 0 80px;
    font-size: 36px;
    color: #113b78;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.pearl-hero__quote {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: flex-start;
    gap: 0.75rem;
    max-width: 820px;
    font-weight: 500;
    color: #113b78;
}

.pearl-hero__quote p {
    margin: 0;
    font-size: 32px;
    line-height: 1.8;
}

.pearl-hero__quote-mark {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #113b78;
    line-height: 1;
}

.pearl-hero__quote .pearl-hero__quote-mark:first-child {
    transform: translateY(-0.3em);
}

.pearl-hero__quote-mark--close {
    align-self: flex-end;
    justify-self: flex-end;
}

.pearl-content {
    background: #ffffff;
    padding: 0 0 clamp(4rem, 7vw, 6rem);
}

.pearl-content__inner {
    max-width: 960px;
    margin: 0 auto;
    color: rgba(18, 35, 59, 0.85);
    line-height: 1.9;
    font-size: 1rem;
}

.pearl-intro {
    font-size: 1.05rem;
    line-height: 2;
    margin: 0 0 1.25rem;
    color: rgba(18, 35, 59, 0.9);
    font-weight: 600;
}

.market-link-card {
    margin: 3rem 0 2.5rem;
}

.market-link-card__inner {
    background: linear-gradient(135deg, var(--gradient-primary-start) 0%, var(--gradient-primary-end) 100%);
    border: 1px solid var(--color-border);
    border-radius: 18px;
    padding: 2.5rem clamp(1.5rem, 6vw, 3.5rem);
    box-shadow: 0 12px 28px var(--shadow-card);
    text-align: left;
}

.market-link-card__eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    color: var(--text-muted-strong);
    margin-bottom: 1rem;
}

.market-link-card__title {
    margin: 0 0 0.75rem;
    font-size: 1.75rem;
    color: var(--color-primary);
    letter-spacing: 0.08em;
}

.market-link-card__text {
    margin: 0 0 1.75rem;
    color: rgba(18, 35, 59, 0.78);
    line-height: 1.8;
}

.market-link-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    background: var(--color-primary);
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 24px var(--shadow-primary-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.market-link-card__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px var(--shadow-primary);
}

.page-breadcrumb {
    padding: 0.4rem 0 0.4rem;
}

.page-breadcrumb .breadcrumb {
    margin: 0;
}

@media (max-width: 768px) {
    .diamond-hero,
    .watch-hero {
        padding: 3rem 0;
    }

    .diamond-hero .container,
    .watch-hero .container,
    .jewelry-hero .container {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }

    .diamond-hero__title,
    .watch-hero__title,
    .jewelry-hero__title {
        margin-bottom: 1.5rem;
    }

    .diamond-hero__quote,
    .watch-hero__quote {
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        gap: 0.5rem 0.75rem;
    }

    .diamond-hero__quote-mark--close,
    .watch-hero__quote-mark--close {
        grid-column: 2;
        justify-self: flex-end;
    }

    .market-digest {
        margin-top: 0;
        padding: 2rem 0;
    }

    .market-digest__inner {
        padding: 1.5rem;
    }

    .market-digest__items {
        gap: 1rem;
    }

    .market-digest__item {
        border-right: none;
        border-bottom: 1px solid var(--color-digest-item-border, rgba(255, 255, 255, 0.08));
        padding: 0 0 1rem;
    }

    .market-digest__item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .market-summary-card {
        padding: 1.5rem;
    }

    .market-summary-card__meta {
        justify-content: center;
    }

    .market-summary-card__list {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }

    .market-history__scroll table {
        min-width: 560px;
    }

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

    .category-icon-grid {
        grid-template-columns: repeat(2, minmax(150px, 1fr));
        column-gap: 0.75rem;
        row-gap: 1rem;
    }

    .category-icon {
        gap: 0.5rem;
    }

    .category-icon__image {
        padding: 1.8rem;
    }

    .category-icon__label {
        font-size: 0.95rem;
    }

    .page-hero {
        min-height: 260px;
    }

    .page-hero__content {
        padding: 3.25rem 1rem 2.5rem;
    }

    .page-hero__cta {
        margin-top: -1.4rem;
    }

    .page-hero {
        min-height: 280px;
    }

    .page-hero__content {
        padding: 4rem 1rem 3rem;
    }

    .page-hero__cta {
        margin-top: -2rem;
    }

    .site-footer__cols {
        flex-direction: column;
        gap: 2.5rem;
        align-items: center;
        text-align: center;
    }

    .site-footer__links {
        flex: 1 1 auto;
        justify-content: center;
    }

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

    .site-footer__brand p,
    .footer-contact p {
        justify-content: center;
    }

    .site-footer__menu a {
        white-space: normal;
    }
}

.nav-toggle {
    display: none;
    border: none;
    background: transparent;
    font-size: 1.75rem;
    cursor: pointer;
    color: var(--color-dark);
}

@media (max-width: 768px) {
    .hero {
        min-height: 380px;
        padding: 0 0 4rem;
    }

    .hero__spacer {
        min-height: 220px;
    }

    .section {
        padding: 3rem 0;
    }

    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
    }

    .primary-nav {
        width: 100%;
        display: none;
    }

    .primary-nav.is-open,
    .primary-nav[style*="display: block"] {
        display: block !important;
    }

    .primary-nav ul {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem 0;
    }
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.screen-reader-text:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
}

.market-tabs__trigger {
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    border: 1px solid var(--color-primary);
    background: transparent;
    color: var(--color-primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.market-tabs__trigger:hover,
.market-tabs__trigger.is-active {
    background: var(--color-primary);
    color: #ffffff;
}

.market-tabs__panel {
    display: none;
    margin-top: 1.5rem;
}

.market-tabs__panel.is-active {
    display: block;
}

.cta--outline.is-active {
    background: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
}
.coin-page__breadcrumb {
    background: #ffffff;
    padding: 0.25rem 0 0.6rem;
}

.coin-page {
    background: #ffffff;
}

.coin-hero {
    background: #ffffff;
    padding: clamp(3rem, 6vw, 5rem) 0;
}

.coin-hero .container {
    max-width: 960px;
    margin: 0 auto;
    padding-right: clamp(1.75rem, 7vw, 5rem);
}

.coin-hero__title {
    margin: 2rem 0 80px;
    font-size: 36px;
    color: #113b78;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.coin-hero__quote {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: flex-start;
    gap: 0.75rem;
    max-width: 820px;
    font-weight: 500;
    color: #113b78;
}

.coin-hero__quote p {
    margin: 0;
    font-size: 32px;
    line-height: 1.8;
}

.coin-hero__quote-mark {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #113b78;
    line-height: 1;
}

.coin-hero__quote .coin-hero__quote-mark:first-child {
    transform: translateY(-0.3em);
}

.coin-hero__quote-mark--close {
    align-self: flex-end;
    justify-self: flex-end;
}

.coin-content {
    background: #ffffff;
    padding: 0 0 clamp(4rem, 7vw, 6rem);
}

.coin-content__inner {
    max-width: 960px;
    margin: 0 auto;
    color: rgba(18, 35, 59, 0.85);
    line-height: 1.9;
    font-size: 1rem;
}

.coin-intro {
    font-size: 1.05rem;
    line-height: 2;
    margin: 0 0 1.25rem;
    color: rgba(18, 35, 59, 0.9);
    font-weight: 600;
}

@media (max-width: 768px) {
    .watch-hero,
    .jewelry-hero,
    .bag-hero,
    .hosyoku-hero,
    .coin-hero {
        padding: 3rem 0;
    }

    .watch-hero .container,
    .jewelry-hero .container,
    .bag-hero .container,
    .hosyoku-hero .container,
    .coin-hero .container {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }

    .watch-hero__title,
    .jewelry-hero__title,
    .bag-hero__title,
    .hosyoku-hero__title,
    .coin-hero__title {
        margin-bottom: 1.5rem;
    }

    .watch-hero__quote,
    .jewelry-hero__quote,
    .bag-hero__quote,
    .hosyoku-hero__quote,
    .coin-hero__quote {
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        gap: 0.5rem 0.75rem;
    }

    .watch-hero__quote-mark--close,
    .jewelry-hero__quote-mark--close,
    .bag-hero__quote-mark--close,
    .hosyoku-hero__quote-mark--close,
    .coin-hero__quote-mark--close {
        grid-column: 2;
        justify-self: flex-end;
    }
}

.dealing-page {
    background: #ffffff;
}

.dealing-flow {
    padding-top: 1.5rem;
    padding-bottom: 4rem;
}


.dealing-page__title {
    font-size: 36px;
    font-weight: 700;
    text-align: left;
    margin: 1.5rem 0;
}

.dealing-flow__title {
    text-align: left;
    font-size: 24px;
    margin-bottom: 1rem;
}

.dealing-step__title {
    font-size: 24px;
}

.dealing-step__content h4 {
    font-size: 20px;
}

.dealing-step__content ul {
    margin: 0.5rem 0 1.25rem;
    padding-left: 1.5rem;
}

.dealing-step__content p,
.dealing-step__content li {
    font-size: 16px;
    line-height: 1.7;
}

.dealing-flow__steps {
    margin-top: 3rem;
}

.dealing-step {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.dealing-step:last-child {
    margin-bottom: 0;
}

.dealing-step__indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.dealing-step__bubble {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--color-step-primary);
    color: var(--color-step-text);
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.1;
}

.dealing-step__bubble span:first-child {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: inherit;
}

.dealing-step__bubble span:last-child {
    font-size: 28px;
    letter-spacing: 0;
    color: inherit;
}

.dealing-step__body {
    padding-bottom: 1rem;
}

.dealing-step__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-step-heading);
    margin-bottom: 0.75rem;
}

.dealing-step__text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: rgba(18, 35, 59, 0.85);
}

.dealing-step__text h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: rgba(18, 35, 59, 0.9);
}

.dealing-step__text ul,
.dealing-step__list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.dealing-step__text ul li,
.dealing-step__list li {
    position: relative;
    padding-left: 1.25rem;
    font-size: 16px;
    line-height: 1.6;
}

.dealing-step__text ul li::before,
.dealing-step__list li::before {
    content: '\203A';
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

.dealing-step__link {
    position: relative;
    display: inline-block;
    padding-left: 1.25rem;
}

.dealing-step__link::before {
    content: '\203A';
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

.dealing-step__notice {
    margin-top: 2rem;
    padding: 2rem;
    border: 1px solid rgba(18, 35, 59, 0.2);
    border-radius: 12px;
    background-color: #fff;
}

.dealing-step__notice-title {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(18, 35, 59, 0.9);
}

.dealing-step__notice-text {
    margin: 0 0 0.75rem;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(18, 35, 59, 0.9);
}

.dealing-step__notice-text:last-of-type {
    margin-bottom: 1.5rem;
}

.dealing-step__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    border: 1.5px solid var(--color-primary);
    border-radius: 12px;
    color: var(--color-primary);
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.dealing-step__btn:hover,
.dealing-step__btn:focus {
    background-color: var(--color-primary);
    color: #fff;
}

.dealing-step__btn-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    padding: 0.175rem 0.5rem;
    border: 1px solid currentColor;
    border-radius: 999px;
    font-size: 0.75rem;
    line-height: 1.2;
}

.dealing-note {
    margin-top: 3rem;
    padding: 2.5rem;
    border: 1px solid rgba(18, 35, 59, 0.15);
    border-radius: 16px;
    background-color: rgba(255, 255, 255, 0.95);
}

.dealing-note__title {
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: rgba(18, 35, 59, 0.95);
    letter-spacing: 0.03em;
}

.dealing-note__text {
    margin: 0 0 1rem;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(18, 35, 59, 0.9);
}

.dealing-note__list {
    list-style: none;
    margin: 1.5rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

.dealing-note__list li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(18, 35, 59, 0.88);
}

.dealing-note__list li::before {
    content: '\203A';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-size: 1rem;
    line-height: 1;
    top: 0.35rem;
}

.dealing-note__link {
    color: var(--color-primary);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.2em;
}

.dealing-note__link:hover,
.dealing-note__link:focus {
    text-decoration-thickness: 2px;
}

@media (max-width: 768px) {
    .dealing-step {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .dealing-step__indicator {
        flex-direction: row;
        align-items: center;
    }

    .dealing-step__notice {
        padding: 1.5rem;
    }

    .dealing-step__notice-title {
        font-size: 1.25rem;
    }

    .dealing-note {
        padding: 2rem;
    }

    .dealing-note__title {
        font-size: 1.5rem;
    }

    .dealing-note__list li {
        font-size: 14px;
    }

    .dealing-step__indicator::after {
        display: none;
    }

    .dealing-step__label {
        margin-right: 0.75rem;
        margin-bottom: 0;
    }
}
.company-about,
.company-overview,
.company-history {
    text-align: left;
}

.company-overview .section__title {
    text-align: left;
}
