@charset "utf-8";

/* * {
    outline: orange solid 1px;
} */

body {
    background-color: #E7E7E8;
    overflow-x: hidden;
    box-sizing: border-box;
}

.ttl {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding-bottom: 40px;
    position: relative;
    color: #000;
}

.ttl::after {
    display: block;
    content: "";
    background: #A8ABAF;
    width: 60px;
    height: 4px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.ttl h1 {
    font-size: 4rem;
    line-height: 1.225;
    letter-spacing: 0.05em;
    color: #A8ABAF;
}

@media only screen and (max-width: 47.9375em) {
    .ttl h3 {
        font-size: 7.4666666667vw;
    }
}

.ttl h3 {
    font-size: 2.4rem;
    font-weight: bold;
    letter-spacing: 0.1em;
}

@media only screen and (max-width: 47.9375em) {
    .ttl span {
        font-size: 4.2666666667vw;
    }
}

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

a:hover {
    color: #FFF;
}


/* 
ANIMATION
*/
.fadein-init {
    opacity: 0;
    transform: translateY(30px);
}

.fadein-init.fadein-active {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1s ease-out, transform 1s ease-out;
}


/* style */
section:nth-child(1) {
    border-bottom: none;
}


#hero {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    padding: 0;
}

.hero__img--dummy {
    width: 100%;
    aspect-ratio: 1040 / 515;
}

.hero__img {
    display: block;
    width: 100%;
    height: auto;
    position: fixed;
    z-index: 0;
    object-fit: cover;
    top: 78px;
    left: 0;
}

@media (max-width: 640px) {
    .hero__img--dummy {
        aspect-ratio: 640 / 880;
    }
}


.concept {
    width: 100%;
    padding: 0;

}

.concept__wrapper {
    width: 100%;
    margin: 0 auto;
    align-items: center;
}

.concept__wrapper--nexia img {
    display: block;
    width: 34%;
    margin: 10px auto;
    object-fit: contain;
}

.concept__wrapper--nexia p {
    width: 100%;
    margin: 54px auto;
    font-size: 18px;
    letter-spacing: 0.2vw;
    line-height: 1.65;
}

.concept__img-linea--logo-pc {
    display: block;
    width: 20%;
    margin: 10px auto;
    margin-top: -150px;
    object-fit: contain;
}

.concept__label {
    width: 100%;
    margin: 40px auto;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.2vw;
    color: #A8ABAF;
}

.concept__text--linea {
    line-height: 2;
}

.concept__product-group {
    width: 80%;
    height: auto;
    gap: 80px;
    margin: 120px auto;
}

.caption {
    text-align: center;
}

.concept__img-linea--logo-sp {
    display: none;
}

@media (max-width: 640px) {

    .concept__wrapper--nexia img {
        width: 50%;
        margin: 0 auto;
    }

    .concept__wrapper--nexia p {
        text-align: left;
        font-size: 3.6vw;
        letter-spacing: -0.1vw;
        line-height: 1.65;
    }

    .concept__img-linea--logo-pc {
        width: 30%;
        margin: -14vw auto 40px auto;
    }

    .concept__label {
        margin-top: 0;
    }

    .concept__product-group {
        width: 100%;
        gap: 6vw;
        margin: 60px auto 40px auto;
    }
}


.feature__ttl {
    margin-bottom: 100px;
}

/* 機能アイコン一覧 */
.icon__copy {
    font-size: 20px;
    text-align: center;
    letter-spacing: 0.6vw;
}

.feature__icons {
    width: 80%;
    margin: 60px auto;
}

.icon__main-feature {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(1, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}

.icon__sub-feature {
    width: 50%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 18px;
    grid-row-gap: 18px;
    margin: 40px auto;
}

.icon {
    width: 100%;
}

@media (max-width: 640px) {

    .feature__icons {
        width: 100%;
        margin: 60px auto;
    }

    .icon__main-feature {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    .icon__main-feature .icon {
        width: 30%;
    }

    .icon__sub-feature {
        width: 70%;
        grid-column-gap: 8px;
        grid-row-gap: 8px;
        margin: 40px auto;
    }
}


.feature__item {
    width: 100%;
    align-items: center;
    margin: 100px auto 0 auto;
}

.feature__item-label {
    font-size: 64px;
    font-weight: 900;
    color: #bcbcbc;
    margin-bottom: 10px;
}

.feature__item-ttl {
    width: 100%;
    margin: 24px auto 40px auto;
    font-size: 36px;
    font-weight: 800;
    line-height: 2;
}

.feater__item-sub--ttl {
    display: inline;
    width: 100%;
    font-size: 24px;
    font-weight: 800;
    line-height: 2;
    background: linear-gradient(transparent 60%, #d4d4d4 60%);
}

.feature__item-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin: 60px auto;
}


@media (max-width: 640px) {

    .feature__item-label {
        font-size: 48px;
    }

    .feature__item-ttl {
        font-size: 20px;
        font-weight: 900;
        margin: 20px auto;
    }

    .feater__item-sub--ttl {
        font-size: 18px;
        font-weight: 600;
    }

    .feature__item-text {
        font-size: 16px;
    }

    .feature__item-img img {
        margin: 20px auto;
    }

}


.group-ttl {
    margin: 10px auto 100px auto;
}

.group-ttl div {
    font-size: 32px;
    font-weight: bold;
    color: #a8abaf;
}

.group-ttl span {
    display: inline-block;
    color: #FFF;
    background-color: #000;
    padding: 8px 40px;
    margin: 20px auto;
    border-radius: 2px;
    font-size: 20px;
    font-weight: 700;

}

.situation__card {
    text-align: left;
    align-items: center;
    margin: 20px auto;
}

.situation__card:nth-child(odd) .situation__card-img {
    width: 46%;
    height: auto;
    display: block;
    object-fit: contain;
    text-align: left;
}

.situation__card:nth-child(even) .situation__card-img {
    width: 46%;
    height: auto;
    display: block;
    object-fit: contain;
    text-align: right;
}

.situation__card-ttl {
    font-size: 24px;
    font-weight: bold;
    margin: 18px 0;
}

.feature__item-content {
    text-align: center;
}

/* @media (max-width: 640px) {
    .group-ttl {
        margin: 10px auto;
    }

    .group-ttl div {
        font-size: 24px;
    }

    .group-ttl span {
        padding: 4px 20px;
        margin: 0 auto;
        border-radius: 0;
        font-size: 18px;
    }

    .situation__card {
        margin: 0 auto;
    }

    .situation__card:nth-child(odd) .situation__card-img,
    .situation__card:nth-child(even) .situation__card-img {
        width: 50%;
        height: auto;
        display: block;
        object-fit: contain;
        text-align: left;
    }

    .situation__card-ttl {
        font-size: 20px;
        font-weight: bold;
        margin: 2px 0;
    }

    .situation__card-text {
        font-size: 16px;
        margin: 0;
    }

    .feature__item-content {
        text-align: center;
    }
} */

@media (max-width: 640px) {

    .group-ttl {
        margin: 10px auto;
    }

    .group-ttl div {
        font-size: 24px;
    }

    .group-ttl span {
        padding: 4px 20px;
        margin: 0 auto;
        border-radius: 0;
        font-size: 18px;
    }

    .situation__card {
        margin: 0 auto;
    }

    .accordion-gallery {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        margin: 40px auto 160px auto;
    }

    .linea__accordion-item {
        width: 90%;
        position: relative;
        overflow: hidden;
        aspect-ratio: 8 / 1;
        transition: aspect-ratio 0.6s ease, transform 0.6s ease;
        cursor: pointer;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        margin: 0 auto;
    }

    /* .linea__accordion-item:nth-of-type(odd) {
        display: block;
        margin: 0 auto 0 0;
    }

    .linea__accordion-item:nth-of-type(even) {
        display: block;
        margin: 0 0 0 auto;
    } */


    .linea__accordion-item .overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to right, rgba(0, 0, 0, 0.7), transparent);
        transition: opacity 0.6s ease;
        z-index: 1;
        pointer-events: none;
    }

    .linea__accordion-item .heading {
        position: absolute;
        top: 6px;
        left: 16px;
        z-index: 5;
        color: white;
        font-size: 18px;
        font-weight: bold;
        pointer-events: none;
        transition: color 0.6s ease;

        text-shadow:
            0 0 4px rgba(0, 0, 0, 0.6),
            0 0 8px rgba(0, 0, 0, 0.5),
            0 0 12px rgba(0, 0, 0, 0.4);
    }

    .linea__accordion-item .caption {
        position: absolute;
        bottom: 12px;
        right: 12px;
        color: white;
        text-align: right;
        padding: 2px 8px;
        font-size: 14px;
        border-radius: 4px;
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 2;
        text-shadow:
            0 0 4px rgba(0, 0, 0, 0.6),
            0 0 8px rgba(0, 0, 0, 0.5),
            0 0 12px rgba(0, 0, 0, 0.4);
    }

    .linea__accordion-item.active {
        aspect-ratio: 16 / 9;
        z-index: 2;
    }

    .linea__accordion-item.active .overlay {
        opacity: 0;
    }

    .linea__accordion-item.active .caption {
        opacity: 1;
    }

    .linea__accordion-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.4s ease, opacity 0.4s ease;
    }

    .linea__accordion-item {
        opacity: 1;
        backface-visibility: hidden;
        -webkit-transform: translateZ(0);
    }

    .linea__accordion-item img {
        opacity: 1;
        backface-visibility: hidden;
        -webkit-transform: translateZ(0);
    }
}

/* Safari描画安定化 */
.linea__accordion-item .heading,
.linea__accordion-item .overlay {
    will-change: transform, opacity;
    transform: translateZ(0);
}


/* 計測方法 */
.original__item {
    margin: 40px auto;
}

.content-ttl {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.8rem;
    margin: 0 auto 22px auto;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.card-slider {
    margin-inline: auto;
    width: 100%;
}

.card {
    margin: 0 10px;
}

.card img {
    height: auto;
    width: 100%;
}

.arrow_box {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.slide-arrow {
    width: 60px;
    height: 60px;
    background-color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-right: 10px;
}

.slide-arrow img {
    width: 30px;
    height: auto;
    display: block;
    pointer-events: none;
}

@media (max-width: 768px) {
    .original__sp img {
        margin: 10px auto;
    }

    .card {
        margin: 0 4px;
    }
}


/* 高低差機能 */
.slope__ttl {
    margin-bottom: 100px;
}

.slope__card {
    width: 100%;
    margin: 80px auto 100px auto;
    gap: 5vw;
}

.slope__card-img {
    width: 54%;
}

.slope__card-img img {
    width: 100%;
    object-fit: contain;
}

.slope__card-content {
    width: 40%;
}

.slope__card:nth-of-type(1) {
    margin-top: 80px;
}

.slope__card:nth-of-type(2) {
    margin-top: 100px;
}

.slope__cards img {
    width: 50%;
}

.slope__card-content {
    margin: auto 0;
}

.slope__card-ttl {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 18px;
}

.slope__card-text {
    font-size: 16px;
}

.slope__card-text--note {
    color: red;
    font-size: 14px;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .slope__ttl {
        margin-bottom: 40px;
    }

    .slope .content-ttl {
        width: 90%;
        letter-spacing: 0;
        font-size: 18px;
    }

    .slope__card {
        width: 100%;
        flex-direction: column;
    }

    .slope__card-img {
        width: 90%;
        margin: 0 auto;
    }

    .slope__card-content {
        width: 90%;
        margin: 0 auto;
    }
}



/* その他特長 */
.functions__ttl {
    margin: 40px auto;
}

.functions__slider {
    width: 100%;
}

.functions__card:first-child {
    margin-left: 120px;
}

.functions__card {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin: 0 10px;
}

.functions__card div {
    margin-top: 20px;
    font-weight: bold;
}

.functions .arrow_box {
    text-align: left;
    margin-left: 120px;
}

@media (max-width: 768px) {

    .functions__card:first-child,
    .functions .arrow_box {
        margin-left: 60px;
    }

}


.specs__image {
    width: 92%;
    height: auto;
    display: block;
    margin: 60px auto;
    padding-left: 70px;
}

.specs__table {
    width: 80%;
    margin: 0 auto;
    text-align: left;
    border-collapse: collapse;
}

.specs__label-ttl,
.specs__value-ttl {
    font-weight: bold;
    color: #A8ABAF;
    padding: 10px;
    border-bottom: 1px solid #000;
}

.specs__label,
.specs__value {
    padding: 12px;
    border-bottom: 1px solid #000;
    vertical-align: top;
}

.specs__note,
.attention {
    width: 80%;
    margin: 20px auto;
    font-size: 16px;
    gap: 40px;
    justify-content: center;
}

.specs__note {
    text-align: center;
}

.attention img {
    width: 10%;
    object-fit: contain;
}

@media (max-width: 640px) {
    .specs__image {
        width: 100%;
        padding-left: 0;
    }

    .specs__table {
        width: 100%;
    }

    .specs__label {
        width: 30%;
    }

    .specs__note {
        text-align: left;
    }

    .attention img {
        width: 20%;
        margin: 10px auto 0 auto;
    }

    .attention__text {
        margin-top: 0;
    }

    .specs__note,
    .attention {
        width: 100%;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

}


.series {
    width: 100%;
}

.series__card {
    width: 100%;
    gap: 100px;
    margin-bottom: 100px;
}

.series__card-image {
    width: 40%;
    height: auto;
    display: block;
    object-fit: contain;
}

.series__card-logo {
    height: 10%;
    max-height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
}

@media (max-width: 640px) {
    .series__title .sn__h1 {
        font-size: 40px;
    }

    .series__title .sn__h3 {
        font-size: 26px;
        margin-bottom: 60px;
    }

    .series__card {
        flex-direction: column;
        gap: 20px;
    }

    .series__card-image {
        width: 80%;
        margin: 10px auto;
    }

    .series__card-logo {
        height: 24px;
        max-height: 100px;
        margin-bottom: 20px;
    }

    .series__card button {
        display: block;
        margin: 10px auto;
    }
}


.fade-slider-wrapper {
    position: relative;
    height: 100vh;
    overflow: hidden;
}