@charset "UTF-8";
        html,
        body {
            scroll-behavior: smooth;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        main#mainBox {
            width: 100%;
            max-width: 750px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-content: center;
            align-items: center;
            flex-wrap: nowrap;
            overflow: hidden;
        }

        main#mainBox img {
            width: 100%;
            height: auto;
            display: block;
            border: none;
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }



        summary {
            display: block;
            list-style: none;
            position: relative;
            cursor: pointer;
        }

        summary::-webkit-details-marker {
            display: none;
        }


        details .content-wrapper {
            display: grid;
            grid-template-rows: 0fr;
            transition: grid-template-rows 0.5s ease-out;
        }

        details[open] .content-wrapper {
            grid-template-rows: 1fr;
        }

        details[data-anim-status="closing"] .content-wrapper {
            grid-template-rows: 0fr;
        }

        .icon {
            transition: transform 0.5s ease;
        }

        summary .icon::before,
        summary .icon::after {
            content: "";
            position: absolute;
            top: 56%;
            left: 88%;
            background-color: #FFF;
            border-radius: 2px;
            transition: transform 0.4s ease, opacity 0.4s ease;
        }

        summary .icon::before {
            width: 25px;
            height: 3px;
            transform: translate(-50%, -50%);
        }

        summary .icon::after {
            width: 3px;
            height: 25px;
            transform: translate(-50%, -50%);
        }

        details[open] summary .icon {
            transform: rotate(180deg);
        }

        details[open] summary .icon::after {
            transform: translate(-50%, -50%) rotate(90deg);
        }

        .content-wrapper .content {
            overflow: hidden;
        }

        div#fltBtn {
            background: rgba(255, 255, 255, 0.4);
            width: 100%;
            position: fixed;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transform: translateY(100%);
            transition: opacity 0.3s, transform 0.3s;
            bottom: 0;
            left: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-content: center;
            align-items: center;
            flex-wrap: nowrap;
        }

        div#fltBtn.is-show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        div#fltBtn a,
        div#fltBtn a:link,
        div#fltBtn a:visited,
        div#fltBtn a:hover {
            margin-top: 30px;
        }


        .loop-container {
            width: 100%;
            height: auto;
            margin: 0 auto;
            overflow: hidden;
        }

        .loop-track_l,
        .loop-track_r {
            height: 100%;
        }

        .loop-track_l {
            display: flex;
            width: max-content;
            animation: loop-animation_l 35s linear infinite;
            overflow: hidden;
        }

        .loop-track_r {
            display: flex;
            width: max-content;
            animation: loop-animation_r 35s linear infinite;
            overflow: hidden;
        }

        .loop-content {
            display: flex;
            gap: 0;
            width: auto;
            height: auto;
            overflow: hidden;
        }

        .loop-content img {
            width: auto !important;
            max-width: none !important;
            height: auto !important;
            display: block !important;
            flex-shrink: 0 !important;
            object-fit: contain !important;
            min-height: 1px;
            margin: 0;
            padding: 0;
        }

        .loop-track_r .loop-content img {
            aspect-ratio: 243/161;
        }

        .loop-track_l .loop-content img {
            aspect-ratio: 243/161;
        }


        @keyframes loop-animation_l {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        @keyframes loop-animation_r {
            0% {
                transform: translateX(-50%);
            }

            100% {
                transform: translateX(0);
            }
        }

        main#mainBox section.cartBox {
            position: relative;
            width: 100%;
            display: flex;
        }

        main#mainBox section.cartBox a,
        main#mainBox section.cartBox a:link,
        main#mainBox section.cartBox a:visited,
        main#mainBox section.cartBox a:hover {
            cursor: pointer;
            position: absolute;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-content: center;
            align-items: center;
            flex-wrap: nowrap;
            right: 0;
            left: 1.5%;
            bottom: 2%;
            width: 96%;
            margin: 0 auto;
        }

        main#mainBox section.cartBox a img {
            width: 100%;
            display: block;
            height: auto;
        }


        #mainBox .cartBox a.cartBtn,
        #mainBox .cartBox a.cartBtn:link,
        #mainBox .cartBox a.cartBtn:visited,
        #mainBox .cartBox a.cartBtn:hover {
            display: block;
            width: 91.7%;
            max-width: 688px;
            margin: 0 auto;
            position: absolute;
            bottom: 2%;
            left: 2%;
            transform-origin: center center;
            animation: fuwafuwa-scale 1.5s ease-in-out infinite;
            transition: transform 0.2s ease;
            text-decoration: none;
        }

        #mainBox .cartBox a.cartBtn img {
            width: 100%;
            height: auto;
            vertical-align: bottom;
            display: block;
        }

        @keyframes fuwafuwa-scale {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }

            100% {
                transform: scale(1);
            }
        }

        main#mainBox section#slideImg {
            position: relative;
            width: 100%;
            display: block;
        }

        main#mainBox section#slideImg {
            position: relative;
            width: 100%;
            display: block;
        }

        main#mainBox section#slideImg div.loop-container:first-of-type {
            position: absolute;
            top: 5%;
            left: 0;
            right: 0;
            margin: 0 auto;
            aspect-ratio: 1981/161;
            overflow: hidden;
            height: 14%;
        }

        main#mainBox section#slideImg div.loop-container:last-of-type {
            position: absolute;
            left: 0;
            right: 0;
            margin: 0 auto;
            bottom: 9%;
            aspect-ratio: 1975/161;
            overflow: hidden;
            height: 14%;
        }

        main#mainBox section#slideImg div.loop-container img {
            flex-shrink: 0;
            width: auto;
            height: auto;
            display: block;
        }

        main#mainBOx section#circulationBox {
            width: 100%;
            display: block;
            height: auto;
            position: relative;
        }

        main#mainBox section#circulationBox img:nth-of-type(2) {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: auto;
            display: block;
        }

        video {
            filter: hue-rotate(-5deg) saturate(0.9);
            filter: brightness(0.85) contrast(1.1);
            mix-blend-mode: multiply;
        }

        .base-image {
            width: 100%;
            display: block;
        }

        section#magnetismBox {
            width: 100%;
            display: flex;
            height: auto;
            position: relative;
        }

        section#magnetismBox video {
            position: absolute;
            bottom: 29.3%;
            right: 6.1%;
            width: 48.8%;
            height: auto;
        }



        section#touchBox,
        section#unBox {
            position: relative;
            width: 100%;
            display: block;
            height: auto;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }


        section#touchBox video {
            position: absolute;
            bottom: 11%;
            left: 0;
            right: 0;
            margin: 0 auto;
            width: 68%;
            height: auto;
        }

        section#unBox video {
            position: absolute;
            bottom: 5%;
            left: 0;
            right: 0;
            margin: 0 auto;
            width: 85%;
            height: auto;
        }

        section#warrantyBox {
            width: 100%;
            display: block;
            height: auto;
            position: relative;
        }



        section#warrantyBox a,
        section#warrantyBox a:link,
        section#warrantyBox a:visited,
        section#warrantyBox a:hover {
            position: absolute;
            bottom: 5%;
            left: 17%;
            width: 20%;
            height: 30px;
            cursor: pointer;
        }

        #swiperBox {
            width: 100%;
            overflow: hidden;
            position: relative;
            display: flex;
        }

        .swiper {
            width: 100%;
            height: auto;
            padding-bottom: 14px;
            position: absolute;
            right: 0;
            bottom: 6%;
            left: 0;
        }

        .swiper-slide {
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;
            height: auto;
            /* 中身の高さに合わせる */
        }

        .swiper-slide img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: contain;
            aspect-ratio: 487/767;
            /* 比率を維持 */
        }

        .swiper-pagination {
            bottom: 0 !important;
        }


        .swiper-pagination-bullet {
            width: 20px;
            height: 20px;
            background: #FFF;
            /* 未選択の色 */
            opacity: 1;
        }

        .swiper-pagination-bullet-active {
            background: #7c7c7c;
        }

        .swiper-pagination {
            bottom: 0px !important;
        }