.page-industry-list,
.page-industry-detail {
    --industry-red: #c52b2d;
    --industry-ink: #2c2c2c;
    --industry-muted: #656565;
}

.page-industry-list main { overflow: hidden; }

.industry-hero {
    position: relative;
    height: 600px;
    overflow: hidden;
    color: #fff;
    background: #0d2638;
}

.industry-hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
}

.industry-hero__content {
    position: relative;
    z-index: 1;
    height: 100%;
    padding-top: 164px;
    padding-left: clamp(0px, 6vw, 116px);
}

.industry-hero h1 {
    margin: 0;
    font-size: 46px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: .04em;
}

.industry-hero p {
    margin: 20px 0 0;
    font-family: Arial, sans-serif;
    font-size: 27px;
    font-weight: 500;
    line-height: 1.25;
}

.industry-hero i {
    width: 220px;
    height: 8px;
    margin-top: 44px;
    display: block;
    background: var(--industry-red);
}

.industry-list-main {
    height: 1384px;
    background: #fff;
}

.industry-list-container {
    width: min(1200px, calc(100% - 80px));
    margin-inline: auto;
    padding-top: 56px;
}

.industry-list-grid {
    display: grid;
    gap: 40px;
}

.industry-list-card {
    min-width: 0;
    height: 160px;
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr) 44px;
    gap: 20px;
    align-items: center;
}

.industry-list-card__image {
    width: 240px;
    height: 160px;
    display: block;
    overflow: hidden;
    background: #eef0f2;
}

.industry-list-card__image img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    transition: transform 280ms ease;
}

.industry-list-card:hover .industry-list-card__image img { transform: scale(1.025); }

.industry-list-card__copy {
    min-width: 0;
    align-self: stretch;
}

.industry-list-card h2 {
    position: relative;
    margin: 0;
    padding: 0 0 12px;
    overflow: hidden;
    border-bottom: 1px solid #d9d9d9;
    color: var(--industry-ink);
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.industry-list-card h2::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 64px;
    height: 3px;
    background: var(--industry-ink);
}

.industry-list-card:hover h2,
.industry-list-card:focus-within h2 { color: var(--industry-red); }

.industry-list-card:hover h2::after,
.industry-list-card:focus-within h2::after { background: var(--industry-red); }

.industry-list-card p {
    margin: 16px 0 0;
    display: -webkit-box;
    overflow: hidden;
    color: var(--industry-muted);
    font-size: 14px;
    line-height: 2;
    text-align: justify;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.industry-list-card__arrow {
    position: relative;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
}

.industry-list-card__arrow img {
    position: absolute;
    inset: 0;
    width: 44px;
    height: 44px;
    object-fit: contain;
    transition: transform 160ms ease;
}

.industry-list-card__arrow-active { opacity: 0; }

.industry-list-card:hover .industry-list-card__arrow-default,
.industry-list-card:focus-within .industry-list-card__arrow-default { opacity: 0; }

.industry-list-card:hover .industry-list-card__arrow-active,
.industry-list-card:focus-within .industry-list-card__arrow-active { opacity: 1; transform: translateX(3px); }

.industry-pagination {
    height: 44px;
    margin-top: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.industry-pagination > a,
.industry-pagination > span {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: #777;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    font-family: Arial, sans-serif;
    font-size: 15px;
    line-height: 1;
}

.industry-pagination > a:hover { color: var(--industry-red); border-color: var(--industry-red); }

.industry-pagination > .is-current {
    color: #fff;
    border-color: var(--industry-red);
    background: var(--industry-red);
}

.industry-pagination > .is-ellipsis { border-color: transparent; }
.industry-pagination > [aria-disabled="true"] { color: #aaa; }

.industry-pagination > .industry-pagination__arrow {
    border-color: transparent;
    background: #f1f1f1;
}

.industry-pagination__arrow img { width: 30px; height: 30px; object-fit: contain; }
.industry-pagination__arrow.is-disabled { opacity: .55; }

.industry-article {
    height: auto;
    padding-top: 48px;
    padding-bottom: 64px;
    display: flex;
    flex-direction: column;
}

.industry-article__header {
    padding: 0 0 30px;
    border-bottom: 1px solid #d8d8d8;
    text-align: center;
}

.industry-article__header h1 {
    margin: 0;
    color: var(--industry-ink);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.55;
}

.industry-article__body {
    margin-top: 32px;
    color: #383838;
    font-size: 14px;
    line-height: 2.05;
    text-align: justify;
}

.industry-article__body p { margin: 0 0 19px; }

.industry-article__body h2 {
    margin: 20px 0 18px;
    color: #333;
    font-size: 16px;
    font-weight: 650;
    line-height: 1.7;
}

.industry-article__body h3 {
    margin: 18px 0 14px;
    color: #333;
    font-size: 15px;
}

.industry-article__adjacent {
    margin-top: 32px;
    padding-top: 18px;
    display: grid;
    gap: 16px;
    border-top: 1px solid #d8d8d8;
    color: #3e3e3e;
    font-size: 14px;
    line-height: 1.7;
}

.industry-article__adjacent a:hover { color: var(--industry-red); }

.page-industry-list .site-footer,
.page-industry-detail .site-footer {
    position: relative;
    height: 412px;
    padding: 0;
    color: rgba(255, 255, 255, .82);
    background: #0d192a;
}

.page-industry-list .footer-grid.site-container,
.page-industry-list .footer-legal.site-container,
.page-industry-detail .footer-grid.site-container,
.page-industry-detail .footer-legal.site-container { width: min(1200px, calc(100% - 80px)); }

.page-industry-list .footer-grid,
.page-industry-detail .footer-grid { position: relative; height: 313px; display: block; }

.page-industry-list .footer-identity,
.page-industry-list .footer-benefits,
.page-industry-list .footer-qrs,
.page-industry-detail .footer-identity,
.page-industry-detail .footer-benefits,
.page-industry-detail .footer-qrs { position: absolute; top: 0; }

.page-industry-list .footer-identity,
.page-industry-detail .footer-identity { left: 0; width: 295px; display: block; }

.page-industry-list .footer-brand,
.page-industry-detail .footer-brand {
    position: absolute;
    top: 48px;
    left: 0;
    width: 178px;
    height: 54px;
    margin: 0;
}

.page-industry-list .footer-brand img,
.page-industry-detail .footer-brand img { width: 178px; height: 54px; max-width: none; object-fit: contain; }

.page-industry-list .footer-identity > a:not(.footer-brand),
.page-industry-detail .footer-identity > a:not(.footer-brand) {
    position: absolute;
    left: 61px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    line-height: 20px;
    white-space: nowrap;
}

.page-industry-list .footer-identity > a:nth-of-type(2),
.page-industry-detail .footer-identity > a:nth-of-type(2) { top: 127px; }
.page-industry-list .footer-identity > a:nth-of-type(3),
.page-industry-detail .footer-identity > a:nth-of-type(3) { top: 163px; }
.page-industry-list .footer-identity > a:nth-of-type(4),
.page-industry-detail .footer-identity > a:nth-of-type(4) { top: 199px; }

.page-industry-list .footer-identity b,
.page-industry-detail .footer-identity b { width: 20px; height: 20px; display: block; }
.page-industry-list .footer-identity b img,
.page-industry-detail .footer-identity b img { width: 20px; height: 20px; }

.page-industry-list .footer-benefits,
.page-industry-detail .footer-benefits { top: 56px; left: 405px; width: 304px; }

.page-industry-list .footer-benefits h2,
.page-industry-detail .footer-benefits h2 {
    height: 34px;
    margin: 0 0 24px;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
}

.page-industry-list .footer-benefits ul,
.page-industry-detail .footer-benefits ul {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 152px 136px;
    gap: 16px;
    list-style: none;
    font-size: 16px;
    line-height: 26px;
}

.page-industry-list .footer-benefits li,
.page-industry-detail .footer-benefits li {
    height: 26px;
    display: flex;
    align-items: center;
    gap: 4px;
    color: #fff;
    white-space: nowrap;
}

.page-industry-list .footer-benefits li span,
.page-industry-detail .footer-benefits li span {
    width: 20px;
    height: 20px;
    display: block;
    flex: 0 0 auto;
    overflow: hidden;
    color: transparent;
    background: url("/site/images/home/icon-check.png") center / 20px 20px no-repeat;
}

.page-industry-list .footer-qrs,
.page-industry-detail .footer-qrs {
    top: 56px;
    left: 820px;
    width: 340px;
    display: flex;
    justify-content: flex-start;
    gap: 40px;
}

.page-industry-list .footer-qrs figure,
.page-industry-detail .footer-qrs figure { width: 150px; margin: 0; text-align: center; }
.page-industry-list .footer-qrs img,
.page-industry-detail .footer-qrs img { width: 150px; height: 150px; }

.page-industry-list .footer-qrs figcaption,
.page-industry-detail .footer-qrs figcaption {
    height: 22px;
    margin-top: 16px;
    color: #fff;
    font-size: 16px;
    line-height: 22px;
}

.page-industry-list .footer-legal,
.page-industry-detail .footer-legal {
    height: 72px;
    margin: 0 auto;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, .2);
    text-align: center;
}

.page-industry-list .footer-legal p,
.page-industry-detail .footer-legal p { margin: 0; color: #fff; font-size: 16px; line-height: 22px; }

@media (max-width: 1000px) {
    .industry-list-main { height: auto; }
    .industry-list-container { padding-bottom: 80px; }
    .industry-list-card { grid-template-columns: 220px minmax(0, 1fr) 44px; }
    .industry-list-card__image { width: 220px; }
    .page-industry-list .site-footer,
    .page-industry-detail .site-footer { height: auto; padding: 48px 0 24px; }
    .page-industry-list .footer-grid.site-container,
    .page-industry-list .footer-legal.site-container,
    .page-industry-detail .footer-grid.site-container,
    .page-industry-detail .footer-legal.site-container { width: min(1200px, calc(100% - 48px)); }
    .page-industry-list .footer-grid,
    .page-industry-detail .footer-grid { height: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 42px; }
    .page-industry-list .footer-identity,
    .page-industry-list .footer-benefits,
    .page-industry-list .footer-qrs,
    .page-industry-list .footer-brand,
    .page-industry-list .footer-identity > a:not(.footer-brand),
    .page-industry-detail .footer-identity,
    .page-industry-detail .footer-benefits,
    .page-industry-detail .footer-qrs,
    .page-industry-detail .footer-brand,
    .page-industry-detail .footer-identity > a:not(.footer-brand) { position: static; }
    .page-industry-list .footer-identity,
    .page-industry-detail .footer-identity { display: grid; gap: 10px; }
    .page-industry-list .footer-qrs,
    .page-industry-detail .footer-qrs { width: auto; grid-column: 1 / -1; }
    .page-industry-list .footer-legal,
    .page-industry-detail .footer-legal { height: auto; margin-top: 40px; }
}

@media (max-width: 700px) {
    .industry-hero { height: 430px; }
    .industry-hero__content { padding-top: 116px; padding-left: 0; }
    .industry-hero h1 { font-size: 38px; }
    .industry-hero p { font-size: 21px; }
    .industry-hero i { width: 130px; height: 5px; margin-top: 30px; }
    .industry-list-container { width: min(100% - 32px, 540px); }
    .industry-list-grid { gap: 32px; }
    .industry-list-card { height: auto; grid-template-columns: 112px minmax(0, 1fr) 28px; gap: 12px; }
    .industry-list-card__image { width: 112px; height: 84px; }
    .industry-list-card p { -webkit-line-clamp: 2; }
    .industry-list-card__arrow,
    .industry-list-card__arrow img { width: 28px; height: 28px; }
    .industry-pagination { gap: 8px; }
    .industry-pagination > a,
    .industry-pagination > span { width: 36px; height: 36px; }
    .page-industry-list .footer-grid,
    .page-industry-detail .footer-grid { grid-template-columns: 1fr; }
    .page-industry-list .footer-qrs,
    .page-industry-detail .footer-qrs { grid-column: auto; }
}
