﻿.medical-goods-editor {
    /* Main Visual */
    .mv {
        width: 100%;
        position: relative;
    }
    .mv-title {
        width: 20rem;
        height: 18.2rem;
        position: absolute;
        top: 3rem;
        left: 2rem;
    }
    .mv-title img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center center;
    }
    .mv-img img {
        display: block;
        width: 100%;
        height: auto;
    }
    @media screen and (min-width: 768px) {
        .mv {
            width: 100%;
            aspect-ratio: 1920 / 808;
        }
        .mv-title {
            width: calc(401 / 1920 * 100vw);
            height: auto;
            aspect-ratio: 401 / 368;
            top: calc(187 / 1920 * 100vw);
            left: calc(50% - ((401 / 1920 * 100vw) + (165 / 1920 * 100vw)));
        }
        .mv-img {
            height: 100%;
        }
        .mv-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
        }
    }

    /* Navigation */
    .fixed-sp {
        display: none;
    }
    .navigation {
        background-color: var(--color-red);
    }
    .navigation-list {
        display: flex;
        flex-wrap: wrap;
    }
    .navigation-list--item {
        width: calc(100% / 3);
    }
    @media screen and (max-width: 767px) {
        .navigation-list--item {
            border-bottom: 1px solid #fff;
        }
        .navigation-list--item:not(:nth-child(3n + 1)) {
            border-left: 1px solid #fff;
        }
    }
    .navigation-list--item a {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 4.9rem;
        font-size: 1.4rem;
        font-weight: bold;
        color: #fff;
    }
    @media screen and (max-width: 767px) {
        .navigation-list--item.-technology a {
            letter-spacing: -.04em;
        }
    }
    .navigation-list--item a::after {
        display: block;
        content: "";
        width: 1.2rem;
        height: 1.2rem;
        border-right: 2px solid #fff;
        border-bottom: 2px solid #fff;
        rotate: 45deg;
    }
    
    /* fixed */
    @media screen and (max-width: 767px) {
        .navigation-inner.-is-fixed {
            width: 100%;
            background-color: rgba(237,237,237, .95);
            position: fixed;
            top: -100%;
            left: 0;
            z-index: 100;
            transition: all 0.5s;
        }
        .navigation-inner.-is-fixed .navigation-list {
            flex-wrap: nowrap;
            padding: .9rem 0;
        }
        .navigation-inner.-is-fixed .navigation-list--item {
            width: calc(100% / 6);
            border: none !important;
        }
        .navigation-inner.-is-fixed .navigation-list--item + .navigation-list--item {
            border-left: 1px solid var(--color-red) !important;
        }
        .navigation-inner.-is-fixed a {
            height: 3.8rem;
            font-size: calc(14 / 596 * 100 * 1vw);
            color: var(--color-red);
            text-align: center;
            padding-bottom: 1rem;
            position: relative;
        }
        .navigation-inner.-is-fixed a::after {
            width: .6rem;
            height: .6rem;
            border-right: 1px solid var(--color-red);
            border-bottom: 1px solid var(--color-red);
            position: absolute;
            bottom: .3rem;
            left: 50%;
            translate: -50% 0;
        }
        .navigation-inner.-is-fixed a .fixed-sp {
            display: block;
        }
    }
    @media screen and (min-width: 768px) {
        .navigation-inner {
            padding: 2rem 0;
        }
        .navigation-list {
            width: 1260px;
            max-width: 100%;
            flex-wrap: nowrap;
            margin: 0 auto;
        }
        .navigation-list--item {
            width: calc(100% / 6);
            border-bottom: none;
            border-right: 1px solid #fff;
        }
        .navigation-list--item {
            border-left: 1px solid #fff;
        }
        .navigation-list--item a {
            height: 5.4rem;
        }
        .navigation-list--item a::after {
            width: .8rem;
            height: .8rem;
        }
        /* fixed */
        .navigation-inner.-is-fixed {
            width: 100%;
            background-color: rgba(237,237,237, .95);
            position: fixed;
            top: -100%;
            left: 0;
            z-index: 100;
            transition: all 0.5s;
            padding: 1.4rem 0;
        }
        .navigation-inner.-is-fixed .navigation-list {
            flex-wrap: nowrap;
            width: 100%;
            max-width: 1035px;
        }
        .navigation-inner.-is-fixed .navigation-list--item {
            width: calc(100% / 6);
            border-left: 1px solid var(--color-red);
        }
        .navigation-inner.-is-fixed .navigation-list--item:last-child {
            border-right: 1px solid var(--color-red);
        }
        .navigation-inner.-is-fixed a {
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            column-gap: 1.1rem;
            height: 3.2rem;
            font-size: 1.3rem;
            color: var(--color-red);
            padding: 0 1rem;
        }
        .navigation-inner.-is-fixed a::after {
            border-right: 2px solid var(--color-red);
            border-bottom: 2px solid var(--color-red);
            translate: 0 -.2rem;
        }
        @media screen and (max-width: 904px) {
            .navigation-inner.-is-fixed a {
                font-size: 1.1rem;
            }
        }
    }

    /* About */
    .about {
        display: flex;
        flex-direction: column;
        padding: 4rem 0;
    }
    .about-title {
        order: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0;
    }
    .about-title--img {
        width: 26.4rem;
    }
    .about-title--text {
        font-size: 1.8rem;
        color: var(--color-red);
        line-height: 1.8;
        font-weight: bold;
        letter-spacing: .16em;
        text-align: center;
        margin-top: 0;
    }
    .about-img1 {
        order: 3;
        width: 100%;
        margin-top: 3.5rem;
    }
    .about-img2 {
        order: 4;
        width: 37rem;
        margin: 3rem auto 0;
    }
    .about-img1 img,
    .about-img2 img {
        display: block;
        width: 100%;
        height: auto;
    }
    .about-text {
        order: 2;
        font-size: 1.4rem;
        font-weight: bold;
        line-height: 2;
        text-align: center;
        letter-spacing: .2em;
        margin-top: 1rem;
    }
    @media screen and (min-width: 768px) {
        .about {
            padding: 6.8rem 2rem 8rem;
        }
        .about-title {
            order: 1;
        }
        .about-title--img {
            width: 40.7rem;
        }
        .about-title--text {
            font-size: 3.2rem;
            margin-top: .5rem;
        }
        .about-img1 {
            order: 2;
            width: 108rem;
            max-width: 100%;
            margin: 5rem auto 0;
        }
        .about-img2 {
            order: 4;
            width: 82.5rem;
            max-width: 100%;
            margin: 6rem auto 0;
        }
        .about-text {
            order: 3;
            font-size: 1.6rem;
            font-weight: 500;
            margin-top: 5.3rem;
            line-height: 2.6;
        }
    }

    /* feature */
    .feature {
        background-color: var(--medical-gray1);
        padding: 4rem 0 3.8rem;
        overflow: hidden;
    }
    .feature-title {
        width: fit-content;
        font-size: 2rem;
        color: var(--color-red);
        font-weight: bold;
        text-align: center;
        line-height: 1;
        padding: .8rem .4rem 1rem;
        border-top: 1px solid var(--color-red);
        border-bottom: 1px solid var(--color-red);
        margin: 0 auto;
    }
    .feature-content {
        margin-top: 3rem;
    }
    .feature-content + .feature-content {
        margin-top: 2rem;
    }
    .feature-content--img {
        width: 26rem;
        margin: 0 auto;
        position: relative;
    }
    .feature-point--item {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 4.7rem;
        font-size: 1rem;
        color: #999;
        line-height: 1;
        aspect-ratio: 1/1;
        border: 1px solid #999;
        border-radius: 50%;
        position: absolute;
        cursor: pointer;
    }
    /* .feature-point--item:hover, */
    .feature-point--item.-is-active {
        color: var(--color-red);
        border-color: var(--color-red);
    }
    /* tops1 */
    .feature-content.-tops-1 .feature-point--item[data-slide-index="0"] {
        top: 10.9rem;
        left: 4rem;
    }
    .feature-content.-tops-1 .feature-point--item[data-slide-index="1"] {
        top: 8.5rem;
        left: 16rem;
    }
    .feature-content.-tops-1 .feature-point--item[data-slide-index="2"] {
        top: 24.5rem;
        left: 12rem;
    }
    .feature-content.-tops-1 .feature-point--item[data-slide-index="3"] {
        top: 15rem;
        left: 17.5rem;
    }
    /* tops2 */
    .feature-content.-tops-2 .feature-point--item[data-slide-index="0"] {
        top: 9.8rem;
        left: 7rem;
    }
    .feature-content.-tops-2 .feature-point--item[data-slide-index="1"] {
        top: 25rem;
        left: 13.3rem;
    }
    .feature-content.-tops-2 .feature-point--item[data-slide-index="2"] {
        top: 12.2rem;
        left: 14.5rem;
    }
    .feature-content.-tops-2 .feature-point--item[data-slide-index="3"] {
        top: 19.2rem;
        left: 7.3rem;
    }
    /* bottoms1 */
    .feature-content.-bottoms-1 .feature-point--item[data-slide-index="0"] {
        top: 1.4rem;
        left: 5.3rem;
    }
    .feature-content.-bottoms-1 .feature-point--item[data-slide-index="1"] {
        top: 12.7rem;
        left: 14rem;
    }
    .feature-content.-bottoms-1 .feature-point--item[data-slide-index="2"] {
        top: 19.5rem;
        left: 7.4rem;
    }
    /* bottoms2 */
    .feature-content.-bottoms-2 .feature-point--item[data-slide-index="0"] {
        top: 7.5rem;
        left: 7.4rem;
    }
    .feature-content.-bottoms-2 .feature-point--item[data-slide-index="1"] {
        top: 5.3rem;
        left: 15rem;
    }
    .feature-content.-bottoms-2 .feature-point--item[data-slide-index="2"] {
        top: 19.3rem;
        left: 12.7rem;
    }

    .feature-slide {
        margin-top: 3rem;
    }
    .feature-slide--title {
        font-size: 1.8rem;
        font-weight: bold;
        color: var(--color-red);
        letter-spacing: .08em;
        line-height: 1.36;
        text-align: center;
    }
    .feature-slide .swiper-container {
        width: 30rem;
        margin: 0 auto;
        /* padding: 0 1rem; */
        position: relative;
        overflow: hidden;
    }
    .feature-slide .swiper-container  .swiper-button-prev,
    .feature-slide .swiper-container  .swiper-button-next {
        background: none;
        width: 1rem;
        height: 1rem;
        border-top: 1px solid #000;
        border-left: 1px solid #000;
        top: calc(12.5rem / 2 - .5rem);
    }
    .feature-slide .swiper-container  .swiper-button-prev {
        rotate: -45deg;
        left: 1.1rem;
    }
    .feature-slide .swiper-container  .swiper-button-next {
        rotate: 135deg;
        right: 1.1rem;
    }
    .feature-slide--item {
        /* padding: 0 1rem; */
    }
    .feature-slide:not(:has(.swiper-initialized)) .feature-slide--item + .feature-slide--item {
        display: none;
    }
    .feature-content .swiper-pagination {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        row-gap: 1rem;
        width: fit-content;
        height: 100%;
        left: inherit;
        right: -2rem;
        top: 0;
    }
    .feature-content .swiper-pagination .swiper-pagination-bullet {
        width: 1rem;
        height: 1rem;
        margin: 0;
        background: none;
        border: 1px solid var(--color-red);
        opacity: 1;
    }
    .feature-content .swiper-pagination .swiper-pagination-bullet-active {
        background: var(--color-red);
    }
    .feature-slide--img {
        padding: 0 3.2rem;
        border-radius: 1rem;
        overflow: hidden;
    }
    .feature-slide--red {
        font-size: 1.6rem;
        color: var(--color-red);
        font-weight: bold;
        letter-spacing: .06em;
        text-align: center;
        margin-top: 1.5rem;
    }
    .feature-slide--text {
        font-size: 1.4rem;
        font-weight: 500;
        line-height: 2;
        letter-spacing: .2em;
        text-align: center;
        margin-top: 1rem;
    }
    .feature-h3 {
        width: fit-content;
        font-size: 2rem;
        color: var(--color-red);
        font-weight: bold;
        line-height: 1;
        padding: .6rem 0 .9rem;
        border-top: 1px solid var(--color-red);
        border-bottom: 1px solid var(--color-red);
        margin: 4.3rem auto 0;
    }
    .feature-list {
        display: flex;
        flex-direction: column;
        row-gap: 2rem;
        padding: 0 3rem;
        margin-top: 2rem;
    }
    .feature-list--item {
        display: flex;
        align-items: flex-start;
        column-gap: 1.8rem;
    }
    .feature-list--img {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 9rem;
        aspect-ratio: 1/1;
    }
    .feature-list--img img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center center;
    }
    .feature-list--content {
        width: calc(100% - (9rem - 1.8rem));
    }
    .feature-list--red {
        font-size: 1.6rem;
        color: var(--color-red);
        font-weight: bold;
        letter-spacing: .08em;
    }
    .feature-list--text {
        font-size: 1.2rem;
        font-weight: 500;
        line-height: 2;
        letter-spacing: .12em;
        margin-top: 1rem;
    }
    .feature-list--text span {
        display: block;
        font-size: .8rem;
        font-weight: bold;
        letter-spacing: .04em;
    }

    /* Feature Img */
    .feature-img {
        margin-top: 4.8rem;
    }
    .feature-img img {
        display: block;
        width: 100%;
        height: auto;
    }
    @media screen and (min-width: 768px) {
        .feature {
            padding: 7.5rem 0;
        }
        .feature-title {
            font-size: 3.2rem;
            padding: .8rem .4rem 1.6rem;
            border-top-width: 2px;
            border-bottom-width: 2px;
        }
        .feature-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 92rem;
            max-width: calc(100% - 4rem);
            margin: 7rem auto 0;
        }
        .feature-content + .feature-content {
            margin-top: 6.2rem;
        }
        .feature-content--img {
            width: 46rem;
            margin: 0;
            padding-left: 1.8rem;
            padding-right: 6.2rem;
        }
        .feature-point--item {
            width: 7rem;
            font-size: 1.4rem;
        }
        .feature-point--item:hover,
        .feature-point--item.-is-active {
            color: var(--color-red);
            border-color: var(--color-red);
        }
        /* tops1 */
        .feature-content.-tops-1 .feature-point--item[data-slide-index="0"] {
            top: 15.7rem;
            left: 7.8rem;
        }
        .feature-content.-tops-1 .feature-point--item[data-slide-index="1"] {
            top: 12.2rem;
            left: 25.4rem;
        }
        .feature-content.-tops-1 .feature-point--item[data-slide-index="2"] {
            top: 35.3rem;
            left: 19.4rem;
        }
        .feature-content.-tops-1 .feature-point--item[data-slide-index="3"] {
            top: 22rem;
            left: 27.5rem;
        }
        /* tops2 */
        .feature-content.-tops-2 .feature-point--item[data-slide-index="0"] {
            top: 14.5rem;
            left: 12rem;
        }
        .feature-content.-tops-2 .feature-point--item[data-slide-index="1"] {
            top: 36.6rem;
            left: 21.3rem;
        }
        .feature-content.-tops-2 .feature-point--item[data-slide-index="2"] {
            top: 18rem;
            left: 23rem;
        }
        .feature-content.-tops-2 .feature-point--item[data-slide-index="3"] {
            top: 28.2rem;
            left: 12.6rem;
        }
        /* bottoms1 */
        .feature-content.-bottoms-1 .feature-point--item[data-slide-index="0"] {
            top: 1.5rem;
            left: 10rem;
        }
        .feature-content.-bottoms-1 .feature-point--item[data-slide-index="1"] {
            top: 17.8rem;
            left: 22.5rem;
        }
        .feature-content.-bottoms-1 .feature-point--item[data-slide-index="2"] {
            top: 27.8rem;
            left: 13rem;
        }
        /* bottoms2 */
        .feature-content.-bottoms-2 .feature-point--item[data-slide-index="0"] {
            top: 11.6rem;
            left: 13rem;
        }
        .feature-content.-bottoms-2 .feature-point--item[data-slide-index="1"] {
            top: 8rem;
            left: 24rem;
        }
        .feature-content.-bottoms-2 .feature-point--item[data-slide-index="2"] {
            top: 28.5rem;
            left: 20.8rem;
        }

        .feature-slide {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 46rem;
            padding-left: 2rem;
            margin-top: 0;
        }
        .feature-slide--title {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
        }
        .feature-slide .swiper-container {
            /* width: 40.1rem; */
            width: 100%;
            margin: 0 auto;
            padding: 0;
        }
        .feature-slide--wrap {
            align-items: center;
        }
        .feature-slide .swiper-container .swiper-button-prev,
        .feature-slide .swiper-container .swiper-button-next {
            width: 1.5rem;
            height: 1.5rem;
            border-top-width: 2px;
            border-left-width: 2px;
            top: calc(20.9rem / 2 - .8rem);
        }
        .feature-slide .swiper-container .swiper-button-prev {
            left: 1.1rem;
        }
        .feature-slide .swiper-container .swiper-button-next {
            right: 1.1rem;
        }
        .feature-slide--item {
            padding: 0 1rem;
        }
        .feature-content .swiper-pagination {
            display: flex;
            flex-direction: row;
            row-gap: 1.6rem;
            column-gap: 1.6rem;
            width: 38rem;
            height: fit-content;
            left: 0;
            right: inherit;
            top: inherit;
            bottom: -3rem;
        }
        .feature-content .swiper-pagination .swiper-pagination-bullet {
            width: 1.5rem;
            height: 1.5rem;
        }
        .feature-slide--img {
            padding: 0 1.8rem;
            border-radius: .8rem;
        }
        .feature-slide--red {
            font-size: 2.2rem;
            margin-top: 2.6rem;
        }
        .feature-slide--text {
            font-size: 1.6rem;
            margin-top: 1.4rem;
            letter-spacing: .19em;
        }
        .feature-h3 {
            width: 100%;
            max-width: 1080px;
            font-size: 2.8rem;
            padding: 0;
            border: none;
            margin: 7.4rem auto 0;
        }
        .feature-list {
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: flex-start;
            column-gap: 2rem;
            row-gap: 2rem;
            width: 100%;
            max-width: 1080px;
            padding: 0;
            margin: 4.2rem auto 0;
        }
        .feature-list--item {
            display: flex;
            align-items: flex-start;
            column-gap: 1rem;
            min-width: max(34rem, calc((100% - (2rem * 2)) / 3));
            width: fit-content;
        }
        .feature-list--img {
            width: 7.6rem;
        }
        .feature-list--content {
            width: calc(100% - (7.6rem - 1rem));
        }
        .feature-list--red {
            font-size: 2rem;
        }
        .feature-list--text {
            font-size: 1.4rem;
            line-height: 1.5;
            letter-spacing: .04em;
            margin-top: 0;
        }
        .feature-list--text span {
            font-size: 1.1rem;
            font-weight: 400;
            letter-spacing: .12em;
        }

        /* Feature Img */
        .feature-img {
            width: 100%;
            max-width: 1440px;
            margin: 8rem auto 0;
        }
    }

    /* Technology */
    .technology {
        margin-top: 5.2rem;
        padding-bottom: 5rem;
    }
    .technology-title {
        width: fit-content;
        font-size: 2rem;
        font-weight: bold;
        color: var(--color-red);
        margin: 0 auto;
        padding: .6rem 0 .1rem;
        border-top: 1px solid var(--color-red);
        border-bottom: 1px solid var(--color-red);
    }
    .technology-logo {
        width: 20.3rem;
        height: 4.7rem;
        margin: 2rem auto 0;
    }
    .technology-logo img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center center;
    }
    .technology-lead {
        font-size: 1.4rem;
        font-weight: 500;
        line-height: 2;
        letter-spacing: .2em;
        text-align: center;
        margin-top: 1.7rem;
    }
    .technology-info {
        width: 35rem;
        margin: 3rem auto 0;
    }
    .technology-info--item {
        display: flex;
        align-items: center;
        padding: 1.2rem 1rem 1.2rem;
        border: 1px solid var(--color-red);
    }
    .technology-info--item + .technology-info--item {
        border-top: none;
        position: relative;
    }
    .technology-info--item + .technology-info--item::before {
        display: block;
        content: "";
        width: 1.5rem;
        height: 1.5rem;
        background-color: #fff;
        border-right: 1px solid var(--color-red);
        border-bottom: 1px solid var(--color-red);
        rotate: 45deg;
        position: absolute;
        top: -.7rem;
        left: 7rem;
    }
    .technology-info--item:nth-child(1) {
        border-radius: .5rem .5rem 0 0;
    }
    .technology-info--item:nth-last-child(1 of .technology-info--item) {
        border-radius: 0 0 .5rem .5rem;
    }
    .technology-info--text {
        width: calc(100% - 17.8rem);
        font-size: 1.4rem;
        font-weight: bold;
        color: var(--color-red);
        letter-spacing: .08em;
        text-align: center;
    }
    .technology-info--img {
        width: 17.8rem;
        border-radius: .4rem;
        overflow: hidden;
    }
    .technology-info--note {
        font-size: .8rem;
        color: var(--color-red);
        font-weight: bold;
        letter-spacing: .04em;
        text-align: right;
        margin-top: .7rem;
    }
    .technology-h3 {
        font-size: 1.8rem;
        font-weight: bold;
        color: var(--color-red);
        letter-spacing: .08em;
        text-align: center;
        margin-top: 2.8rem;
    }
    .technology-img {
        width: 100%;
        margin-top: -1.3rem;
    }
    .technology-img img {
        display: block;
        width: 100%;
        height: auto;
    }
    @media screen and (min-width: 768px) {
        .technology {
            margin-top: 8.8rem;
            padding-bottom: 8rem;
        }
        .technology-title {
            font-size: 3.2rem;
            padding: .5rem 0 .2rem;
            border-top-width: 2px;
            border-bottom-width: 2px;
        }
        .technology-logo {
            width: 40.3rem;
            height: 9.35rem;
            margin: 4.5rem auto 0;
        }
        .technology-lead {
            font-size: 2.2rem;
            letter-spacing: .06em;
            margin-top: 2.2rem;
        }
        .technology-info {
            width: 95.8rem;
            margin: 6rem auto 0;
        }
        .technology-info--item {
            padding: 2rem 2rem 1.8rem;
            border-width: 2px;
        }
        .technology-info--item + .technology-info--item::before {
            width: 3.5rem;
            height: 3.5rem;
            border-right-width: 2px;
            border-bottom-width: 2px;
            top: -1.8rem;
            left: 26.6rem;
        }
        .technology-info--item:nth-child(1) {
            border-radius: .8rem .8rem 0 0;
        }
        .technology-info--item:nth-last-child(1 of .technology-info--item) {
            border-radius: 0 0 .8rem .8rem;
        }
        .technology-info--text {
            width: calc(100% - 38.2rem);
            font-size: 2.8rem;
        }
        .technology-info--img {
            width: 38.2rem;
            border-radius: .8rem;
        }
        .technology-info--note {
            font-size: 1.6rem;
            margin-top: 1rem;
        }
        .technology-h3 {
            font-size: 2.8rem;
            letter-spacing: .02em;
            margin-top: 7rem;
            margin-bottom: 0;
        }
        .technology-img {
            width: 83rem;
            margin: 0 auto;
        }
    }

    /* Color */
    .color {
        background-color: var(--medical-gray1);
        padding: 4rem 0 5rem;
    }
    .color-title {
        width: fit-content;
        font-size: 2rem;
        color: var(--color-red);
        font-weight: bold;
        text-align: center;
        margin: 0 auto;
        padding: .6rem 0 0;
        border-top: 1px solid var(--color-red);
        border-bottom: 1px solid var(--color-red);
    }
    .color-list {
        display: flex;
        flex-wrap: wrap;
        column-gap: .8rem;
        row-gap: .8rem;
        width: 35rem;
        margin: 3rem auto 3.2rem;
    }
    .color-list--item {
        display: flex;
        justify-content: center;
        align-items: center;
        width: calc((100% - .8rem) / 2);
        height: 4.7rem;
        font-size: 1.3rem;
        font-weight: bold;
        letter-spacing: .06em;
        border: 2px solid;
        cursor: pointer;
    }
    .color-list--item.-burgundy {
        color: #b33134;
        border-color: #b33134;
    }
    .color-list--item.-burgundy:hover,
    .color-list--item.-burgundy.-is-active {
        color: #fff;
        background-color: #b33134;
    }
    .color-list--item.-white {
        color: #b3b3b3;
        border-color: #b3b3b3;
    }
    .color-list--item.-white:hover,
    .color-list--item.-white.-is-active {
        color: #fff;
        background-color: #b3b3b3;
    }
    .color-list--item.-navy {
        color: #1b1464;
        border-color: #1b1464;
    }
    .color-list--item.-navy:hover,
    .color-list--item.-navy.-is-active {
        color: #fff;
        background-color: #1b1464;
    }
    .color-list--item.-pink {
        color: #ff7c76;
        border-color: #ff7c76;
    }
    .color-list--item.-pink:hover,
    .color-list--item.-pink.-is-active {
        color: #fff;
        background-color: #ff7c76;
    }
    .color-main:not(.swiper-initialized) .color-main--item + .color-main--item {
        display: none;
    }
    .color-img {
        width: 100%;
    }
    .color-img img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center center;
    }
    .color-content {
        margin-top: 2rem;
    }
    .color-content--title {
        font-size: 2rem;
        font-weight: bold;
        text-align: center;
    }
    [data-color="burgundy"] .color-content--title {color: #b33134;}
    [data-color="white"] .color-content--title {color: #b3b3b3;}
    [data-color="navy"] .color-content--title {color: #1b1464;}
    [data-color="pink"] .color-content--title {color: #ff7c76;}
    .color-content--text {
        font-size: 1.4rem;
        font-weight: 500;
        line-height: 2;
        letter-spacing: .2em;
        text-align: center;
        margin-top: 1rem;
    }
    @media screen and (min-width: 768px) {
        .color {
            padding: 7.5rem 0 7rem;
        }
        .color-title {
            font-size: 3.2rem;
            padding: 1.2rem 0 0;
            border-top-width: 2px;
            border-bottom-width: 2px;
        }
        .color-list {
            justify-content: center;
            column-gap: 1.1rem;
            row-gap: 1.1rem;
            width: 100%;
            margin: 6.7rem auto 5.6rem;
        }
        .color-list--item {
            width: 21rem;
            height: 5.5rem;
            font-size: 1.4rem;
        }
        .color-main {
            width: 108rem;
            margin: 0 auto;
        }
        .color-main--item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            column-gap: 7rem;
        }
        .color-img {
            width: 61.5rem;
        }
        .color-content {
            width: calc(100% - (61.5rem + 7rem));
            margin-top: 0;
        }
        .color-content--title {
            font-size: 3.2rem;
            text-align: left;
        }
        .color-content--text {
            font-size: 1.6rem;
            margin-top: 2rem;
            text-align: left;
            line-height: 2.6875;
        }
    }

    /* Bottom Slider */
    .bottomslider {
        margin-top: 4.5rem;
        overflow: hidden;
    }
    .bottomslider-inner:not(.swiper-initialized) .bottomslider-item + .bottomslider-item {
        display: none;
    }
    .bottomslider-item {
        width: fit-content;
    }
    .bottomslider-item img {
        display: block;
        width: auto;
        height: 10.6rem;
    }
    .bottomslider .swiper-button-prev,
    .bottomslider .swiper-button-next {
        display: none;
    }
    @media screen and (min-width: 768px) {
        .bottomslider {
            width: 100%;
            max-width: calc(1124px + 66px);
            margin: 8rem auto 0;
            padding: 0 33px;
        }
        .bottomslider-inner {
            width: 100%;
            margin: 0 auto;
            overflow: hidden;
        }
        .bottomslider-item img {
            height: 29.8rem;
        }
        .bottomslider .swiper-button-prev,
        .bottomslider .swiper-button-next {
            display: block;
            width: 1.5rem;
            height: 1.5rem;
            border-top: 2px solid #000;
            border-left: 2px solid #000;
            background: none;
        }
        .bottomslider .swiper-button-prev {
            rotate: -45deg;
            left: .9rem;
        }
        .bottomslider .swiper-button-next {
            rotate: 135deg;
            right: 1.1rem;
        }
    }

    /* contact button */
    .contact-btn {
        width: 33.7rem;
        margin: 4.6rem auto 0;
    }
    @media screen and (min-width: 768px) {
        .contact-btn {
            width: 49.6rem;
            margin: 8rem auto 0;
        }
    }

    /* FadeIn Animation */
    .js-fadein {
        opacity: 0;
        transform: translate(0, 5rem);
        transition: var(--product-scroll-animarion) .3s;
        visibility: hidden;
    }
    .js-fadein.-is-fadein-active {
        opacity: 1;
        transform: translate(0, 0);
        visibility: visible;
    }
}