@charset "UTF-8";
/* CSS Document */
@import url("https://fonts.cdnfonts.com/css/signpainter");
html {
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
}
body,
h1 {
    margin: 0;
}
* {
    box-sizing: border-box;
}
a {
    text-decoration: none;
}
main {
}
button {
    margin: 0;
    padding: 0;
    background-color: unset;
    border: none;
}
ul {
    padding: 0;
    list-style: none;
}
.entry-header {
    display: none;
}
.oc {
    overflow: clip;
}
.infomation-footer-secone {
    display: flex;
    align-items: center;
}
.fadeup-item {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

/* 表示時に付与 */
.fadeup-item.is-show {
    opacity: 1;
    transform: translateY(0);
}

.fadein-item {
    opacity: 0;
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.fadein-item.is-show {
    opacity: 1;
}
.f-tex {
    font-family: "SignPainter", sans-serif;
    font-size: 28px !important;
}
header {
    width: 100%;
    height: 80px; /* 高さはロゴに応じて調整 */
    z-index: 500;
    position: relative;
}
.header-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 80px;
    padding-right: 40px;
    column-gap: 30px;
}
.header-menu a {
    position: relative;
    z-index: 600;
}
.svg-b {
    fill: #000;
    transition: 0.3s;
}
.svg-f {
    fill: #fff;
    transition: 0.3s;
}
.svg-b:hover {
    fill: #5fcec8;
}
.svg-f:hover {
    fill: #000;
}
.header-menu svg {
    width: 25px;
    padding-top: 5px;
}
#menu-logo svg,
#menu-logo img {
    width: 180px;
}
.drawer-logo {
    filter: brightness(0) invert(1);
}
.header-logo {
    width: 130px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 999;
}
.header-sns {
    display: flex;
    align-items: center;
    column-gap: 30px;
    padding-right: 40px;
}
#sp-hamburger {
    position: fixed;
}
.sp-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s;
}
.sp-nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* ── Drawer ── */
.sp-nav-half {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 90vw;
    height: 100vh;
    height: 100dvh;
    background-image: linear-gradient(
        150deg,
        rgba(136, 218, 213, 1),
        rgba(95, 206, 200, 1)
    );
    z-index: 1001;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition:
        transform 0.45s cubic-bezier(0.23, 1, 0.32, 1),
        opacity 0.35s;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.sp-nav-half.active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

/* Drawer header */
.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 32px 20px;
    flex-shrink: 0;
}
#menu-logo {
    width: 140px;
}
.sp-nav-half .close-btn {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition:
        border-color 0.2s,
        background 0.2s;
}
.sp-nav-half .close-btn:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.12);
}

/* Drawer body */
.drawer-body {
    flex: 1;
    padding: 8px 24px 24px;
    overflow-y: auto;
}
.drawer-section {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.drawer-section:last-child {
    border-bottom: none;
}
.drawer-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 14px;
}
.drawer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.drawer-links li a {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s;
}
.drawer-links li a:hover {
    background: rgba(255, 255, 255, 0.12);
}
.drawer-link-en {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.03em;
}
.drawer-link-ja {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.65);
}

/* Drawer footer */
.drawer-footer {
    flex-shrink: 0;
    padding: 20px 32px 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.drawer-sns {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    text-decoration: none;
    transition: color 0.2s;
    letter-spacing: 0.04em;
}
.drawer-sns:hover {
    color: #fff;
}
.drawer-copy {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    letter-spacing: 0.04em;
}
.icon {
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
}
.icon span {
    display: block;
    width: 100%;
    height: 4px;
    background: #333;
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.4s;
    transform-origin: right center; /* 左端を基準に縮む */
}
.icon:hover span:nth-child(2) {
    transform: scaleX(0.75);
} /* 75% に */
.icon:hover span:nth-child(3) {
    transform: scaleX(0.5);
} /* 50% に */
@media (prefers-reduced-motion: reduce) {
    .icon span {
        transition: none;
    }
}
/* sub-menu (legacy, removed) */
footer {
    background-image: linear-gradient(
        150deg,
        rgba(136, 218, 213, 1),
        rgba(95, 206, 200, 1)
    );
}
/* ── Footer ── */
#site-footer {
    background-image: linear-gradient(
        150deg,
        rgba(136, 218, 213, 1),
        rgba(95, 206, 200, 1)
    );
    color: #fff;
}
.ft-main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 40px 0;
}
.ft-grid {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.ft-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.ft-logo-link {
    display: inline-block;
}
.ft-logo {
    width: 160px;
    display: block;
}
.ft-tagline {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.08em;
}
.ft-sns {
    display: flex;
    gap: 12px;
}
.ft-sns a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition:
        border-color 0.3s,
        background 0.3s;
}
.ft-sns a:hover {
    border-color: #5fa79d;
    background: rgba(95, 167, 157, 0.1);
}
.ft-sns svg {
    width: 18px;
    height: 18px;
}
.ft-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.ft-nav-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin: 0 0 16px;
}
.ft-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ft-nav a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;
    letter-spacing: 0.04em;
}
.ft-nav a:hover {
    color: #5fa79d;
}

/* Payment */
.ft-payment {
    padding: 32px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}
.ft-payment-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0 0 16px;
}
.ft-payment-methods {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.ft-payment-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}
.ft-payment-item svg {
    color: rgba(255, 255, 255, 0.6);
}
.ft-payment-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
}
.ft-payment-brands {
    display: flex;
    gap: 10px;
    width: 100%;
    justify-content: center;
}
.ft-payment-brands span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    padding: 3px 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    letter-spacing: 0.04em;
}
.ft-payment-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    margin: 12px 0 0;
    letter-spacing: 0.04em;
}

/* Group Brands */
.ft-group {
    padding: 32px 0;
    text-align: center;
}
.ft-group-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin: 0 0 20px;
}
.ft-group-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
.ft-group-link {
    display: inline-block;
    opacity: 0.5;
    transition: opacity 0.2s;
}
.ft-group-link:hover {
    opacity: 0.85;
}
.ft-group-logo {
    height: 28px;
    width: auto;
}
.ft-group-logo--team {
    filter: brightness(0) invert(1);
}
.ft-group-logo--scar {
    filter: brightness(0) invert(1);
}

/* Bottom */
.ft-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.ft-address {
    font-size: 11px;
    margin: 0;
}
.ft-copy {
    font-size: 11px;
    margin: 0;
}

@media (max-width: 768px) {
    .ft-main {
        padding: 40px 24px 0;
    }
    .ft-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .ft-brand {
        align-items: center;
        text-align: center;
    }
    .ft-sns {
        justify-content: center;
    }
    .ft-nav {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    .ft-nav-col:last-child {
        grid-column: 1 / -1;
    }
    .ft-bottom {
        padding: 16px 24px;
        flex-direction: column;
        text-align: center;
    }
}

@keyframes infinity-scroll-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}
.scroll-infinity__wrap {
    display: flex;
    overflow: hidden;
    column-gap: 5px;
}
.scroll-infinity__list {
    display: flex;
    list-style: none;
    padding: 0;
    column-gap: 5px;
}
.scroll-infinity__list--left {
    animation: infinity-scroll-left 80s infinite linear 0.5s both;
}
.scroll-infinity__item {
    width: 800px;
    height: 550px;
    position: relative;
}
.scroll-infinity__item > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.carselects {
    display: flex;
    justify-content: space-between;
}
.carselect-wrap {
    width: 49.5%;
    padding: 20px;
    border-radius: 16px;
    border: solid 1px #000;
    position: relative;
}
.carselect-wrap::before,
.carselect-wrap::after {
    content: "";
    display: block;
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    margin: auto;
    transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
    opacity: 0;
    border-radius: 15px;
}

.carselect-wrap::before {
    background-image: linear-gradient(
        150deg,
        rgba(136, 218, 213, 1),
        rgba(95, 206, 200, 1)
    );
    width: 100%;
    height: 100%;
}
.carselect-wrap::after {
    color: #fff;
    content: "For HIACE";
    font-weight: lighter;
    font-size: 36px;
    font-family: "SignPainter", sans-serif;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    bottom: 0;
    right: 0;
    letter-spacing: 0.8px;
}
#f-craphts::after {
    content: "For JIMNY";
}

.carselect-wrap:hover {
    border-color: #a7a7a7;
}
.carselect-wrap:hover::before,
.carselect-wrap:hover::after {
    opacity: 1;
}
.carselect-item {
    width: 156px;
    margin: auto;
}
@media screen and (max-width: 1024px) {
    .design-tab-list {
        display: flex;
        margin-bottom: 0;
    }
    .option-section {
        width: 100%;
    }
    .design-tab-list {
        width: 100%;
        list-style: none;
        font-size: 16px;
    }
    .design-tab-list-item {
        width: 25%;
        font-size: 14px;
    }
}
@media screen and (max-width: 767px) {
    .design-tab-list {
        width: 100%;
        list-style: none;
        font-size: 10px;
    }
    .design-tab-list-item {
        font-size: 12px;
        padding: 0 5px;
    }
    .option-name {
        font-size: 10px;
        padding: 5px;
    }
    #option-box {
        height: 100%;
    }
    .option_section_flex {
        display: block;
    }
    .option_left {
        margin-right: 0;
        width: 100%;
        border: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .option_left_icon {
        width: 110px;
    }
    .bodytype {
        display: flex;
        column-gap: 30px;
        margin-bottom: 10px;
    }
    .type-btn {
        width: 130px;
    }
}
img {
    width: 100%;
}
#myCanvas {
    max-width: 980px;
    width: 100%;
    min-width: 600px;
    height: auto; /* ← レスポンシブ */
    display: block;
    margin: auto;
    /* ★推奨：希望の縦横比を指定 */
    /* 追加 ↓ */
    transform-origin: center center; /* 拡大は中央基点 */
    transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
#myCanvas.scaled {
    /* ← クリック時に付くクラス */
    transform: scale(1.3); /* 1.3 倍 */
}
.pc {
    display: block;
}
.sp {
    display: none;
}
.sp-flexs {
    display: block;
}
@media screen and (max-width: 899px) {
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
    header {
        height: 90px; /* 高さはロゴに応じて調整 */
    }
    main {
    }
    .header-menu {
        height: 90px;
        padding: 0 20px;
        justify-content: space-between;
    }
    .hero {
        height: 459.18px !important;
    }
    .header-sns {
        column-gap: 20px;
    }
    .header-menu img {
        width: 25px;
        padding-top: 5px;
    }
    .header-logo {
        width: 130px;
    }
}
.section-inner {
    max-width: 1400px;
    margin: auto;
    padding: 0 20px;
    position: relative;
}
.img-center {
    text-align: center;
}
.carselect-item .btn {
    width: 80% !important;
    margin: auto;
}
.sec1ttl {
    font-size: 36px;
    text-align: center;
}
.sec1 {
    margin-bottom: 120px;
}
.sec1img {
    margin: 145px auto 90px;
    max-width: 790px;
}
.main-sent,
.second-sent {
    text-align: center;
    line-height: 2.3em;
    font-weight: bold;
    margin: 0;
}
.ex-tex {
    font-weight: lighter;
    font-size: 12px;
}
.for-sim {
    background-image: linear-gradient(
        150deg,
        rgba(136, 218, 213, 1),
        rgba(95, 206, 200, 1)
    );
    padding: 100px 0;
    position: relative;
}
.forsim-box {
    background-color: #fff;
}
.forsim-ttl {
    margin: 0;
    padding: 40px 40px 10px;
    font-size: 36px;
}
.forsim-flex {
    display: flex;
    padding: 0 40px 40px;
    gap: 30px;
    justify-content: space-between;
    position: relative;
}
.forsim-text {
    width: 360px;
    line-height: 2.3em;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 2;
}
.forsim-text p {
    text-shadow: 0 0 15px #ffffff;
}
#forsim-img {
    position: absolute;
    width: 90%;
    top: -15%;
    max-width: 880px;
    min-width: 500px;
    right: 0;
}
#forsim-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: none;
}

#forsim-img img:first-child {
    display: block;
}
/* ulタグ */
.scroll-list {
    display: flex;
    list-style: none;
    padding-inline: 0;
    margin-inline: 0;
    gap: 0;
    overflow: hidden;
    position: absolute;
    top: -65px;
}

/* liタグ */
.scroll-list li {
    color: #000;
    font-size: 4em;
    font-weight: bold;
    white-space: nowrap;
    padding: 0 1em 0 0;
    margin: 0;
    animation: marquee-left 25s linear infinite;
}
.scroll-list-2 {
    display: flex;
    list-style: none;
    padding-inline: 0;
    margin-inline: 0;
    gap: 0;
    overflow: hidden;
}

/* liタグ */
.scroll-list-inner {
    color: #000;
    font-size: 22px;
    font-weight: bold;
    white-space: nowrap;
    padding: 0 1em 0 0;
    margin: 0;
    animation: marquee-left 120s linear infinite;
    display: flex;
    gap: 10px;
}
/* アニメーション */
@keyframes marquee-left {
    100% {
        transform: translateX(-100%);
    }
}
.btn,
a.btn,
button.btn {
    width: 100%;
    height: 50px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: 0.1em;
    color: #fff;
    background-color: #000;
    border-radius: 10px;
    transition: 0.4s;
}
.btn:hover,
a.btn:hover,
button.btn:hover {
    opacity: 0.6;
}
.section3-underimg {
    max-width: 1290px;
    margin: auto;
    padding-bottom: 240px;
}

.sec4img {
    width: 340px;
    margin: 60px 0;
}
.sec4box {
    padding: 20px;
    border-radius: 40px;
    margin: 0 auto 100px;
}
.sec4boxttl {
    padding: 16px;
    border-radius: 50px;
    margin-bottom: 60px;
}
.sec4boxttl img {
    height: 20px;
    width: auto;
}
.b1 {
    background-image: linear-gradient(
        150deg,
        rgba(1, 233, 189, 1) 10%,
        rgba(0, 124, 222, 1) 90%
    );
}
.b2 {
    background-image: linear-gradient(
        150deg,
        rgba(253, 83, 146, 1),
        rgba(248, 111, 100, 1)
    );
}
.b3 {
    background-image: linear-gradient(
        150deg,
        rgba(9, 187, 254, 1),
        rgba(90, 66, 236, 1)
    );
}
.shadows {
    filter: drop-shadow(0px 10px 15px rgba(0, 0, 0, 0.4));
}
.shadows2 {
    filter: drop-shadow(0px 10px 5px rgba(0, 0, 0, 0.4));
}
.sec4box1 {
    display: flex;
    justify-content: center;
    column-gap: 65px;
    margin-bottom: 60px;
}
.info-link {
    background-repeat: no-repeat;
    background-size: cover;
    height: 250px;
}
.info-link::before {
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #0000006e;
}
#info1 {
    background-image: url("../img/front/AdobeStock_116493525.webp");
}
#info2 {
    background-image: url("../img/front/lettering.png");
}
#info3 {
    background-image: url("../img/front/original.jpg");
}
#info4 {
    background-image: url("../img/front/l4.webp");
}
.zoom-box {
    display: inline-block;
    overflow: hidden;
    position: relative;
    width: 100%;
}
.zoom-box p {
    font-size: 20px;
    color: #fff;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    margin: 0;
    width: 100%;
    text-align: center;
}
.zoom-box p span {
    display: block;
    font-size: 10px;
}
.info-link.zoom {
    display: block;
    transition-duration: 0.5s;
}
.info-link.zoom:hover {
    transform: scale(1.1);
}
.info-link-under {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    gap: 10px;
}
.il3 {
}
.sec4box1 {
}
.sec4attention {
    margin-bottom: 80px;
}
.sec4attention img {
    max-width: 1000px;
}
.sec4link {
    text-align: center;
    margin-bottom: 60px;
}
.sec4link img {
    max-width: 800px;
}
.sec4link p {
    font-size: 14px;
    font-weight: lighter;
}
.snsmailicons {
    display: flex;
    margin: 0 60px 60px;
    justify-content: center;
    column-gap: 100px;
}
.snsmailicons a img {
    height: 70px;
}
.hashtags {
    text-align: center;
    font-size: 12px;
    line-height: 1.8;
    color: #535353;
}
.key-slider,
.slick-list,
.slick-track {
    height: 100%;
}
.hero {
    height: 600px;
}
.hero-over {
    position: relative;
}
.logo {
    position: absolute;
    top: 10px;
    left: 10px;
    max-width: 600px;
    z-index: 3;
}
.hero-slide div {
    height: 100%;
}
.hero-slide {
    position: relative;
}
.slick-slide img {
    height: 100%;
    object-fit: cover;
}
.garalley-img-on {
    font-size: 10px;
    position: absolute;
    bottom: 0;
    right: 10px;
}
@media screen and (max-width: 480px) {
    /* 480px以下に適用されるCSS（スマホ用） */
    .pc {
        display: none !important;
    }
    .section-inner {
        padding: 0 15px;
    }
    header img {
        width: 120px;
    }
    .ex-tex {
        font-size: 10px;
        font-weight: lighter;
        display: block;
    }
    .main-sent,
    .second-sent {
        font-size: 12px;
    }
    .spmainsent {
        text-align: left;
        font-weight: normal;
    }
    .sec2 {
        padding-bottom: 140px;
    }
    .sec2img,
    .sec3img,
    .sec4img {
        width: 170px;
    }
    .sec2img {
        padding: 40px 0 40px;
    }
    #sec3over {
        top: -108px;
    }
    .sec3-flex-item {
        width: 300px;
        padding: 15px;
        margin-bottom: 30px;
    }
    .btn,
    a.btn,
    button.btn {
        width: 100%;
        font-size: 14px;
        margin-bottom: 10px;
    }

    .sec1 {
        margin-bottom: 80px;
    }
    .sec1img {
        margin: 145px auto 40px;
        max-width: 790px;
        width: 90%;
    }
    .sec3img {
        padding: 140px 0 50px;
    }
    .sec4img {
        margin: 30px 0;
    }
    .sec4box {
        margin: 0 auto 40px;
    }
    .sec4boxttl {
        padding: 6px;
        margin-bottom: 30px;
    }
    .sec4boxttl img {
        height: 15px;
    }
    .sec4box1 {
        column-gap: 20px;
        margin-bottom: 30px;
    }
    .snsmailicons a img {
        height: 40px;
    }
    .snsmailicons {
        column-gap: 60px;
        margin: 0 60px 20px;
    }
    .second-sent {
        text-align: justify;
    }
    .second-sent .ex-tex {
        line-height: 1.8;
    }
    .sec3-flex-item p {
        text-align: justify;
        font-size: 12px;
    }
    .section3-underimg {
        padding-bottom: 95px;
        padding-top: 30px;
    }
    .sec4attention {
        margin-bottom: 30px;
    }
    .sec4link p {
        font-size: 12px;
        letter-spacing: 0px;
    }
    .sec4link {
        margin-bottom: 25px;
    }
    .hashtags {
        font-size: 10px;
    }
}
.title-head {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    height: 150px;
}
.page-section-inner {
    margin: auto;
    max-width: 600px;
    padding: 20px;
}
.bg-gray {
    background-color: #f5f5f5;
}
#application {
    background-image: linear-gradient(
        150deg,
        rgba(250, 204, 34, 1),
        rgba(248, 54, 0, 1)
    );
}
#construction {
    background-image: linear-gradient(
        150deg,
        rgba(253, 83, 146, 1),
        rgba(248, 111, 100, 1)
    );
}
#protection {
    background-image: linear-gradient(
        150deg,
        rgba(50, 245, 35, 1),
        rgba(20, 210, 180, 1)
    );
}
#thanks {
}
#contact {
    background-image: linear-gradient(
        150deg,
        rgba(70, 174, 247, 1),
        rgba(29, 213, 230, 1)
    );
}
#news {
    background-image: linear-gradient(
        150deg,
        rgba(253, 83, 146, 1),
        rgba(248, 111, 100, 1)
    );
}
#share {
    background-image: linear-gradient(
        150deg,
        rgba(114, 215, 204, 1),
        rgba(40, 207, 179, 1)
    );
}
/* ── News & Media 2-col ── */
.nm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}
.nm-heading {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #5fa79d;
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #5fa79d;
}
.nm-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.nm-list li {
    border-bottom: 1px solid #e5e7eb;
}
.nm-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    color: inherit;
    text-decoration: none;
    transition: background 0.2s;
}
.nm-link:hover {
    background: #f9fafb;
    padding-left: 6px;
    padding-right: 6px;
    margin-left: -6px;
    margin-right: -6px;
    border-radius: 6px;
}
.nm-date {
    flex-shrink: 0;
    font-size: 12px;
    color: #999;
    letter-spacing: 0.03em;
    min-width: 68px;
}
.nm-link-title {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}
.nm-arrow {
    flex-shrink: 0;
    color: #ccc;
    transition:
        transform 0.2s,
        color 0.2s;
}
.nm-link:hover .nm-arrow {
    transform: translateX(3px);
    color: #5fa79d;
}
.nm-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #5fa79d;
    text-decoration: none;
    transition: opacity 0.2s;
}
.nm-more:hover {
    opacity: 0.7;
}
.nm-empty {
    color: #999;
    font-size: 14px;
}
/* Media card */
.nm-media-card {
    background: #f9fafb;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
}
.nm-media-thumb {
    display: block;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    max-height: 320px;
}
.nm-media-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.4s;
}
.nm-media-thumb:hover img {
    transform: scale(1.03);
}
.nm-media-body {
    padding: 20px;
}
.nm-media-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
    background: #5fa79d;
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}
.nm-media-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.6;
    margin: 0 0 8px;
}
.nm-media-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
    margin: 0 0 16px;
}
.nm-media-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #5fa79d;
    text-decoration: none;
    border: 1px solid #5fa79d;
    padding: 8px 18px;
    border-radius: 8px;
    transition:
        background 0.2s,
        color 0.2s;
}
.nm-media-btn:hover {
    background: #5fa79d;
    color: #fff;
}
@media (max-width: 768px) {
    .nm-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .nm-media-thumb {
        max-height: 160px;
    }
    .nm-media-card {
        flex-direction: column;
    }
}
.w100 {
    width: 100% !important;
}
.share-box {
    width: 80%;
    margin: auto;
    padding: 40px 0;
}
/* Share carousel */

.share-swiper-wrap {
    position: relative;
    margin-bottom: 80px;
    padding: 0 0 20px;
}
.share-swiper-wrap .swiper {
    padding: 15px 0 30px !important;
}
.share-swiper {
    overflow: hidden;
    padding: 10px 0 20px;
}
.share-card {
    padding: 10px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}
.share-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.share-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}
.share-card-thumb {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.share-card-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s;
}
.share-card:hover .share-card-thumb img {
    transform: scale(1.05);
}
.share-card-body {
    padding: 10px 14px;
    height: 35px;
}
.share-card-title {
    font-size: 9px;
    margin: 0;
    color: #666;
    text-align: end;
}
.share-swiper-prev,
.share-swiper-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #333;
    transition:
        background 0.2s,
        box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.share-swiper-prev:hover,
.share-swiper-next:hover {
    background: #f5f5f5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.share-swiper-prev {
    left: 12px;
}
.share-swiper-next {
    right: 12px;
}
@media (max-width: 768px) {
    .share-swiper-prev,
    .share-swiper-next {
        display: none;
    }
}
.design-info {
    position: relative;
    max-width: 980px;
    margin: auto;
    transform: translateY(0);
    transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1); /* アニメ追加 */
}
.design-info.shift {
    transform: translateY(30px); /* ↓30px */
}

.checkbox:checked {
    background-color: #6ea89e;
}
.checkboxItem:has(.checkbox:checked) {
    border-color: #6ea89e;
}
.checkbox:checked::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 8px;
    height: 4px;
    border-bottom: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
    transform: rotate(-45deg);
}

:root {
    --easing: cubic-bezier(0.2, 1, 0.2, 1);
    --transition: 0.8s var(--easing);
    --color-base: #f8f8f8;
    --color-gray: #ddd;
    --color-theme: #f5695f;
    --color-theme-darken: #f12617;
    --box-shadow:
        0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.05), -0.8rem -0.8rem 1.2rem #fff;
    --box-shadow-hover:
        1rem 1rem 1.5rem rgba(0, 0, 0, 0.08), -1rem -1rem 1.5rem #fff;
    --box-shadow-inset:
        inset 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.05),
        inset -0.8rem -0.8rem 1.2rem #fff;
    --box-shadow-dark:
        0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.1),
        -0.8rem -0.8rem 1.2rem rgba(#fff, 0.2);
}

.l-inner {
    position: relative;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 2rem;
}
.l-section .l-inner {
    margin-bottom: 30px;
}

[class*="swiper"]:focus {
    outline: none;
}

.slide-media img,
.thumb-media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 600px;
    -o-object-fit: cover;
    object-fit: cover;
}
.swiper-button-prev,
.swiper-button-next {
    display: grid;
    place-content: center;
    width: 60px;
    height: 60px;
    cursor: pointer;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
.swiper-button-prev::before,
.swiper-button-next::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: "";
    border-radius: 50%;
    -webkit-box-shadow: var(--box-shadow);
    box-shadow: var(--box-shadow);
}
.swiper-button-prev::after,
.swiper-button-next::after {
    width: 1.2rem;
    height: 1.2rem;
    content: "";
    border: solid var(--color-gray);
    border-width: 3px 3px 0 0;
}
.swiper-button-prev::after {
    margin-left: 0.4rem;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}
.swiper-button-next::after {
    margin-right: 0.4rem;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.swiper-button-disabled {
    pointer-events: none;
    opacity: 0;
}
.card03 {
    overflow: hidden;
}
.card03 .swiper {
    overflow: visible;
}
.card03 .swiper-button-prev,
.card03 .swiper-button-next {
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    margin: auto;
}
.card03 .swiper-button-prev::before,
.card03 .swiper-button-next::before {
    background-color: rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: var(--box-shadow-dark);
    box-shadow: var(--box-shadow-dark);
}
.card03 .swiper-button-prev::after,
.card03 .swiper-button-next::after {
    border-color: #fff;
}
.card03 .swiper-button-prev {
    right: calc(100% - 1.6rem);
}
.card03 .swiper-button-next {
    left: calc(100% - 1.6rem);
}
.card03 .slide {
    overflow: hidden;
    -webkit-transition:
        var(--transition),
        opacity 1s;
    transition:
        var(--transition),
        opacity 1s;
    border-radius: 4px;
    -webkit-box-shadow: var(--box-shadow);
    box-shadow: var(--box-shadow);
}
.card03 .slide-media {
    padding-top: 600px;
}
.card03 .slide-media img {
    height: 630px;
    -webkit-transform: translateY(-16px);
    transform: translateY(-16px);
}
.card03 .slide-content {
    padding: 3.2rem;
}
.card03 .swiper-slide:not(.swiper-slide-visible) .slide {
    pointer-events: none;
    opacity: 0.6;
}

@media only screen and (max-width: 1024px) {
    html {
        -webkit-text-size-adjust: 100%;
    }
    .l-inner {
        padding: 0 2rem;
    }
    .pc {
        display: none !important;
    }
    .card03 .swiper {
        padding: 0 3.2rem;
    }
    .card03 .swiper-button-prev {
        right: calc(100% - 5.2rem);
    }
    .card03 .swiper-button-next {
        left: calc(100% - 5.2rem);
    }
}

@media only screen and (max-width: 599px) {
    html {
        font-size: 50%;
    }
    .pc-tab {
        display: none !important;
    }
}

@media only screen and (min-width: 1025px) {
    .tab-sp {
        display: none !important;
    }
    .swiper-button-prev::before,
    .swiper-button-next::before {
        -webkit-transition: var(--transition);
        transition: var(--transition);
    }
    .swiper-button-prev:hover::before,
    .swiper-button-next:hover::before {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
    .card03 .slide img {
        -webkit-transition: var(--transition);
        transition: var(--transition);
    }
}

@media only screen and (min-width: 600px) {
    .sp {
        display: none !important;
    }
}

/* ===== Order Flow (light) ===== */
/* ========== Order Flow page (ofl-) ========== */
.ofl {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

/* Header */
/* ===== of-head: Full-width hero banner ===== */
.of-head {
    position: relative;
    text-align: center;
    margin-bottom: clamp(28px, 4vw, 48px);
    padding: clamp(80px, 12vw, 160px) 20px clamp(60px, 10vw, 120px);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #1a1a1a;
    overflow: hidden;
    margin: auto;
    width: 94vw;
}
.of-head::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.45) 0%,
        rgba(0, 0, 0, 0.55) 100%
    );
    z-index: 1;
}
.of-head > * {
    position: relative;
    z-index: 2;
}

/* Background images per page */
.page-orderflow .of-head {
    background-image: url("../img/front/AdobeStock_280323437.webp");
}
.page-construction .of-head {
    background-image: url("../img/front/l4.webp");
}
.page-original .of-head {
    background-image: url("../img/front/original.jpg");
}
.page-lettering .of-head {
    background-image: url("../img/front/lettering.png");
}
.page-about .of-head {
    background-image: url("../img/front/jimny_bk_hiace_01.webp");
}
.page-contact .of-head {
    background-image: url("../img/front/DSC_0061.webp");
}
.page-protection .of-head {
    background-image: url("../img/front/sec4boximg1.webp");
}
.page-terms .of-head {
    background-image: url("../img/front/stickybg.webp");
}
.page-privacy .of-head {
    background-image: url("../img/front/stickybg.webp");
}
.page-attention .of-head {
    background-image: url("../img/front/attention.webp");
}
.page-application .of-head {
    background-image: url("../img/front/l4.webp");
}
/* ── News list ── */
.nw-header {
    text-align: center;
    padding: 64px 24px 40px;
}
.nw-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #5fa79d;
}
.nw-title {
    font-size: 26px;
    font-weight: 700;
    margin: 8px 0 0;
    letter-spacing: 0.04em;
}
.nw-wrap {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px 80px;
}
.nw-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.nw-list li {
    border-bottom: 1px solid #e5e7eb;
}
.nw-list li:first-child {
    border-top: 1px solid #e5e7eb;
}
.nw-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 4px;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s;
}
.nw-item:hover {
    background: #f9fafb;
}
.nw-date {
    flex-shrink: 0;
    font-size: 13px;
    color: #999;
    letter-spacing: 0.04em;
    min-width: 80px;
}
.nw-item-title {
    flex: 1;
    font-size: 15px;
    font-weight: 500;
}
.nw-arrow {
    flex-shrink: 0;
    color: #ccc;
    transition: transform 0.2s;
}
.nw-item:hover .nw-arrow {
    transform: translateX(3px);
    color: #5fa79d;
}
.nw-empty {
    text-align: center;
    color: #999;
    padding: 48px 0;
}

/* ── News detail ── */
.nd-wrap {
    max-width: 720px;
    margin: 0 auto;
    padding: 48px 24px 80px;
}
.nd-header {
    margin-bottom: 40px;
}
.nd-date {
    display: block;
    font-size: 13px;
    color: #999;
    letter-spacing: 0.04em;
    margin: 16px 0 12px;
}
.nd-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
}
.nd-content {
    font-size: 15px;
    line-height: 2;
    color: #333;
    word-break: break-word;
}
.nd-content h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 40px 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #5fa79d;
}
.nd-content h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 32px 0 12px;
}
.nd-content p {
    margin: 0 0 20px;
}
.nd-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 16px 0;
}
.nd-content a {
    color: #5fa79d;
    text-decoration: underline;
}
.nd-content ul,
.nd-content ol {
    padding-left: 1.5em;
    margin: 0 0 20px;
}
.nd-content li {
    margin-bottom: 6px;
}
.nd-footer {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}
.nd-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #5fa79d;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s;
}
.nd-back:hover {
    opacity: 0.7;
}
@media (max-width: 600px) {
    .nw-header {
        padding: 48px 16px 28px;
    }
    .nw-title {
        font-size: 22px;
    }
    .nw-wrap {
        padding: 0 16px 60px;
    }
    .nw-item {
        flex-wrap: wrap;
        gap: 4px 16px;
        padding: 16px 4px;
    }
    .nw-date {
        width: 100%;
    }
    .nd-wrap {
        padding: 36px 16px 60px;
    }
    .nd-title {
        font-size: 20px;
    }
}

.of-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 4px 16px;
    border-radius: 20px;
}
.of-title {
    margin: 0 0 0.4em;
    font-weight: 800;
    font-size: clamp(26px, 3.5vw, 42px);
    letter-spacing: 0.04em;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
.of-lead {
    margin: 0 auto;
    max-width: 640px;
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(13px, 1.4vw, 15px);
    line-height: 1.9;
}
@media (max-width: 600px) {
    .of-head {
        padding: 70px 16px 50px;
    }
    .of-lead {
        font-size: 13px;
        line-height: 1.8;
    }
}

/* 2-column grid */
.of-grid {
    display: grid;
    gap: 20px;
    margin-top: 20px;
    grid-template-columns: 1fr;
}
@media (min-width: 900px) {
    .of-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Tabs */
.ofl-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 36px;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0;
}
.ofl-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 8px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    font-size: 14px;
    font-weight: 600;
    color: #999;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
}
.ofl-tab svg {
    flex-shrink: 0;
}
.ofl-tab:hover {
    color: #333;
}
.ofl-tab.active {
    color: #5fa79d;
    border-bottom-color: #5fa79d;
}
.ofl-tab.active svg {
    color: #5fa79d;
}

/* Panels */
.ofl-panel {
    display: none;
}
.ofl-panel.active {
    display: block;
}

/* Intro text */
.ofl-intro {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin: 0 0 28px;
    text-align: center;
}

/* Notice box */
.ofl-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fef9ec;
    border: 1px solid #f0dca0;
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 28px;
    font-size: 14px;
    line-height: 1.7;
    color: #6b5a1e;
}
.ofl-notice svg {
    flex-shrink: 0;
    color: #c9a227;
    margin-top: 2px;
}
.ofl-notice p {
    margin: 0;
}

/* Two-col layout */
.ofl-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Flow card */
.ofl-flow-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
}
.ofl-flow-card--single {
    max-width: 560px;
    margin: 0 auto 28px;
}
.ofl-flow-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    flex-wrap: wrap;
}
.ofl-flow-head svg {
    flex-shrink: 0;
    color: #5fa79d;
}
.ofl-flow-head h3 {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
}
.ofl-flow-head p {
    width: 100%;
    margin: 0;
    font-size: 13px;
    color: #999;
}
.ofl-flow-head--ship {
    background: linear-gradient(135deg, #e8f4f2 0%, #d4ede9 100%);
}
.ofl-flow-head--install {
    background: linear-gradient(135deg, #e8eef6 0%, #d4e2f0 100%);
}

/* Steps */
.ofl-steps {
    list-style: none;
    margin: 0;
    padding: 0;
}
.ofl-steps li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 24px;
    border-top: 1px solid #f0f0f0;
}
.ofl-steps li:first-child {
    border-top: none;
}
.ofl-num {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #5fa79d;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    margin-top: 1px;
}
.ofl-steps strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
}
.ofl-steps p {
    margin: 0;
    font-size: 13px;
    color: #888;
    line-height: 1.6;
}

/* Features grid */
.ofl-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}
.ofl-feature {
    background: #f8fafa;
    border-radius: 12px;
    padding: 20px;
}
.ofl-feature h4 {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #5fa79d;
}
.ofl-feature p {
    margin: 0;
    font-size: 13px;
    color: #666;
    line-height: 1.7;
}

/* Detail link */
.ofl-detail-link {
    text-align: center;
    font-size: 14px;
    color: #666;
}
.ofl-detail-link a {
    color: #5fa79d;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Payment */
.ofl-payment {
    margin-top: 48px;
    margin-bottom: 48px;
    padding-top: 40px;
    border-top: 1px solid #e5e7eb;
}
.ofl-payment-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #5fa79d;
    margin: 0 0 20px;
    text-align: center;
}
.ofl-payment-title span {
    display: block;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: none;
    color: #1a1a1a;
    margin-top: 6px;
}
.ofl-pay-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 640px;
    margin: 0 auto;
}
.ofl-pay-card {
    background: #f8fafa;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
}
.ofl-pay-card svg {
    color: #5fa79d;
    margin-bottom: 12px;
}
.ofl-pay-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 8px;
}
.ofl-pay-card p {
    margin: 0;
    font-size: 13px;
    color: #888;
    line-height: 1.6;
}

/* OFL responsive */
@media (max-width: 700px) {
    .ofl {
        padding: 0 16px 60px;
    }
    .ofl-tabs {
        gap: 4px;
    }
    .ofl-tab {
        font-size: 12px;
        padding: 12px 4px;
        gap: 5px;
    }
    .ofl-tab svg {
        width: 16px;
        height: 16px;
    }
    .ofl-two-col {
        grid-template-columns: 1fr;
    }
    .ofl-features {
        grid-template-columns: 1fr;
    }
    .ofl-pay-grid {
        grid-template-columns: 1fr;
    }
    .ofl-flow-head {
        padding: 16px 18px;
    }
    .ofl-steps li {
        padding: 12px 18px;
    }
}
/* ===== Construction page ===== */
.cx-wrap {
    --cx-text: #1f2937;
    --cx-mute: #6b7280;
    --cx-line: #e5e7eb;
    --cx-accent: #0ea5a4;
    --cx-surface: #f8fafa;
    --cx-card: #ffffff;
    color: var(--cx-text);
    background: #fff;
    line-height: 1.8;
}
.cx-wrap * {
    box-sizing: border-box;
}
.cx-container {
    max-width: 900px;
    margin: 0 auto;
    padding: clamp(24px, 4vw, 56px) clamp(16px, 3vw, 32px);
}

/* Hero */
.cx-hero {
    text-align: center;
    margin-bottom: clamp(32px, 5vw, 56px);
}
.cx-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cx-accent);
    margin: 0 0 8px;
}
.cx-title {
    margin: 0 0 0.35em;
    font-weight: 800;
    font-size: clamp(26px, 3.5vw, 38px);
    letter-spacing: 0.02em;
}
.cx-lead {
    margin: 0 auto;
    max-width: 520px;
    color: var(--cx-mute);
    font-size: clamp(13px, 1.4vw, 15px);
    line-height: 1.8;
}
.hide-sp {
    display: none;
}
@media (min-width: 600px) {
    .hide-sp {
        display: inline;
    }
}

/* Section */
.cx-section {
    padding: clamp(28px, 4vw, 48px) 0;
    border-top: 1px solid var(--cx-line);
}
.cx-section:first-of-type {
    border-top: none;
    padding-top: 0;
}
.cx-section__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: clamp(16px, 2vw, 24px);
}
.cx-section__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #e8f6f5, #d1f0ed);
    color: var(--cx-accent);
}
.cx-h2 {
    margin: 0;
    font-size: clamp(18px, 2.2vw, 22px);
    font-weight: 800;
}

/* Steps timeline */
.cx-steps {
    counter-reset: cx-step;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}
.cx-steps::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--cx-accent), #d1f0ed);
}
.cx-steps > li {
    position: relative;
    padding: 0 0 clamp(20px, 2.5vw, 28px) 48px;
}
.cx-steps > li:last-child {
    padding-bottom: 0;
}
.cx-steps > li::before {
    counter-increment: cx-step;
    content: counter(cx-step);
    position: absolute;
    left: 3px;
    top: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--cx-accent);
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    box-shadow: 0 2px 8px rgba(14, 165, 164, 0.2);
}
.cx-step__body {
}
.cx-steps h3 {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 700;
}
.cx-steps p {
    margin: 0;
    color: var(--cx-mute);
    font-size: 13px;
    line-height: 1.7;
}

/* Chips */
.cx-chip {
    display: inline-block;
    background: var(--cx-surface);
    border: 1px solid var(--cx-line);
    border-radius: 999px;
    padding: 4px 12px;
    font-size: 12px;
    color: var(--cx-mute);
    margin-top: 6px;
}
.cx-chiprow {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

/* Cost grid */
.cx-cost-grid {
    display: grid;
    gap: 16px;
}
@media (min-width: 680px) {
    .cx-cost-grid {
        grid-template-columns: 1fr 1fr;
    }
}
.cx-cost-card {
    background: var(--cx-card);
    border: 1px solid var(--cx-line);
    border-radius: 16px;
    padding: clamp(16px, 2vw, 24px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
}
.cx-cost-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}
.cx-cost-card--on {
    border-color: rgba(14, 165, 164, 0.3);
}
.cx-cost-card__badge {
    display: inline-block;
    background: var(--cx-accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 12px;
}
.cx-cost-card__badge--muted {
    background: var(--cx-surface);
    color: var(--cx-mute);
    border: 1px solid var(--cx-line);
}
.cx-cost-card h3 {
    margin: 0 0 8px;
    font-size: 15px;
    font-weight: 700;
}
.cx-price {
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 800;
    margin: 0 0 12px;
    color: #0f172a;
}
.cx-price small {
    font-size: 13px;
    font-weight: 400;
    color: var(--cx-mute);
}
.cx-list {
    margin: 0;
    padding: 0 0 0 1.2em;
}
.cx-list li {
    margin: 4px 0;
    font-size: 14px;
    color: var(--cx-mute);
}
.cx-list li strong {
    color: var(--cx-text);
}
.cx-note {
    margin-top: 12px;
    font-size: 13px;
    color: var(--cx-mute);
}

/* Info grid */
.cx-info-grid {
    display: grid;
    gap: 16px;
}
@media (min-width: 680px) {
    .cx-info-grid {
        grid-template-columns: 1fr 1fr;
    }
}
.cx-info-card {
    background: var(--cx-card);
    border: 1px solid var(--cx-line);
    border-radius: 16px;
    padding: clamp(16px, 2vw, 24px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}
.cx-info-card h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 10px;
    font-size: 15px;
    font-weight: 700;
    color: var(--cx-accent);
}
.cx-info-card p {
    margin: 0;
    font-size: 14px;
    color: var(--cx-mute);
    line-height: 1.7;
}
.cx-info-card .cx-list {
    margin-top: 4px;
}

/* Access card */
.cx-access-card {
    display: grid;
    gap: 20px;
    background: var(--cx-card);
    border: 1px solid var(--cx-line);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}
@media (min-width: 680px) {
    .cx-access-card {
        grid-template-columns: 1fr 1fr;
    }
}
.cx-access-card__info {
    padding: clamp(16px, 2vw, 28px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.cx-access-card__info h3 {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 700;
}
.cx-address {
    margin: 0 0 10px;
    color: var(--cx-mute);
    font-size: 14px;
}
.cx-map-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    padding: 10px 16px;
    border-radius: 10px;
    background: var(--cx-surface);
    border: 1px solid var(--cx-line);
    color: var(--cx-accent);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s ease;
    width: fit-content;
}
.cx-map-link:hover {
    background: #e8f4f2;
}
.cx-access-card__map {
    min-height: 240px;
}
.cx-access-card__map iframe {
    width: 100%;
    height: 100%;
    display: block;
    min-height: 240px;
}

/* Company card */
.cx-company-card {
    background: var(--cx-card);
    border: 1px solid var(--cx-line);
    border-radius: 16px;
    padding: clamp(16px, 2vw, 24px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}
.cx-company-card h3 {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 700;
}
.cx-company-card p {
    margin: 4px 0;
    font-size: 14px;
    color: var(--cx-mute);
}
.cx-company-card a {
    color: var(--cx-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.cx-company-card a:hover {
    color: #0f766e;
}

/* FAQ */
.cx-faq-list {
    display: grid;
    gap: 10px;
}
.cx-faq {
    border: 1px solid var(--cx-line);
    border-radius: 14px;
    padding: 0;
    background: var(--cx-card);
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}
.cx-faq:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}
.cx-faq > summary {
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
    padding: 16px 20px;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.cx-faq > summary::-webkit-details-marker {
    display: none;
}
.cx-faq__chevron {
    flex-shrink: 0;
    color: var(--cx-mute);
    transition: transform 0.25s ease;
}
.cx-faq[open] .cx-faq__chevron {
    transform: rotate(180deg);
}
.cx-faq > p {
    margin: 0;
    padding: 0 20px 16px;
    font-size: 14px;
    color: var(--cx-mute);
    line-height: 1.7;
    border-top: 1px solid var(--cx-line);
    padding-top: 14px;
}

/* CTA */
.cx-cta {
    margin-top: clamp(28px, 4vw, 48px);
    padding-top: clamp(28px, 4vw, 48px);
    border-top: 1px solid var(--cx-line);
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}
.cx-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease;
}
.cx-btn--primary {
    background: linear-gradient(180deg, #14b8a6, #0ea5a4);
    color: #fff;
    box-shadow: 0 8px 24px rgba(14, 165, 164, 0.25);
}
.cx-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(14, 165, 164, 0.35);
}
.cx-btn--outline {
    background: transparent;
    color: var(--cx-accent);
    border: 2px solid var(--cx-accent);
    box-shadow: none;
}
.cx-btn--outline:hover {
    background: var(--cx-accent);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(14, 165, 164, 0.25);
}
/* ===== Lettering Option page ===== */
/* ========== ABOUT PAGE (ab-) ========== */
.ab-wrap {
    --ab-accent: #5fa79d;
    --ab-accent-light: #e8f4f2;
    --ab-border: #e5e7eb;
    --ab-text: #1a1a1a;
    --ab-muted: #6b7280;
    --ab-surface: #f5f6f7;
    padding: 60px 20px 80px;
}
.ab-wrap * {
    box-sizing: border-box;
}
.ab-container {
    max-width: 880px;
    margin: 0 auto;
}

/* Brand Story */
.ab-story {
    max-width: 680px;
    margin: 0 auto 56px;
    font-size: 15px;
    line-height: 2;
    color: var(--ab-text);
    text-align: left;
}
.ab-story p {
    margin: 0 0 20px;
}
.ab-story p:last-child {
    margin-bottom: 0;
}
.ab-lead__accent {
    font-weight: 700;
    color: var(--ab-accent);
    font-size: 16px;
    margin-top: 28px;
    text-align: center;
}

/* Section */
.ab-section {
    margin-bottom: 56px;
}
.ab-section:last-child {
    margin-bottom: 0;
}
.ab-section__head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--ab-text);
}
.ab-section__icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--ab-accent-light);
    color: var(--ab-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ab-h2 {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--ab-text);
    margin: 0;
}
.ab-h2__sub {
    font-size: 13px;
    font-weight: 500;
    color: var(--ab-muted);
    margin-left: 0.5em;
    letter-spacing: 0.02em;
}

/* LINE UP (standalone — used across pages) */
.ab-lineup {
    --ab-accent: #5fa79d;
    --ab-border: #e5e7eb;
    --ab-text: #1a1a1a;
    --ab-muted: #6b7280;
    --ab-surface: #f5f6f7;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 820px;
    margin: 0 auto;
}
.ab-lineup__card {
    display: block;
    text-decoration: none;
    color: var(--ab-text);
    border: 1px solid var(--ab-border);
    border-radius: 16px;
    overflow: hidden;
    transition:
        border-color 0.25s,
        box-shadow 0.25s,
        transform 0.2s;
    background: #fff;
}
.ab-lineup__card:hover {
    border-color: var(--ab-accent);
    box-shadow: 0 8px 28px rgba(95, 167, 157, 0.15);
    transform: translateY(-3px);
}
.ab-lineup__img {
    overflow: hidden;
    aspect-ratio: 16/9;
    background: var(--ab-surface);
}
.ab-lineup__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.ab-lineup__card:hover .ab-lineup__img img {
    transform: scale(1.04);
}
.ab-lineup__body {
    padding: 20px 22px 22px;
    text-align: center;
}
.ab-lineup__name {
    margin: 0 0 18px;
}
.ab-lineup__name img {
    width: 200px;
}
.ab-lineup__sub {
    font-size: 13px;
    color: var(--ab-muted);
    margin: 0 0 14px;
}
.ab-lineup__btn {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--ab-accent);
    letter-spacing: 0.04em;
    padding: 8px 20px;
    border: 1px solid var(--ab-accent);
    border-radius: 8px;
    transition:
        background 0.2s,
        color 0.2s;
}
.ab-lineup__card:hover .ab-lineup__btn {
    background: var(--ab-accent);
    color: #fff;
}

/* Company table */
.ab-company {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}
.ab-company th,
.ab-company td {
    padding: 16px 20px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid var(--ab-border);
}
.ab-company th {
    font-weight: 700;
    color: var(--ab-text);
    white-space: nowrap;
    width: 120px;
    background: var(--ab-surface);
}
.ab-company td {
    color: var(--ab-text);
}
.ab-company tr:last-child th,
.ab-company tr:last-child td {
    border-bottom: none;
}
.ab-group {
    display: flex;
    align-items: center;
    gap: 36px;
    margin-top: 32px;
}
.ab-group-link {
    display: inline-block;
    opacity: 0.35;
    transition: opacity 0.2s;
}
.ab-group-link:hover {
    opacity: 0.7;
}
.ab-group-logo {
    height: 26px;
    width: auto;
}

/* Mobile */
@media (max-width: 600px) {
    .ab-wrap {
        padding: 40px 16px 60px;
    }
    .ab-story {
        font-size: 14px;
        line-height: 1.9;
        margin-bottom: 40px;
    }
    .ab-lead__accent {
        font-size: 14px;
    }
    .ab-lineup {
        grid-template-columns: 1fr;
    }
    .ab-lineup__body {
        padding: 16px 18px 18px;
    }
    .ab-lineup__name {
        font-size: 16px;
    }
    .ab-company th,
    .ab-company td {
        padding: 12px 14px;
        font-size: 14px;
        display: block;
        width: 100%;
    }
    .ab-company th {
        border-bottom: none;
        padding-bottom: 4px;
    }
    .ab-section__head {
        gap: 8px;
        padding-bottom: 12px;
    }
    .ab-h2 {
        font-size: 18px;
    }
    .ab-h2__sub {
        display: block;
        margin-left: 0;
        margin-top: 2px;
    }
}

.lt-wrap {
    --lt-accent: #5fa79d;
    --lt-accent-light: #e8f4f2;
    --lt-border: #e5e7eb;
    --lt-text: #1a1a1a;
    --lt-muted: #6b7280;
    --lt-surface: #f5f6f7;
    padding: 60px 20px 80px;
}
.lt-wrap * {
    box-sizing: border-box;
}
.lt-container {
    max-width: 780px;
    margin: 0 auto;
}

.lt-hero {
    text-align: center;
    margin-bottom: 48px;
}
.lt-eyebrow {
    font-size: 12px;
    letter-spacing: 0.2em;
    color: var(--lt-accent);
    font-weight: 700;
    margin-bottom: 10px;
}
.lt-title {
    font-size: clamp(22px, 5vw, 32px);
    font-weight: 800;
    color: var(--lt-text);
    margin: 0 0 16px;
}
.lt-lead {
    font-size: 15px;
    color: var(--lt-muted);
    line-height: 1.9;
}

/* notice */
.lt-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--lt-accent-light);
    border: 1px solid var(--lt-accent);
    border-radius: 14px;
    padding: 20px 24px;
    margin-bottom: 48px;
}
.lt-notice__icon {
    color: var(--lt-accent);
    flex-shrink: 0;
    margin-top: 2px;
}
.lt-notice p {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: var(--lt-text);
}

/* section */
.lt-section {
    margin-bottom: 48px;
}
.lt-section__head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--lt-border);
}
.lt-section__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--lt-accent-light);
    color: var(--lt-accent);
    flex-shrink: 0;
}
.lt-h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: var(--lt-text);
}
.lt-sub {
    font-size: 14px;
    color: var(--lt-muted);
    margin: 0 0 16px;
}
.lt-content p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--lt-text);
    margin: 0 0 12px;
}
.lt-note {
    font-size: 13px;
    color: var(--lt-muted);
    line-height: 1.7;
    margin-top: 12px;
}

/* price box */
.lt-price-box {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    background: #fff;
    border: 2px solid var(--lt-accent);
    border-radius: 14px;
    padding: 20px 32px;
}
.lt-price-box__amount {
    font-size: 32px;
    font-weight: 800;
    color: var(--lt-accent);
}
.lt-price-box__tax {
    font-size: 14px;
    color: var(--lt-muted);
}

/* size grid */
.lt-size-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 12px;
}
.lt-size-card {
    background: #fff;
    border: 1px solid var(--lt-border);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}
.lt-size-card__label {
    font-size: 13px;
    font-weight: 700;
    color: var(--lt-accent);
    margin-bottom: 8px;
    letter-spacing: 0.04em;
}
.lt-size-card p {
    font-size: 15px;
    font-weight: 600;
    color: var(--lt-text);
    margin: 0;
}

/* recommend list */
.lt-recommend {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.lt-recommend li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--lt-text);
    padding: 14px 18px;
    background: #fff;
    border: 1px solid var(--lt-border);
    border-radius: 10px;
}
.lt-recommend li svg {
    color: var(--lt-accent);
    flex-shrink: 0;
}
.lt-accent-text {
    font-size: 16px;
    font-weight: 700;
    color: var(--lt-accent);
    text-align: center;
    margin: 0;
}

/* order steps */
.lt-order-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}
.lt-order-steps::before {
    content: "";
    position: absolute;
    left: 17px;
    top: 22px;
    bottom: 22px;
    width: 2px;
    background: linear-gradient(
        to bottom,
        var(--lt-accent),
        var(--lt-accent-light)
    );
}
.lt-order-steps li {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    position: relative;
    padding: 14px 0;
}
.lt-order-steps__num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--lt-accent);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.lt-order-steps__body h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 4px;
    color: var(--lt-text);
}
.lt-order-steps__body p {
    font-size: 14px;
    color: var(--lt-muted);
    line-height: 1.7;
    margin: 0;
}

/* CTA */
.lt-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 56px;
}
.lt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s;
}
.lt-btn--primary {
    background: var(--lt-accent);
    color: #fff;
    box-shadow: 0 4px 14px rgba(95, 167, 157, 0.3);
}
.lt-btn--primary:hover {
    background: #4e9589;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(95, 167, 157, 0.35);
}
.lt-btn--outline {
    background: transparent;
    color: var(--lt-accent);
    border: 2px solid var(--lt-accent);
}
.lt-btn--outline:hover {
    background: var(--lt-accent);
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 640px) {
    .lt-wrap {
        padding: 40px 16px 60px;
    }
    .lt-size-grid {
        grid-template-columns: 1fr;
    }
    .lt-price-box {
        padding: 16px 24px;
    }
    .lt-price-box__amount {
        font-size: 26px;
    }
    .lt-notice {
        flex-direction: column;
        gap: 8px;
    }
    .lt-order-steps::before {
        left: 13px;
    }
    .lt-order-steps__num {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }
}

/* ===== Original Order page ===== */
.og-wrap {
    --og-accent: #5fa79d;
    --og-accent-light: #e8f4f2;
    --og-border: #e5e7eb;
    --og-text: #1a1a1a;
    --og-muted: #6b7280;
    --og-surface: #f5f6f7;
    padding: 60px 20px 80px;
}
.og-wrap * {
    box-sizing: border-box;
}
.og-container {
    max-width: 860px;
    margin: 0 auto;
}

/* hero */
.og-hero {
    text-align: center;
    margin-bottom: 56px;
}
.og-eyebrow {
    font-size: 12px;
    letter-spacing: 0.2em;
    color: var(--og-accent);
    font-weight: 700;
    margin-bottom: 10px;
}
.og-title {
    font-size: clamp(24px, 5vw, 36px);
    font-weight: 800;
    color: var(--og-text);
    margin: 0 0 16px;
}
.og-lead {
    font-size: 15px;
    color: var(--og-muted);
    line-height: 1.9;
}

/* section */
.og-section {
    margin-bottom: 56px;
}
.og-section__head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--og-border);
}
.og-section__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--og-accent-light);
    color: var(--og-accent);
    flex-shrink: 0;
}
.og-h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: var(--og-text);
}
.og-sub-lead {
    font-size: 14px;
    color: var(--og-muted);
    margin: 0 0 20px;
}

/* about */
.og-about p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--og-text);
    margin: 0 0 28px;
}
.og-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.og-feature {
    background: #fff;
    border: 1px solid var(--og-border);
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
}
.og-feature__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--og-accent-light);
    color: var(--og-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}
.og-feature h3 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--og-text);
}
.og-feature p {
    font-size: 13px;
    color: var(--og-muted);
    line-height: 1.7;
    margin: 0;
}

/* size cards */
/* Vehicle block */
.og-vehicle-block {
    margin-bottom: 28px;
}
.og-vehicle-block:last-child {
    margin-bottom: 0;
}
.og-vehicle-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--og-text);
}
.og-vehicle-badge {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    background: var(--og-accent);
    color: #fff;
    padding: 3px 10px;
    border-radius: 20px;
}
.og-size-visual-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.og-size-visual-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--og-surface);
    border: 1px solid var(--og-border);
    border-radius: 10px;
    padding: 10px 16px 10px 10px;
}
.og-size-visual-img {
    flex-shrink: 0;
    width: 140px;
}
.og-size-visual-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}
.og-size-visual-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.og-size-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--og-accent);
    white-space: nowrap;
}
.og-size-desc {
    font-size: 12px;
    color: var(--og-muted);
}

/* price */
.og-price-card {
    background: #fff;
    border: 1px solid var(--og-border);
    border-radius: 14px;
    padding: 28px 24px;
    margin-bottom: 16px;
}
.og-price-card__inner {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.og-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
}
.og-price-row--main .og-price-label {
    font-size: 15px;
    font-weight: 700;
    color: var(--og-text);
}
.og-price-row--sub .og-price-label {
    font-size: 14px;
    color: var(--og-muted);
}
.og-price-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--og-text);
}
.og-price-value--accent {
    color: var(--og-accent);
    font-size: 20px;
}
.og-price-value small {
    font-size: 12px;
    font-weight: 400;
    color: var(--og-muted);
}
.og-price-divider {
    height: 1px;
    background: var(--og-border);
}
.og-price-note {
    font-size: 12px;
    color: var(--og-muted);
    line-height: 1.7;
    margin: 0;
}

/* ref table */
.og-ref-table {
    margin-top: 24px;
}
.og-ref-table h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--og-text);
    margin: 0 0 12px;
}
.og-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.og-table th {
    background: var(--og-surface);
    font-weight: 700;
    text-align: left;
    padding: 10px 14px;
    border-bottom: 2px solid var(--og-border);
    color: var(--og-text);
}
.og-table td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--og-border);
    color: var(--og-text);
}
.og-table tbody tr:hover {
    background: var(--og-accent-light);
}

/* steps */
.og-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}
.og-steps::before {
    content: "";
    position: absolute;
    left: 19px;
    top: 24px;
    bottom: 24px;
    width: 2px;
    background: linear-gradient(
        to bottom,
        var(--og-accent),
        var(--og-accent-light)
    );
}
.og-steps li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    position: relative;
    padding: 16px 0;
}
.og-step__num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--og-accent);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.og-step__body h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 6px;
    color: var(--og-text);
}
.og-step__body p {
    font-size: 14px;
    color: var(--og-muted);
    line-height: 1.7;
    margin: 0;
}

/* form */
.og-success {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: var(--og-accent-light);
    border: 1px solid var(--og-accent);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 24px;
    color: var(--og-accent);
}
.og-success p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
}
.og-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.og-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.og-form__group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.og-form__group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--og-text);
}
.og-require {
    font-size: 11px;
    color: #e53e3e;
    font-weight: 700;
    margin-left: 4px;
}
.og-form__group input,
.og-form__group textarea,
.og-form__group select {
    padding: 12px 14px;
    border: 1px solid var(--og-border);
    border-radius: 10px;
    font-size: 14px;
    background: #fff;
    transition:
        border 0.2s,
        box-shadow 0.2s;
    font-family: inherit;
}
.og-form__group input:focus,
.og-form__group textarea:focus,
.og-form__group select:focus {
    border-color: var(--og-accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(95, 167, 157, 0.15);
}
.og-form__group textarea {
    resize: vertical;
    min-height: 140px;
}
.og-check-group,
.og-radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.og-check,
.og-radio {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--og-text);
    cursor: pointer;
}
.og-check input,
.og-radio input {
    accent-color: var(--og-accent);
}
.og-submit {
    display: block;
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    background: var(--og-accent);
    color: #fff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition:
        background 0.2s,
        transform 0.15s,
        box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(95, 167, 157, 0.3);
}
.og-submit:hover {
    background: #4e9589;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(95, 167, 157, 0.35);
}

/* mobile */
@media (max-width: 640px) {
    .og-wrap {
        padding: 40px 16px 60px;
    }
    .og-feature-grid {
        grid-template-columns: 1fr;
    }
    .og-size-visual-img {
        width: 110px;
    }
    .og-form__row {
        grid-template-columns: 1fr;
    }
    .og-steps::before {
        left: 15px;
    }
    .og-step__num {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    .og-price-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}

/* --- Lightbox base --- */
.lb-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    z-index: 9999;
}
.lb-overlay.is-open {
    display: block;
}

.lb-wrap {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 24px;
}

.lb-figure {
    max-width: 92vw;
    max-height: 92vh;
    margin: 0;
    display: grid;
    gap: 10px;
}
.lb-figure img {
    max-width: 92vw;
    max-height: 80vh;
    width: auto;
    height: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border-radius: 10px;
}
.lb-caption {
    color: #fff;
    text-align: center;
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Controls */
.lb-close,
.lb-prev,
.lb-next {
    position: fixed;
    top: 16px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(6px);
    border-radius: 10px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition:
        transform 0.15s ease,
        background 0.15s ease;
}
.lb-close:hover,
.lb-prev:hover,
.lb-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}
.lb-close {
    right: 16px;
}
.lb-prev {
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
}
.lb-next {
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.lb-close svg,
.lb-prev svg,
.lb-next svg {
    width: 20px;
    height: 20px;
}

/* クリック領域（オーバーレイ全体で閉じる） */
.lb-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
}
@media screen and (max-width: 899px) {
    .sp-nav-half {
        width: 100vw;
        max-width: 100vw;
    }
    .card03 .slide-media img {
        height: 200px;
    }
    .card03 .slide-media {
        padding-top: 200px;
    }
    .garalley-img-on {
        display: none;
    }
    .carselects {
        flex-direction: column;
        gap: 15px;
    }
    .carselect-wrap {
        width: 100%;
        padding: 15px;
    }
    .l-section .l-inner {
        margin-bottom: 15px;
    }
    .carselect-item {
        width: 110px;
        margin: auto;
    }
    .sec1ttl {
        font-size: 28px;
    }
    .scroll-list {
        top: -45px;
    }
    .scroll-list li {
        font-size: 6rem;
    }
    .forsim-ttl {
        padding: 40px 15px 10px;
        font-size: 28px;
    }
    .forsim-flex {
        flex-direction: column-reverse;
        padding: 0 15px 40px;
        gap: 0;
    }
    .forsim-text {
        width: 100%;
        gap: 15px;
    }
    .for-sim {
        padding: 80px 0;
    }
    #forsim-img {
        position: unset;
        min-width: 100%;
    }
    #forsim-img img {
        position: unset;
    }
    .info-link-under {
        flex-direction: column;
    }
    .info-link {
        height: 150px;
    }
}
@media screen and (max-width: 899px) {
    #sp-hamburger {
        right: 5px;
        top: 5px;
    }
}
.top-hero {
    height: 100vh;
    background-image: url("../img/front/jimny_bk_hiace_01.webp");
    background-size: cover;
    background-repeat: no-repeat;
}

/* ── Contact ── */
.ct-wrap {
    max-width: 640px;
    margin: 0 auto;
    padding: 80px 20px 100px;
}
.ct-header {
    text-align: center;
    margin-bottom: 48px;
}
.ct-label {
    display: inline-block;
    font-family: "SignPainter", cursive;
    font-size: 14px;
    letter-spacing: 0.12em;
    color: #5fa79d;
    margin-bottom: 8px;
}
.ct-title {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px;
}
.ct-lead {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}
.ct-success {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #e8f4f2;
    color: #2d7a6f;
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 32px;
    font-size: 14px;
    line-height: 1.6;
}
.ct-success svg {
    flex-shrink: 0;
    color: #5fa79d;
}
.ct-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.ct-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.ct-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.ct-group label {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 6px;
}
.ct-req {
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    background: #5fa79d;
    border-radius: 3px;
    padding: 1px 5px;
    line-height: 1.4;
}
.ct-group input,
.ct-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    color: #1a1a1a;
    background: #fff;
    transition: border-color 0.2s;
    outline: none;
}
.ct-group input:focus,
.ct-group textarea:focus {
    border-color: #5fa79d;
}
.ct-group input::placeholder,
.ct-group textarea::placeholder {
    color: #c4c8cf;
}
.ct-group textarea {
    resize: vertical;
    min-height: 140px;
}
.ct-submit {
    display: block;
    width: 100%;
    padding: 16px;
    background: #1a1a1a;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 8px;
}
.ct-submit:hover {
    background: #333;
}
@media screen and (max-width: 600px) {
    .ct-wrap {
        padding: 60px 16px 80px;
    }
    .ct-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .ct-title {
        font-size: 22px;
    }
}

/* ── 404 ── */
.e404 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 120px;
}
.e404-code {
    font-family: "SignPainter", cursive;
    font-size: 120px;
    line-height: 1;
    color: #e5e7eb;
    letter-spacing: 0.04em;
}
.e404-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 16px 0 12px;
}
.e404-text {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 36px;
}
.e404-btn {
    display: inline-block;
    padding: 14px 40px;
    background: #1a1a1a;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    transition: background 0.2s;
}
.e404-btn:hover {
    background: #333;
}
