/* ===== HERO（index/contact と同型） ===== */
.hero {
    width: min(1320px, calc(100% - 56px));
    margin: 0 auto;
    border-radius: var(--radius2);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    background: #fff;
    overflow: hidden;
    position: relative;
}

.heroSlider {
    position: relative;
    height: 560px;
    background: #111;
}

.heroTrack {
    height: 100%;
    display: flex;
    transition: transform .85s var(--ease);
    will-change: transform;
}

.heroSlide {
    min-width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.heroSlide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.04) contrast(1.03);
    will-change: transform;
    transform: scale(1.06) translate3d(var(--px, 0px), var(--py, 0px), 0);
    transition: transform .35s var(--ease);
}

.heroOverlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(900px 520px at 18% 80%, rgba(0, 0, 0, .55), transparent 62%),
        linear-gradient(90deg, rgba(0, 0, 0, .55), rgba(0, 0, 0, .12), rgba(0, 0, 0, 0));
    pointer-events: none;
}

.heroContent {
    position: absolute;
    left: 44px;
    bottom: 44px;
    width: min(720px, calc(100% - 88px));
    color: #fff;
    pointer-events: auto;
}

.heroKicker {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 1000;
    letter-spacing: .10em;
    text-transform: uppercase;
    font-size: 12px;
    opacity: .95;
}

.heroKicker .kDot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: var(--orange2);
    box-shadow: 0 0 18px rgba(255, 90, 90, .5);
}

.heroTitle {
    margin: 12px 0 0;
    font-size: clamp(30px, 3.3vw, 54px);
    line-height: 1.05;
    font-weight: 1000;
    letter-spacing: -.03em;
    text-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

.heroDesc {
    margin: 14px 0 0;
    font-size: 13.5px;
    line-height: 2.0;
    opacity: .92;
    max-width: 70ch;
    text-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

.heroActions {
    margin-top: 16px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.viewMore {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .55);
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-weight: 1000;
    letter-spacing: .02em;
    cursor: pointer;
    transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
    user-select: none;
    font-size: 13px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.viewMore:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, .10);
    border-color: rgba(255, 255, 255, .70);
}

.viewMore:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, .16);
}

.viewMore .dot {
    width: 13px;
    height: 13px;
    border-radius: 999px;
    background: var(--orange2);
    box-shadow: 0 0 18px rgba(255, 90, 90, .45);
}

/* ===== Big Typo ===== */
.bigWord {
    width: min(1320px, calc(100% - 56px));
    margin: 26px auto 0;
    font-weight: 1000;
    letter-spacing: -.05em;
    font-size: clamp(64px, 8.6vw, 150px);
    line-height: .92;
    color: transparent;
    background: linear-gradient(90deg, rgba(255, 46, 46, 1), rgba(255, 90, 90, 1));
    -webkit-background-clip: text;
    background-clip: text;
    transform: skewX(-6deg);
    user-select: none;
    opacity: .95;
}

/* ===== Page wrap ===== */
.pageWrap {
    width: min(1200px, calc(100% - 56px));
    margin: 0 auto;
}

/* ===== Panel ===== */
.panel {
    margin-top: 28px;
    padding: 28px 30px;
    border-radius: var(--radius2);
    border: 1px solid #e6e6e6;
    background: #fff;
    box-shadow: var(--shadow2);
}

.panel h2 {
    margin: 0 0 14px;
    font-size: 22px;
    font-weight: 1000;
    letter-spacing: -.02em;
}

.panel p {
    margin: 0 0 12px;
    font-size: 13.5px;
    line-height: 2.0;
    font-weight: 900;
    color: #222;
}

/* ===== Definition List（事業者情報） ===== */
.defList {
    margin: 0;
    display: grid;
    gap: 14px;
}

.defList>div {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 14px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #ececec;
}

.defList>div:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.defList dt {
    font-size: 12px;
    font-weight: 1000;
    letter-spacing: .08em;
    color: #666;
    text-transform: uppercase;
}

.defList dd {
    margin: 0;
    font-size: 13.5px;
    font-weight: 900;
    color: #111;
    line-height: 1.8;
}

.defList a {
    color: var(--orange);
    font-weight: 1000;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.defList a:hover {
    opacity: .85;
}

/* ===== Link List（ポリシー・規約一覧） ===== */
.linkList {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.linkList li a {
    display: block;
    padding: 18px 20px;
    border-radius: 18px;
    border: 1px solid #efefef;
    background: #fafafa;
    text-decoration: none;
    transition: border-color .25s var(--ease), background .25s var(--ease);
}

.linkList li a:hover {
    border-color: rgba(255, 46, 46, .28);
    background:
        linear-gradient(135deg,
            rgba(255, 46, 46, .06),
            rgba(255, 90, 90, .04));
}

.linkList .title {
    display: block;
    font-size: 15px;
    font-weight: 1000;
    color: #111;
    letter-spacing: -.01em;
}

.linkList .desc {
    margin-top: 6px;
    display: block;
    font-size: 12.5px;
    font-weight: 900;
    color: #666;
    line-height: 1.8;
}

/* ===== Disclaimer ===== */
.panel p+p {
    margin-top: 10px;
}

/* ===== Links (inside panel) ===== */
.panel a {
    color: var(--orange);
    font-weight: 1000;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.panel a:hover {
    opacity: .85;
}

/* ===== Reveal ===== */
.reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
    will-change: opacity, transform;
}

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

/* ===== Responsive ===== */
@media (max-width: 980px) {

    .panel {
        padding: 22px 18px;
    }

    .defList>div {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .defList dt {
        font-size: 11px;
    }

    .linkList li a {
        padding: 16px;
    }
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {

    .reveal,
    .linkList li a {
        transition: none !important;
    }
}