:root {
    --black: #050608;
    --ink: #14171b;
    --body: #5b646d;
    --muted: #8d969e;
    --line: #e2e5e8;
    --paper: #ffffff;
    --soft: #f4f5f6;
    --red: #d71920;
    --gold: #b78a42;
    --blue: #173f73;
    --shadow: 0 24px 70px rgba(7, 10, 14, 0.13);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: #fff;
    font-family: Arial, "Noto Sans KR", "Apple SD Gothic Neo", sans-serif;
    line-height: 1.6;
    letter-spacing: 0;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
video {
    display: block;
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
    letter-spacing: 0;
}

.wide-container {
    width: min(1500px, calc(100% - 80px));
    margin: 0 auto;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 80;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-solid,
.site-header.is-scrolled,
.site-header:hover {
    background: rgba(255, 255, 255, 0.96);
    border-color: var(--line);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(12px);
}

.header-inner {
    height: 92px;
    width: min(1760px, calc(100% - 60px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr) 220px;
    align-items: center;
    gap: 28px;
}

.brand {
    display: inline-grid;
    gap: 2px;
    justify-self: start;
    color: #fff;
    line-height: 1;
}

.brand-type,
.footer-logo span {
    font-size: 30px;
    font-weight: 900;
    letter-spacing: 0;
}

.brand small,
.footer-logo small {
    font-size: 12px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.72);
}

.site-header.is-solid .brand,
.site-header.is-scrolled .brand,
.site-header:hover .brand {
    color: var(--ink);
}

.site-header.is-solid .brand small,
.site-header.is-scrolled .brand small,
.site-header:hover .brand small {
    color: var(--muted);
}

.gnb {
    justify-self: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(24px, 4vw, 70px);
}

.gnb-item {
    height: 100%;
    display: flex;
    align-items: center;
}

.gnb-item > a {
    position: relative;
    color: #fff;
    font-size: 17px;
    font-weight: 800;
}

.gnb-item > a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -32px;
    height: 3px;
    transform: scaleX(0);
    transform-origin: center;
    background: var(--red);
    transition: transform 0.2s ease;
}

.gnb-item:hover > a::after,
.gnb-item.is-active > a::after {
    transform: scaleX(1);
}

.site-header.is-solid .gnb-item > a,
.site-header.is-scrolled .gnb-item > a,
.site-header:hover .gnb-item > a {
    color: var(--ink);
}

.mega-panel {
    position: absolute;
    top: 92px;
    left: 50%;
    width: min(1180px, calc(100vw - 80px));
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 32px;
    padding: 32px 36px;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 14px);
    border-top: 2px solid var(--red);
    background: #fff;
    box-shadow: var(--shadow);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.gnb-item:hover .mega-panel {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.mega-panel strong {
    font-size: 34px;
    line-height: 1.1;
}

.mega-panel ul {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mega-panel a {
    display: block;
    padding: 8px 0;
    color: var(--body);
    font-weight: 700;
}

.mega-panel a:hover {
    color: var(--red);
}

.header-tools {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 18px;
}

.tool-link {
    color: #fff;
    font-weight: 800;
    font-size: 14px;
}

.site-header.is-solid .tool-link,
.site-header.is-scrolled .tool-link,
.site-header:hover .tool-link {
    color: var(--ink);
}

.grid-toggle {
    width: 42px;
    height: 42px;
    display: grid;
    grid-template-columns: repeat(2, 6px);
    place-content: center;
    gap: 5px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.grid-toggle span {
    width: 6px;
    height: 6px;
    background: #fff;
    transition: background 0.2s ease;
}

.site-header.is-solid .grid-toggle span,
.site-header.is-scrolled .grid-toggle span,
.site-header:hover .grid-toggle span {
    background: var(--ink);
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    grid-template-rows: auto 1fr;
    padding: 26px clamp(22px, 5vw, 60px) 42px;
    color: #fff;
    background: rgba(5, 6, 8, 0.97);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-16px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-close {
    position: relative;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}

.mobile-close::before,
.mobile-close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 2px;
    background: #fff;
}

.mobile-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu nav {
    overflow-y: auto;
    margin-top: 44px;
}

.mobile-menu details {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 18px 0;
}

.mobile-menu summary {
    cursor: pointer;
    font-size: clamp(28px, 8vw, 54px);
    font-weight: 900;
    list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
    display: none;
}

.mobile-menu details a {
    display: inline-block;
    margin: 16px 18px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 700;
}

.main-visual {
    position: relative;
    min-height: 100svh;
    display: grid;
    align-items: center;
    overflow: hidden;
    color: #fff;
    background: var(--visual-image) center / cover;
}

.visual-video,
.visual-shade {
    position: absolute;
    inset: 0;
}

.visual-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-shade {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.16)),
        linear-gradient(0deg, rgba(0, 0, 0, 0.44), transparent 45%);
}

.visual-copy {
    position: relative;
    z-index: 1;
    width: min(1500px, calc(100% - 80px));
    margin: 0 auto;
    padding-top: 90px;
}

.visual-kicker {
    margin: 0 0 22px;
    font-size: clamp(16px, 1.3vw, 22px);
    font-weight: 800;
}

.visual-copy h1 {
    max-width: 940px;
    margin: 0;
    font-size: clamp(48px, 7vw, 108px);
    line-height: 1.04;
    letter-spacing: 0;
}

.visual-progress {
    width: min(440px, 70vw);
    height: 2px;
    margin-top: 42px;
    background: rgba(255, 255, 255, 0.32);
    overflow: hidden;
}

.visual-progress span {
    display: block;
    height: 100%;
    background: #fff;
    animation: progressbar 5s linear infinite;
}

@keyframes progressbar {
    from { width: 0; }
    to { width: 100%; }
}

.scroll-down {
    position: absolute;
    left: 50%;
    bottom: 34px;
    z-index: 2;
    width: 34px;
    height: 54px;
    transform: translateX(-50%);
    border: 2px solid rgba(255, 255, 255, 0.75);
    border-radius: 18px;
}

.scroll-down span {
    position: absolute;
    left: 50%;
    top: 11px;
    width: 5px;
    height: 5px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: #fff;
    animation: wheel 1.6s ease infinite;
}

@keyframes wheel {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 18px); opacity: 0; }
}

.intro-words {
    overflow: hidden;
    padding: clamp(70px, 10vw, 140px) 0;
    background: var(--black);
}

.intro-track {
    width: min(1500px, calc(100% - 80px));
    margin: 0 auto;
    color: #fff;
    font-size: clamp(48px, 8vw, 136px);
    line-height: 0.95;
    font-weight: 900;
    text-transform: uppercase;
}

.intro-track span {
    position: relative;
    display: inline-block;
    margin: 0 0.18em 0.14em 0;
    color: rgba(255, 255, 255, 0.13);
}

.intro-track i {
    position: absolute;
    inset: 0;
    width: 0;
    overflow: hidden;
    color: #fff;
    font-style: normal;
    transition: width 1.1s ease;
}

.intro-track.is-visible i,
.intro-words:hover .intro-track i {
    width: 100%;
}

.about-section,
.company-overview,
.greeting-section,
.history-section,
.network-section,
.cs-link-section,
.news-section,
.catalog-section,
.notice-section,
.faq-section,
.download-section,
.contact-section {
    padding: clamp(90px, 9vw, 150px) 0;
}

.about-grid,
.split-layout,
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(42px, 7vw, 110px);
    align-items: center;
}

.section-copy {
    max-width: 720px;
}

.section-copy.centered {
    max-width: 920px;
    margin: 0 auto 52px;
    text-align: center;
}

.line-title {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--red);
    font-size: 15px;
    font-weight: 900;
}

.line-title::before {
    content: "";
    width: 42px;
    height: 2px;
    background: currentColor;
}

.section-copy h2,
.make-copy h2,
.product-roll-item h3,
.sub-copy h1,
.section-top h2,
.form-title h2,
.contact-info h2 {
    margin: 18px 0 22px;
    font-size: clamp(38px, 5vw, 76px);
    line-height: 1.08;
    letter-spacing: 0;
}

.section-copy p,
.make-copy p,
.sub-copy p {
    margin: 0;
    color: var(--body);
    font-size: clamp(17px, 1.5vw, 22px);
}

.section-copy p + p {
    margin-top: 16px;
}

.more-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 34px;
    color: var(--red);
    font-weight: 900;
}

.more-btn i {
    width: 46px;
    height: 1px;
    background: currentColor;
}

.more-btn.dark {
    color: var(--ink);
}

.about-images {
    position: relative;
    min-height: 560px;
}

.about-images figure {
    position: absolute;
    overflow: hidden;
    margin: 0;
    box-shadow: var(--shadow);
}

.about-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.about-images:hover img {
    transform: scale(1.045);
}

.about-img-main {
    inset: 0 auto auto 0;
    width: 66%;
    height: 72%;
}

.about-img-sub {
    right: 0;
    bottom: 0;
    width: 52%;
    height: 56%;
}

.about-ci {
    position: absolute;
    right: 42%;
    top: 44%;
    width: 116px;
    height: 116px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--red);
    font-size: 34px;
    font-weight: 900;
}

.make-hero {
    position: relative;
    min-height: 92svh;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: #fff;
    background: var(--black);
}

.make-bg-grid {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    opacity: 0.28;
}

.make-bg-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
}

.make-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.make-copy {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 80px));
    margin: 0 auto;
    text-align: center;
}

.make-copy h2 {
    margin-bottom: 20px;
}

.make-copy h2 span {
    position: relative;
    display: inline-block;
    color: rgba(255, 255, 255, 0.22);
}

.make-copy h2 i {
    position: absolute;
    inset: 0;
    width: 0;
    overflow: hidden;
    color: #fff;
    font-style: normal;
    transition: width 1s ease;
}

.make-copy.is-visible h2 i {
    width: 100%;
}

.make-copy p {
    max-width: 820px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.74);
}

.product-roll-section {
    padding: clamp(90px, 10vw, 160px) 0;
    background: #f5f5f5;
}

.roll-shell {
    width: min(1500px, calc(100% - 80px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
    gap: clamp(42px, 7vw, 110px);
    align-items: center;
}

.product-roll-text {
    min-height: 520px;
    position: relative;
}

.product-roll-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(22px);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

.product-roll-item.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.product-roll-item h3 {
    font-size: clamp(42px, 5vw, 86px);
    position: relative;
}

.product-roll-item h3::after {
    content: attr(data-title);
    position: absolute;
    left: 0;
    bottom: -0.18em;
    z-index: -1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.12);
    font-size: 1.55em;
    white-space: nowrap;
}

.product-roll-item p {
    max-width: 640px;
    color: var(--body);
    font-size: 19px;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.tag-list li,
.tag-list a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 6px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--body);
    background: #fff;
    font-size: 14px;
    font-weight: 700;
}

.product-roll-visual {
    align-self: stretch;
}

.product-image-frame {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    background: #ddd;
    box-shadow: var(--shadow);
}

.product-image-frame img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 0.35s ease, transform 0.65s ease;
}

.product-image-frame img.is-active {
    opacity: 1;
    transform: scale(1);
}

.roll-control {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 28px;
}

.roll-control button {
    width: 48px;
    height: 48px;
    border: 1px solid #cfd3d7;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
}

.roll-control button::before {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    margin: 0 auto;
    border-top: 2px solid var(--ink);
    border-left: 2px solid var(--ink);
}

.roll-control [data-roll-prev]::before {
    transform: rotate(-45deg);
}

.roll-control [data-roll-next]::before {
    transform: rotate(135deg);
}

.roll-control span {
    font-weight: 900;
}

.network-section {
    background: #fff;
}

.network-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.network-card {
    background: #fff;
    box-shadow: 0 12px 38px rgba(0, 0, 0, 0.08);
}

.network-card figure {
    aspect-ratio: 1.38 / 1;
    margin: 0;
    overflow: hidden;
}

.network-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.network-card div {
    padding: 24px;
}

.network-card span,
.catalog-card small,
.notice-item em,
.download-card span,
.faq-item summary span {
    color: var(--red);
    font-size: 13px;
    font-weight: 900;
    font-style: normal;
}

.network-card h3,
.download-card h3 {
    margin: 8px 0 10px;
    font-size: 24px;
}

.network-card p,
.network-card small,
.download-card p,
.notice-item p,
.faq-item p {
    color: var(--body);
}

.cs-link-section {
    color: #fff;
    background:
        linear-gradient(90deg, rgba(5, 6, 8, 0.86), rgba(5, 6, 8, 0.52)),
        url("/assets/images/make-04.jpg") center / cover;
}

.cs-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 60px;
    align-items: center;
}

.cs-grid .section-copy p {
    color: rgba(255, 255, 255, 0.72);
}

.cs-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.cs-card {
    min-height: 180px;
    display: grid;
    align-content: end;
    gap: 8px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    transition: background 0.2s ease, transform 0.2s ease;
}

.cs-card:hover {
    transform: translateY(-4px);
    background: rgba(215, 25, 32, 0.9);
}

.cs-card strong {
    font-size: 24px;
}

.cs-card span {
    color: rgba(255, 255, 255, 0.72);
}

.cs-card.price {
    background: var(--red);
}

.section-top {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 42px;
}

.news-roll {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.news-card {
    display: grid;
    gap: 14px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}

.news-card figure {
    aspect-ratio: 1.42 / 1;
    margin: 0;
    overflow: hidden;
    background: #ddd;
}

.news-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-card:hover img {
    transform: scale(1.06);
}

.news-card span {
    color: var(--muted);
    font-size: 14px;
}

.news-card strong {
    font-size: 20px;
    line-height: 1.35;
}

.sub-visual {
    min-height: 520px;
    display: grid;
    align-items: end;
    padding: 180px 0 86px;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(5, 6, 8, 0.84), rgba(5, 6, 8, 0.34)),
        url("/assets/images/about-01.jpg") center / cover;
}

.product-sub {
    background:
        linear-gradient(90deg, rgba(5, 6, 8, 0.84), rgba(5, 6, 8, 0.34)),
        url("/assets/images/product-tray.jpg") center / cover;
}

.company-sub {
    background:
        linear-gradient(90deg, rgba(5, 6, 8, 0.84), rgba(5, 6, 8, 0.34)),
        url("/assets/images/about-02.jpg") center / cover;
}

.cs-sub {
    background:
        linear-gradient(90deg, rgba(5, 6, 8, 0.84), rgba(5, 6, 8, 0.34)),
        url("/assets/images/make-02.jpg") center / cover;
}

.contact-sub {
    background:
        linear-gradient(90deg, rgba(5, 6, 8, 0.84), rgba(5, 6, 8, 0.34)),
        url("/assets/images/network-01.jpg") center / cover;
}

.sub-copy {
    width: min(1500px, calc(100% - 80px));
    margin: 0 auto;
}

.sub-copy span {
    color: var(--red);
    font-weight: 900;
}

.sub-copy h1 {
    max-width: 900px;
}

.sub-copy p {
    max-width: 740px;
    color: rgba(255, 255, 255, 0.76);
}

.catalog-section,
.faq-section,
.contact-section {
    background: var(--soft);
}

.catalog-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 42px;
}

.catalog-filter button {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 10px 18px;
    background: #fff;
    color: var(--body);
    font-weight: 800;
    cursor: pointer;
}

.catalog-filter button.is-active,
.catalog-filter button:hover {
    color: #fff;
    border-color: var(--red);
    background: var(--red);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.catalog-card {
    background: #fff;
    box-shadow: 0 14px 40px rgba(5, 6, 8, 0.07);
}

.catalog-card a {
    display: block;
}

.catalog-card figure {
    position: relative;
    aspect-ratio: 1.18 / 1;
    margin: 0;
    overflow: hidden;
    background: #ddd;
}

.catalog-card figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.catalog-card:hover figure img {
    transform: scale(1.06);
}

.catalog-card figure span {
    position: absolute;
    left: 18px;
    top: 18px;
    color: #fff;
    font-size: 42px;
    font-weight: 900;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
}

.catalog-card div {
    padding: 24px;
}

.catalog-card h2 {
    min-height: 64px;
    margin: 8px 0 10px;
    font-size: 25px;
    line-height: 1.28;
}

.catalog-card p {
    color: var(--body);
}

.overview-table {
    padding: 30px;
    background: #fff;
    box-shadow: var(--shadow);
}

.overview-table dl,
.contact-info dl {
    margin: 0;
    display: grid;
    gap: 14px;
}

.overview-table div,
.contact-info dl div {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}

.overview-table dt,
.contact-info dt {
    color: var(--muted);
    font-weight: 900;
}

.overview-table dd,
.contact-info dd {
    margin: 0;
    color: var(--ink);
    overflow-wrap: anywhere;
}

.history-section {
    color: #fff;
    background: var(--black);
}

.history-section .section-copy p {
    color: rgba(255, 255, 255, 0.72);
}

.history-list {
    max-width: 1040px;
    margin: 56px auto 0;
    padding: 0;
    list-style: none;
}

.history-list li {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 28px;
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.history-list strong {
    color: var(--red);
    font-size: 38px;
    line-height: 1;
}

.history-list span {
    color: rgba(255, 255, 255, 0.82);
    font-size: 20px;
}

.notice-board {
    display: grid;
    gap: 12px;
}

.notice-item a {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr) 100px;
    gap: 22px;
    align-items: center;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
}

.notice-item span {
    color: var(--muted);
}

.notice-item strong {
    font-size: 20px;
}

.notice-item p {
    grid-column: 2 / 4;
    margin: 0;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    background: #fff;
    box-shadow: 0 12px 30px rgba(5, 6, 8, 0.06);
}

.faq-item summary {
    cursor: pointer;
    padding: 24px 28px;
    font-size: 20px;
    font-weight: 900;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary span {
    margin-right: 14px;
}

.faq-item p {
    margin: 0;
    padding: 0 28px 26px;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.download-card {
    min-height: 270px;
    padding: 32px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(5, 6, 8, 0.07);
}

.contact-layout {
    align-items: start;
}

.contact-info,
.contact-form {
    padding: clamp(28px, 4vw, 50px);
    background: #fff;
    box-shadow: var(--shadow);
}

.location-panel {
    min-height: 230px;
    display: grid;
    align-content: end;
    gap: 8px;
    margin-top: 32px;
    padding: 28px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(215, 25, 32, 0.88), rgba(23, 63, 115, 0.82)),
        url("/assets/images/network-01.jpg") center / cover;
}

.location-panel strong {
    font-size: 26px;
}

.contact-form {
    display: grid;
    gap: 18px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

label {
    display: grid;
    gap: 8px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 900;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid #ccd2d8;
    border-radius: 0;
    background: #fff;
    color: var(--ink);
    padding: 14px 15px;
    outline: none;
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(215, 25, 32, 0.1);
}

.submit-btn {
    min-height: 56px;
    border: 0;
    background: var(--red);
    color: #fff;
    font-weight: 900;
    cursor: pointer;
}

.alert {
    padding: 15px 18px;
    font-weight: 800;
}

.alert p {
    margin: 0;
}

.alert.success {
    color: #0f5d33;
    background: #e8f6ef;
}

.alert.error {
    color: #b42318;
    background: #fff0ee;
}

.site-footer {
    color: #d4d8dc;
    background: #111316;
}

.footer-menu {
    width: min(1500px, calc(100% - 80px));
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 28px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.72);
    font-weight: 800;
}

.footer-main {
    width: min(1500px, calc(100% - 80px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 48px;
    padding: 42px 0;
}

.footer-logo {
    display: grid;
    align-content: start;
    gap: 4px;
}

.footer-info p {
    margin: 0 0 8px;
    color: rgba(255, 255, 255, 0.66);
}

.footer-bottom {
    width: min(1500px, calc(100% - 80px));
    margin: 0 auto;
    padding: 0 0 30px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.48);
    font-size: 14px;
}

.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.72s ease, transform 0.72s ease;
}

.reveal-delay {
    transition-delay: 0.16s;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

[hidden] {
    display: none !important;
}

@media (max-width: 1180px) {
    .header-inner {
        grid-template-columns: 190px 1fr 110px;
    }

    .gnb {
        display: none;
    }

    .tool-link {
        display: none;
    }

    .catalog-grid,
    .network-grid,
    .news-roll {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .roll-shell,
    .cs-grid {
        grid-template-columns: 1fr;
    }

    .product-roll-text {
        min-height: auto;
    }
}

@media (max-width: 860px) {
    .wide-container,
    .visual-copy,
    .intro-track,
    .make-copy,
    .roll-shell,
    .sub-copy,
    .footer-menu,
    .footer-main,
    .footer-bottom {
        width: min(100% - 32px, 1500px);
    }

    .header-inner {
        width: min(100% - 32px, 1760px);
        height: 76px;
        grid-template-columns: 1fr auto;
    }

    .header-tools {
        grid-column: 2;
    }

    .brand-type,
    .footer-logo span {
        font-size: 24px;
    }

    .main-visual {
        min-height: 86svh;
    }

    .visual-copy h1 {
        font-size: clamp(42px, 13vw, 68px);
    }

    .about-grid,
    .split-layout,
    .contact-layout,
    .footer-main {
        grid-template-columns: 1fr;
    }

    .about-images {
        min-height: 430px;
    }

    .about-ci {
        right: 34%;
        width: 86px;
        height: 86px;
        font-size: 26px;
    }

    .make-bg-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .make-bg-grid img:nth-child(n+5) {
        display: none;
    }

    .product-image-frame {
        min-height: 430px;
    }

    .section-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .cs-cards,
    .download-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .overview-table div,
    .contact-info dl div,
    .history-list li,
    .notice-item a {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .notice-item p {
        grid-column: auto;
    }
}

@media (max-width: 560px) {
    .catalog-grid,
    .network-grid,
    .news-roll {
        grid-template-columns: 1fr;
    }

    .site-header {
        background: rgba(5, 6, 8, 0.72);
    }

    .site-header.is-solid,
    .site-header.is-scrolled,
    .site-header:hover {
        background: rgba(255, 255, 255, 0.96);
    }

    .sub-visual {
        min-height: 430px;
        padding: 136px 0 58px;
    }

    .section-copy h2,
    .make-copy h2,
    .sub-copy h1,
    .section-top h2,
    .form-title h2,
    .contact-info h2 {
        font-size: clamp(34px, 11vw, 48px);
    }

    .about-img-main {
        width: 78%;
        height: 68%;
    }

    .about-img-sub {
        width: 64%;
        height: 48%;
    }

    .mobile-menu summary {
        font-size: 34px;
    }

    .product-roll-item h3::after {
        display: none;
    }
}

/* Original-like main page sequence */
.home-page {
    --main: #1f4080;
    --white: #fff;
    --vh: 100svh;
}

.home-page.is-intro-lock {
    overflow: hidden;
}

.home-page #intro {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.home-page #intro .intro-tit-box {
    width: 100%;
    overflow: hidden;
    transform: translateY(100%);
    transition: transform 0.28s ease-in;
}

.home-page #intro.on .intro-tit-box {
    transform: translateY(0);
}

.home-page #intro .tit-box-in {
    width: min(92%, 1500px);
    margin: 0 auto;
    text-align: center;
    transition: transform 0.3s ease-in;
}

.home-page #intro.on .tit-box-in {
    transform: translateY(-100%);
    transition-delay: 1.85s;
}

.home-page #intro .tit-box-in span {
    position: relative;
    display: inline-block;
    margin: 0 6px 8px;
    color: #fff;
    -webkit-text-stroke: 1px var(--main);
    font-size: clamp(42px, 7vw, 96px);
    font-weight: 900;
    line-height: 1.08;
    text-transform: uppercase;
}

.home-page #intro .tit-box-in span i {
    position: absolute;
    inset: 0;
    display: block;
    width: 0;
    overflow: hidden;
    color: var(--main);
    font-style: normal;
    white-space: nowrap;
}

.home-page #intro.on .tit-box-in span i {
    width: 100%;
    transition: width 0.22s linear var(--delay);
}

.home-page.auto-scroll #intro {
    opacity: 0;
    visibility: hidden;
}

.home-page #visual {
    position: relative;
    width: 100%;
    height: var(--vh);
    overflow: hidden;
    background: #000;
    clip-path: inset(100% 0 0 0);
    transition: clip-path cubic-bezier(0.23, 1, 0.32, 1) 1750ms;
}

.home-page.auto-scroll #visual {
    clip-path: inset(0 0 0 0);
}

.home-page #visual .visual_in,
.home-page #visual .roll,
.home-page #visual .v_bg {
    position: relative;
    width: 100%;
    height: 100%;
}

.home-page #visual .roll {
    position: absolute;
    inset: 0;
}

.home-page #visual .v_bg {
    position: absolute;
    inset: 0;
    background: var(--visual-poster) center / cover no-repeat;
}

.home-page #visual .v_bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.7), rgba(0,0,0,.35), rgba(0,0,0,.08));
}

.home-page #visual .v_bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .72;
}

.home-page #visual .v_txt {
    position: absolute;
    left: 50%;
    bottom: 16%;
    z-index: 2;
    width: min(1590px, 90%);
    transform: translateX(-50%);
}

.home-page #visual .v_txt p,
.home-page #visual .v_txt h2 {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity .55s ease, transform .55s ease;
}

.home-page #visual .v_txt p {
    margin: 0 0 23px;
    color: #fff;
    font-size: clamp(20px, 2vw, 32px);
    font-weight: 800;
    line-height: 1.4;
}

.home-page #visual .v_txt h2 {
    max-width: 940px;
    margin: 0;
    color: #fff;
    font-size: clamp(48px, 6.2vw, 100px);
    font-weight: 900;
    line-height: 1.12;
    text-transform: uppercase;
    transition-delay: .25s;
}

.home-page.auto-scroll #visual .roll.action .v_txt p,
.home-page.auto-scroll #visual .roll.action .v_txt h2 {
    opacity: 1;
    transform: translateY(0);
}

.home-page #visual .progressbar {
    width: min(680px, 100%);
    height: 1px;
    margin-top: 70px;
    background: rgba(255,255,255,.3);
}

.home-page #visual .progressbar span {
    display: block;
    width: 0;
    height: 1px;
    background: #fff;
}

.home-page.auto-scroll #visual .progressbar span {
    animation: time_ani 49s linear infinite;
}

@keyframes time_ani {
    from { width: 0; }
    to { width: 100%; }
}

.home-page #visual .scroll_down {
    position: absolute;
    right: max(5%, calc((100% - 1590px) / 2));
    bottom: calc(16% + 70px);
    z-index: 5;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
}

.home-page #visual .scroll_down::before {
    content: "";
    width: 18px;
    height: 18px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    animation: main_scroll_down 1.4s ease-in-out infinite;
}

@keyframes main_scroll_down {
    0%, 100% { transform: translateY(0) rotate(45deg); opacity: 1; }
    50% { transform: translateY(6px) rotate(45deg); opacity: .45; }
}

.home-page .basic_in {
    width: min(1590px, 90%);
    margin: 0 auto;
}

.home-page .compad {
    padding: clamp(110px, 9vw, 180px) 0;
}

.home-page .line-tit {
    position: relative;
    display: inline-block;
    z-index: 1;
    margin-bottom: 15px;
    color: var(--main);
    font-size: clamp(16px, 1.1vw, 20px);
    font-weight: 900;
    text-transform: uppercase;
}

.home-page .line-tit::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -5px;
    z-index: -1;
    width: calc(100% + 10px);
    height: 60%;
    transform: translateY(-50%);
    border-radius: 5px;
    background: currentColor;
    opacity: .1;
}

.home-page .fs60 {
    color: var(--ink);
    font-size: clamp(42px, 4.3vw, 72px);
    font-weight: 300;
    line-height: 1.25;
}

.home-page .fs60 b {
    font-weight: 900;
}

.home-page .fs20 {
    color: var(--ink);
    font-size: clamp(17px, 1.35vw, 22px);
    line-height: 1.7;
}

.home-page #about {
    overflow: hidden;
    background: #fff;
}

.home-page #about .about_in {
    display: flex;
    align-items: center;
    width: 100%;
}

.home-page #about .tBox {
    width: 50%;
    padding-left: max(5%, calc((100% - 1590px) / 2));
    padding-right: 3%;
    padding-top: 184px;
    box-sizing: border-box;
}

.home-page #about .tBox .line-tit-wrap,
.home-page #about .tBox .fs60,
.home-page #about .tBox .fs20,
.home-page #about .tBox .btn-wrap {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-30%);
}

.home-page #about .tBox .fs60 {
    margin: 23px 0 20px;
}

.home-page #about .tBox .more-btn {
    margin-top: 40px;
}

.home-page #about .imgBox {
    position: relative;
    width: 50%;
    max-width: 960px;
}

.home-page #about .imgBox .ci {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
}

.home-page #about .imgBox .ci a {
    width: clamp(132px, 13vw, 250px);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--main);
    font-size: clamp(32px, 3vw, 56px);
    font-weight: 900;
}

.home-page #about .imgBox .ci::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 50%;
    background: var(--main);
}

.home-page #about .imgBox .ci:hover::after {
    animation: dots 1s ease-in-out infinite;
}

@keyframes dots {
    0% { transform: scale(1); opacity: .35; }
    100% { transform: scale(1.26); opacity: 0; }
}

.home-page #about .imgBox ul {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.home-page #about .imgBox ul li {
    position: relative;
    width: calc((100% - 30px) / 2);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
}

.home-page #about .imgBox ul li.one {
    margin-top: 100px;
    border-radius: 120px 0 0 0;
    transform: translateY(20%);
}

.home-page #about .imgBox ul li.two {
    border-radius: 0 0 120px 0;
    transform: translateY(-20%);
}

.home-page #about .imgBox ul li .cover {
    position: absolute;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: var(--main);
}

.home-page #about .imgBox ul li.one .cover {
    bottom: 0;
}

.home-page #about .imgBox ul li.two .cover {
    top: 0;
}

.home-page #about .imgBox ul li img {
    width: 100%;
    height: auto;
    transform: scale(1.5);
}

.home-page .make-all-wrap {
    position: relative;
    height: calc(var(--vh) * 3);
}

.home-page #make {
    position: sticky;
    top: 0;
    left: 0;
    height: var(--vh);
    display: flex;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
    overflow: hidden;
    background: #fff;
}

.home-page #make .img_wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.home-page #make .img_list {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    max-width: 1590px;
    height: 100%;
    margin: 0;
    padding: 0;
    transform: translateX(-50%);
    list-style: none;
}

.home-page #make .img_list li {
    position: absolute;
    width: clamp(150px, 17vw, 290px);
    opacity: 0;
}

.home-page #make .img_list li span {
    display: block;
    overflow: hidden;
    border-radius: 24px;
}

.home-page #make .img_list li img {
    width: 100%;
    transform: scale(1.5);
}

.home-page #make .tBox {
    position: relative;
    z-index: 10;
    text-align: center;
}

.home-page #make .tBox .fs60 {
    margin: 0;
    font-weight: 900;
}

.home-page #make .tBox .fs60 span {
    position: relative;
    display: inline-block;
    color: #e9e9e9;
}

.home-page #make .tBox .fs60 span i {
    position: absolute;
    inset: 0;
    display: block;
    width: 0;
    overflow: hidden;
    color: var(--black);
    font-style: normal;
    white-space: nowrap;
}

.home-page #pin-wrap {
    position: relative;
    z-index: 10;
    height: calc(var(--vh) * 2);
    margin-top: calc(var(--vh) * -2.5);
    opacity: 0;
    visibility: hidden;
}

.home-page #pin-wrap .all_bg {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 11;
    width: 100%;
    height: var(--vh);
}

.home-page #pin-wrap .all_bg .bg_in {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(90deg, rgba(31, 64, 128, .94), rgba(15, 32, 64, .85)),
        url("/assets/images/make-04.jpg") center / cover;
}

.home-page #make-roll-wrap {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 90;
    height: var(--vh);
    display: flex;
    overflow: hidden;
    box-sizing: border-box;
    margin-top: calc(var(--vh) * -1);
}

.home-page #make-roll-wrap .tBox-wrap {
    position: relative;
    z-index: 2;
    width: 50%;
    height: 100%;
    padding-left: max(5%, calc((100% - 1590px) / 2));
    padding-right: 5%;
    padding-bottom: 100px;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-30%);
}

.home-page #make-roll-wrap .make-tit-roll {
    position: relative;
    width: 100%;
    height: 100%;
    padding-bottom: 162px;
}

.home-page #make-roll-wrap .make-tit-roll .roll {
    position: absolute;
    inset: 0;
    display: flex;
    align-content: flex-end;
    flex-wrap: wrap;
    opacity: 0;
    visibility: hidden;
    transform: translateY(22px);
    transition: opacity .35s ease, transform .35s ease, visibility .35s ease;
}

.home-page #make-roll-wrap .make-tit-roll .roll.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.home-page #make-roll-wrap .make-tit-roll .roll .line-tit {
    position: absolute;
    top: 16vh;
    left: 0;
    color: #fff;
}

.home-page #make-roll-wrap .make-tit-roll .roll .fs50 {
    width: 100%;
    margin: 0 0 15px;
    color: #fff;
    font-size: clamp(34px, 3.2vw, 56px);
    font-weight: 700;
    line-height: 1.2;
}

.home-page #make-roll-wrap .make-tit-roll .roll .stxt {
    width: 100%;
    margin: 0;
    color: rgba(255,255,255,.72);
    font-size: 18px;
    line-height: 1.78;
}

.home-page #make-roll-wrap .make-tit-roll .roll .tag-list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 38px 0 0;
    padding: 0;
    list-style: none;
}

.home-page #make-roll-wrap .tag-list li,
.home-page #make-roll-wrap .tag-list a {
    display: block;
}

.home-page #make-roll-wrap .tag-list a {
    padding: 9px 20px;
    border: 0;
    border-radius: 50px;
    color: #fff;
    background: rgba(255,255,255,.1);
    font-size: 15px;
}

.home-page #make-roll-wrap .tag-list a:hover {
    color: var(--main);
    background: #fff;
}

.home-page #make-roll-wrap .make-img-wrap {
    position: relative;
    z-index: 2;
    width: 50%;
    height: 100%;
    padding-right: max(5%, calc((100% - 1590px) / 2));
    padding-bottom: 100px;
    box-sizing: border-box;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateX(30%);
}

.home-page #make-roll-wrap .make-img-roll {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.home-page #make-roll-wrap .make-img-roll li {
    position: absolute;
    inset: 0;
    height: 100%;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    border-radius: 0 0 30px 30px;
    transform: scale(.96);
    transition: opacity .35s ease, transform .35s ease, visibility .35s ease;
}

.home-page #make-roll-wrap .make-img-roll li.is-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.home-page #make-roll-wrap .make-img-roll a,
.home-page #make-roll-wrap .make-img-roll img {
    width: 100%;
    height: 100%;
    display: block;
}

.home-page #make-roll-wrap .make-img-roll img {
    object-fit: cover;
    transition: transform .25s ease;
}

.home-page #make-roll-wrap .make-img-roll li:hover img {
    transform: scale(1.14);
}

.home-page #make-roll-wrap .slick-dots {
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 4;
    width: min(1590px, 90%);
    display: flex;
    flex-wrap: wrap;
    gap: 0 20px;
    margin: 0;
    padding: 37px 90px 37px 0;
    list-style: none;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
}

.home-page #make-roll-wrap .slick-dots button {
    border: 0;
    background: transparent;
    padding: 0;
    color: rgba(255,255,255,.55);
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
}

.home-page #make-roll-wrap .slick-dots li.is-active button {
    color: #fff;
    text-decoration: underline;
}

.home-page #make-roll-wrap .slick-page {
    position: absolute;
    right: max(5%, calc((100% - 1590px) / 2));
    bottom: 35px;
    z-index: 5;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
}

.home-page #make-roll-wrap .slick-page li {
    color: rgba(255,255,255,.55);
    font-size: 16px;
    font-weight: 800;
}

.home-page #make-roll-wrap .slick-page .cur {
    color: #fff;
    font-size: 30px;
    line-height: 1;
}

.home-page #make-roll-wrap .roll-arrows {
    position: absolute;
    left: max(5%, calc((100% - 1590px) / 2));
    bottom: 66px;
    z-index: 5;
    display: flex;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
}

.home-page #make-roll-wrap .roll-arrows button {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    cursor: pointer;
}

.home-page #make-roll-wrap .roll-arrows button::before {
    content: "";
    display: block;
    width: 11px;
    height: 11px;
    margin: 0 auto;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
}

.home-page #make-roll-wrap [data-roll-prev]::before {
    transform: rotate(-45deg);
}

.home-page #make-roll-wrap [data-roll-next]::before {
    transform: rotate(135deg);
}

.home-page #network {
    position: relative;
    min-height: var(--vh);
    overflow: hidden;
    padding: 150px 0;
    color: #fff;
    box-sizing: border-box;
}

.home-page #network .network-bg {
    position: absolute;
    inset: 0 auto 0 0;
    width: 0;
    overflow: hidden;
    background: #000;
    transition: width .7s ease;
}

.home-page #network .network-bg-in {
    width: 100vw;
    height: 100%;
    opacity: .72;
    background:
        linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.38)),
        url("/assets/images/make-01.jpg") center / cover;
}

.home-page #network.action .network-bg {
    width: 100%;
}

.home-page #network .basic_in {
    position: relative;
    z-index: 2;
    min-height: calc(var(--vh) - 300px);
    display: flex;
    align-content: space-between;
    flex-wrap: wrap;
}

.home-page #network .tBox {
    width: 100%;
}

.home-page #network .line-tit,
.home-page #network .fs25,
.home-page #network .fs45 {
    color: #fff;
}

.home-page #network .line-tit::after {
    background: #fff;
}

.home-page #network .fs25 {
    margin: 0 0 12px;
    font-size: clamp(19px, 1.7vw, 28px);
    font-weight: 400;
    line-height: 1.52;
}

.home-page #network .fs45 {
    margin: 0;
    font-size: clamp(34px, 3.4vw, 54px);
    line-height: 1.34;
}

.home-page #network .network-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.home-page #network .network-list dl {
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(50%);
}

.home-page #network .network-list dl a {
    display: flex;
    min-height: 218px;
    padding: 20px;
    border-radius: 24px;
    background: rgba(31, 64, 128, .8);
    backdrop-filter: blur(4px);
    transition: background .25s ease;
}

.home-page #network .network-list dl:hover a {
    background: rgba(215, 25, 32, .88);
}

.home-page #network .network-list dt {
    width: 150px;
    aspect-ratio: 1;
    flex: 0 0 auto;
    margin: 0;
    overflow: hidden;
    border-radius: 10px;
}

.home-page #network .network-list dt img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.home-page #network .network-list dl:hover img {
    transform: scale(1.14);
}

.home-page #network .network-list dd {
    position: relative;
    min-width: 0;
    margin: 0;
    padding: 12px 0 0 22px;
}

.home-page #network .network-list .fs22 {
    margin: 0 0 6px;
    color: #fff;
    font-size: 21px;
}

.home-page #network .network-list .fs16 {
    margin: 0;
    color: rgba(255,255,255,.72);
    font-size: 15px;
    line-height: 1.65;
}

.home-page #network .network-list .arr {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
}

.home-page #network .network-list .arr::before {
    content: "";
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--main);
    border-right: 2px solid var(--main);
    transform: rotate(45deg);
}

@media (max-width: 1180px) {
    .home-page #about .about_in,
    .home-page #make-roll-wrap {
        display: grid;
        grid-template-columns: 1fr;
    }

    .home-page #about .tBox,
    .home-page #about .imgBox,
    .home-page #make-roll-wrap .tBox-wrap,
    .home-page #make-roll-wrap .make-img-wrap {
        width: 100%;
        max-width: none;
        padding-left: 5%;
        padding-right: 5%;
    }

    .home-page #make-roll-wrap .tBox-wrap {
        height: 52vh;
        padding-bottom: 30px;
    }

    .home-page #make-roll-wrap .make-img-wrap {
        height: 48vh;
        padding-bottom: 88px;
    }

    .home-page #network .network-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .home-page #visual .v_txt {
        bottom: 14%;
    }

    .home-page #visual .scroll_down {
        right: 5%;
        bottom: 8%;
    }

    .home-page #about .tBox {
        padding-top: 90px;
    }

    .home-page #about .imgBox ul {
        gap: 16px;
    }

    .home-page #about .imgBox ul li.one {
        margin-top: 54px;
        border-radius: 70px 0 0 0;
    }

    .home-page #about .imgBox ul li.two {
        border-radius: 0 0 70px 0;
    }

    .home-page #make .img_list li {
        width: clamp(112px, 34vw, 180px);
    }

    .home-page #make .tBox .fs20 br,
    .home-page #network br {
        display: none;
    }

    .home-page #pin-wrap {
        height: auto;
        margin-top: 0;
        opacity: 1;
        visibility: visible;
    }

    .home-page #pin-wrap .all_bg,
    .home-page #make-roll-wrap {
        position: relative;
    }

    .home-page #pin-wrap .all_bg {
        height: 0;
    }

    .home-page #make-roll-wrap {
        height: auto;
        min-height: 920px;
        margin-top: 0;
        background:
            linear-gradient(90deg, rgba(31, 64, 128, .94), rgba(15, 32, 64, .86)),
            url("/assets/images/make-04.jpg") center / cover;
    }

    .home-page #make-roll-wrap .tBox-wrap,
    .home-page #make-roll-wrap .make-img-wrap,
    .home-page #make-roll-wrap .slick-dots,
    .home-page #make-roll-wrap .slick-page,
    .home-page #make-roll-wrap .roll-arrows {
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .home-page #make-roll-wrap .make-tit-roll {
        min-height: 430px;
        padding-bottom: 80px;
    }

    .home-page #make-roll-wrap .make-tit-roll .roll .line-tit {
        top: 60px;
    }

    .home-page #make-roll-wrap .make-img-wrap {
        height: 390px;
    }

    .home-page #make-roll-wrap .slick-dots {
        position: relative;
        left: auto;
        width: 90%;
        transform: none;
        padding: 20px 0 110px;
        margin: 0 auto;
    }

    .home-page #make-roll-wrap .slick-page {
        right: 5%;
    }

    .home-page #network {
        padding: 90px 0;
    }

    .home-page #network .network-bg {
        width: 100%;
    }

    .home-page #network .network-list {
        grid-template-columns: 1fr;
    }

    .home-page #network .network-list dl {
        opacity: 1;
        visibility: visible;
        transform: none;
    }
}

@media (max-width: 480px) {
    .home-page #intro .tit-box-in span {
        font-size: 36px;
    }

    .home-page #visual .v_txt h2 {
        font-size: 42px;
    }

    .home-page #visual .progressbar {
        margin-top: 42px;
    }

    .home-page #about .imgBox .ci a {
        width: 96px;
    }

    .home-page #network .network-list dl a {
        display: grid;
    }

    .home-page #network .network-list dt {
        width: 100%;
        aspect-ratio: 1.6 / 1;
    }

    .home-page #network .network-list dd {
        padding: 18px 0 0;
    }
}
