@charset "UTF-8";

/* --- デザイン変数 --- */
:root {
    --brand-blue: #005bac;
    --dark-blue: #002d56;
    --accent-blue: #3bc9db;
    --bg-light: #f8fbff;
    --text-main: #1a1a1a;
    --text-gray: #4a4a4a;
    --rounded-xl: 3.5rem;
    --rounded-lg: 2.5rem;
    --py-pc: 100px;
    --py-sp: 56px;
    --px-sp: 20px;
    --pc-width: 1140px;
    --padding-side: 15px;
    --breakpoint: 768px;
}

/* --- リセット --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    font-family: "Noto Sans JP", sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

/* --- 共通レイアウト --- */
.l-container {
    max-width: calc(var(--pc-width) + (var(--padding-side) * 2));
    margin: 0 auto;
    padding-left: var(--px-sp);
    padding-right: var(--px-sp);
}

@media screen and (min-width: 769px) {
    .l-container {
        padding-left: 40px;
        padding-right: 40px;
    }
}

.c-bg-text {
    font-size: 15vw;
    line-height: 1;
    font-weight: 900;
    color: rgba(0, 91, 172, 0.02);
    position: absolute;
    z-index: 0;
    white-space: nowrap;
    user-select: none;
    pointer-events: none;
}

/* --- Hero Section --- */
.p-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: flex-end;
    padding: var(--py-sp) var(--px-sp) 100px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.6) 15%, rgba(0, 0, 0, 0) 50%), url("../../img/compact-limini/hero-sp.png");
    background-size: cover;
    background-position: center bottom;
    color: white;
    overflow: hidden;
}



.p-hero__logo {
    margin-bottom: 40px;
}

.p-hero__logo img {
    height: 60px;
    width: auto;
}

.p-hero__content {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    animation: fadeInUp 1.2s ease-out;
}

.p-hero__title {
    font-weight: 600;
    font-size: 42px;
    line-height: 64px;
    letter-spacing: 0.15em;
    margin-bottom: 40px;
}

.p-hero__title span {
    display: block;
    font-size: inherit;
    font-weight: 600;
    color: #fff;
}

.p-hero__desc {
    font-weight: 600;
    font-size: 16px;
    line-height: 32px;
    letter-spacing: 0.15em;
    color: #fff;
}

.p-hero__scroll {
    position: absolute;
    bottom: 100px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.8;
    z-index: 10;
}

@media screen and (min-width: 769px) {
    .p-hero {
        min-height: 100vh;
        padding: var(--py-pc) 80px 100px;
        background-image: linear-gradient(to right, rgba(0, 0, 0, 0.6) 15%, rgba(0, 0, 0, 0) 50%), url("../../img/compact-limini/hero-pc.png");
        background-position: center center;
    }

    .p-hero__logo img {
        height: 80px;
    }

    .p-hero__title {
        font-size: 48px;
        line-height: 64px;
    }

    .p-hero__desc {
        font-size: 32px;
        line-height: 72px;
    }

    .p-hero__scroll {
        right: 80px;
        bottom: 120px;
    }
}

.p-hero__scroll span {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.4em;
    color: #fff;
    margin-bottom: 20px;
    writing-mode: vertical-rl;
}

.p-hero__scroll-line {
    width: 1px;
    height: 45px;
    background: linear-gradient(to bottom, #fff, transparent);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Concept Section --- */
.p-concept {
    padding: var(--py-sp) 0;
    background: white;
    position: relative;
    overflow: hidden;
}

@media screen and (min-width: 769px) {
    .p-concept {
        padding: var(--py-pc) 0;
    }
}

.p-concept__title {
    font-size: 40px;
    font-weight: 700;
    line-height: 60px;
    letter-spacing: 0.15em;
    margin-bottom: 40px;
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 5;
}



@media screen and (min-width: 769px) {
    .p-concept__title {
        font-size: 48px;
        line-height: 64px;
    }
}

.p-concept__text-box {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.p-concept__text-box p {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 40px;
    line-height: 26px;
    letter-spacing: 0.15em;
}

@media screen and (min-width: 769px) {
    .p-concept__text-box p {
        font-size: 16px;
    }
}

.c-text-wavy {
    color: var(--brand-blue);
    text-decoration: underline;
    text-decoration-style: wavy;
    text-decoration-color: var(--accent-blue);
    text-underline-offset: 10px;
}

/* --- Gallery Section --- */
.p-gallery {
    padding: var(--py-sp) 0;
    position: relative;
    overflow: hidden;
}

@media screen and (min-width: 769px) {
    .p-gallery {
        padding: var(--py-pc) 0;
    }
}

.p-gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    align-items: flex-end;
}

@media screen and (min-width: 1024px) {
    .p-gallery__grid {
        gap: 30px;
    }
}

.p-gallery__main {
    grid-column: span 12;
    border-radius: 0;
    overflow: hidden;
    border: 8px solid white;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    transition: 0.5s ease;
}

@media screen and (min-width: 1024px) {
    .p-gallery__main {
        grid-column: span 7;
        border-width: 12px;
    }
}

.p-gallery__main img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

@media screen and (min-width: 1024px) {
    .p-gallery__main img {
        height: 600px;
    }
}

.p-gallery__sub {
    grid-column: span 12;
    position: relative;
}

@media screen and (min-width: 1024px) {
    .p-gallery__sub {
        grid-column: span 5;
        margin-left: -80px;
        margin-bottom: 40px;
    }
}

.p-gallery__sub-img {
    border-radius: 0;
    overflow: hidden;
    border: 8px solid white;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 10;
}

@media screen and (min-width: 1024px) {
    .p-gallery__sub-img {
        border-width: 12px;
    }
}

.p-gallery__sub-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

@media screen and (min-width: 1024px) {
    .p-gallery__sub-img img {
        height: 450px;
    }
}

.p-gallery__box {
    margin-top: 24px;
    background: var(--brand-blue);
    padding: 30px;
    border-radius: var(--rounded-lg);
    color: white;
    transform: rotate(2deg);
    box-shadow: 0 20px 40px rgba(0, 91, 172, 0.3);
    position: relative;
    z-index: 20;
}

@media screen and (min-width: 1024px) {
    .p-gallery__box {
        padding: 40px;
        margin-top: 32px;
    }
}

.p-gallery__box h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 900;
    font-style: italic;
    margin-bottom: 12px;
    line-height: 1.1;
}

.p-gallery__box p {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

/* --- Lineup Section --- */
.p-lineup {
    padding-top: var(--py-sp);
    padding-bottom: var(--py-sp);
    background: #0f1215;
    color: white;
    position: relative;
    overflow: hidden;
}

@media screen and (min-width: 769px) {
    .p-lineup {
        padding-top: var(--py-pc);
        padding-bottom: var(--py-pc);
    }
}

.p-lineup__header {
    margin-bottom: 60px;
}

@media screen and (min-width: 1024px) {
    .p-lineup__header {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        margin-bottom: 80px;
    }
}

.p-lineup__label {
    color: var(--accent-blue);
    font-weight: 900;
    letter-spacing: 0.5em;
    font-size: 13px;
    margin-bottom: 12px;
    display: block;
}

.p-lineup__title {
    font-size: clamp(2.5rem, 10vw, 4.5rem);
    font-weight: 900;
    font-style: italic;
    line-height: 1;
}

.p-lineup__lead {
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: 0.1em;
    color: #b0b0b0;
    max-width: 420px;
    margin-top: 24px;
}

.p-lineup__plan {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 60px;
    position: relative;
    width: 100%;
}

@media screen and (min-width: 1024px) {
    .p-lineup__plan {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: 60px;
        align-items: flex-start;
        margin-bottom: 160px;
    }
}

.p-lineup__plan-desc {
    position: relative;
    order: 1;
    z-index: 5;
}

@media screen and (min-width: 1024px) {
    .p-lineup__plan-desc {
        grid-column: span 4;
        padding-top: 100px;
        order: 2;
    }
}

@media screen and (min-width: 1024px) {
    .p-lineup__plan--reverse .p-lineup__plan-desc {
        order: 1;
    }
}

.p-lineup__plan-bg {
    position: absolute;
    top: -50px;
    left: -20px;
    font-size: clamp(100px, 15vw, 180px);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
    z-index: -1;
    pointer-events: none;
}

.p-lineup__plan-name {
    font-size: clamp(1.75rem, 5vw, 2.25rem);
    font-weight: 900;
    margin-bottom: 6px;
}

.p-lineup__plan-concept {
    color: var(--accent-blue);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.p-lineup__plan-text p {
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: 0.1em;
    color: #b0b0b0;
}

.p-lineup__plan-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    order: 2;
}

@media screen and (min-width: 560px) {
    .p-lineup__plan-images {
        grid-template-columns: repeat(4, 1fr);
        align-items: flex-start;
    }
}

@media screen and (min-width: 1024px) {
    .p-lineup__plan-images {
        grid-column: span 8;
        order: 1;
    }
}

@media screen and (min-width: 1024px) {
    .p-lineup__plan--reverse .p-lineup__plan-images {
        order: 2;
    }
}

.p-lineup__plan-img-main {
    grid-column: span 2;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    height: 250px;
}

@media screen and (min-width: 768px) {
    .p-lineup__plan-img-main {
        height: 500px;
    }
}

.p-lineup__plan-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-lineup__plan-img-sub {
    grid-column: span 1;
    border-radius: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    aspect-ratio: 4 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.p-lineup__plan-img-sub img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

@media screen and (min-width: 1024px) {
    .p-lineup__plan-img-sub--pos1 {
        transform: translateY(40px);
    }

    .p-lineup__plan-img-sub--pos2 {
        transform: translateY(80px);
    }
}

.p-lineup__plan-img-label {
    color: rgba(255, 255, 255, 0.2);
    font-weight: 900;
    font-size: 10px;
    text-align: center;
    padding: 20px;
    z-index: 1;
}