@charset "utf-8";

/* common */
.c-text-16 {
    text-align: center;
    font-size: 18px;
}

.bg-bk__wrapper {
    background-color: #e7e7e8;
    color: white;
}



.note {
    font-size: 0.9em;
    color: #808080;
    text-align: left;
}

@media only screen and (max-width: 47.9375em) {
    .c-text-16 {
        font-size: 16px;
        line-height: 2;
    }

    .sn__btn {
        display: block;
        padding: 20px 40px;
    }

    .sn__btn-icon--left {
        padding-left: 75px;
    }

    .only-sp {
        display: block;
    }

    .only-pc {
        display: none;
    }

    .sn__flex-row {
        flex-direction: column;
    }

    .sn__card {
        flex-direction: column;
    }
}


/* 
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;
}




/* main */
/* .l-contents__mv {
    padding-top: 8rem;
    background-image: url(../imgs/hero-bg.webp);

}

.mv-image {
    width: 100%;
    max-width: 1040px;
    padding: 0;
    margin: auto;
}

@media only screen and (max-width: 47.9375em) {
    .l-contents__mv {
        padding-top: 8rem;
    }
} */

/* --- 既存のスタイル --- */
.l-contents__mv {
    padding-top: 8rem;
    background-image: url(../imgs/hero-bg.webp);
}

.mv-image {
    width: 100%;
    max-width: 1040px;
    padding: 0;
    margin: auto;
    position: relative;
    /* タブ配置の基準 */
}

@media only screen and (max-width: 47.9375em) {
    .l-contents__mv {
        padding-top: 8rem;
    }
}

/* .mv-slick {
    display: block;
    width: 100%;
    opacity: 0;
    visibility: hidden;
}

.mv-slick.slick-initialized {
    opacity: 1;
    visibility: visible;
}

.mv-slide-item img {
    display: block;
    width: 100%;
    height: auto;
}

.mv-tabs {
    position: absolute;
    left: 40px;
    bottom: 24px;
    display: flex;
    gap: 6vw;
    margin: 0;
    padding: 0;
    list-style: none;
    z-index: 10;
}

.mv-tabs__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;

    background-color: rgba(250, 250, 250, 0.04);
    color: #ffffff;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(250, 250, 250, 0.1);
}

.mv-tabs__text {
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
}

.mv-tabs__circle {
    position: relative;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.mv-tabs__circle::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-top: 2px solid #000000;
    border-right: 2px solid #000000;
    transform: rotate(45deg);
    left: 9px;
    transition: all 0.3s ease;
}

.mv-tabs__item.is-active {
    background-color: #C4FF02;
    color: #000000;
    backdrop-filter: none;
    border-color: #C4FF02;
}

.mv-tabs__item.is-active .mv-tabs__circle {
    background-color: #000000;
}

.mv-tabs__item.is-active .mv-tabs__circle::after {
    border-color: #ffffff;
}


.mv-controls {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 16px;
    justify-content: center;
    gap: 12px;
    z-index: 11;
    padding: 0 12px;
}

.mv-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.9);
    background-color: rgba(0, 0, 0, 0.35);
    color: #ffffff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.2s ease;
    font-size: 40px;
    line-height: 0;
    padding-bottom: 6px;
    margin-top: -10px;
}

.mv-nav:hover,
.mv-nav:focus {
    background-color: rgba(0, 0, 0, 0.55);
}

@media screen and (max-width: 767px) {
    .mv-tabs {
        display: none;
    }

    .mv-controls {
        display: flex;
        justify-content: space-between;
    }

    .mv-tabs__item {
        padding: 6px 12px;
    }

    .mv-tabs__text {
        font-size: 11px;
    }

    .mv-tabs__circle {
        width: 20px;
        height: 20px;
    }

    .mv-tabs__circle::after {
        width: 4px;
        height: 4px;
        left: 6px;
    }

    .mv-nav {
        font-size: 24px;
        margin-top: -10px;
    }
} */



.menu__container {
    max-width: 1040px;
    margin: auto;
}

.l-contents__menu a {
    display: inline-block;
    position: relative;
    text-decoration: none;
    font-size: 16px;
    padding: 2px 20px 2px 20px;
    margin: 10px 4px;
    border: 1px solid #222;
    transition: all 0.3s ease;
    min-width: 25%;
    box-sizing: border-box;
}

.l-contents__menu a.menu-primary {
    color: #fff;
    border-color: #636363;
}

.l-contents__menu a.menu-default {
    background-color: transparent;
    color: #afafaf;
}

.l-contents__menu a.menu-default:hover {
    background-color: #666;
    color: #fff;
    border-color: #666;
}

.l-contents__menu a span {
    letter-spacing: 0.4em;
}

.ico-left,
.ico-right {
    width: 16px;
    height: 16px;
    display: block;
    flex-shrink: 0;
    margin: 0 4px;
    margin-top: -2px;
}

.ico-right {
    margin-top: -4px;
}



@media only screen and (max-width: 47.9375em) {
    .menu__wrapper {
        padding: 1rem;
    }

    .l-contents__menu>a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 80%;
        height: auto;
        padding: 6px 4px 6px 8px;
        margin: 4px;
        line-height: 1;
        min-height: 24px;
        overflow: visible;
    }

    .menu-default {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        text-decoration: none;
    }


}


/* style */
.copy__wrapper {
    position: relative;
    width: 100%;
    height: auto;
    margin: 0 auto 60px auto;
    padding-top: 40px;

}

.copy__text {
    width: 80%;
    font-size: 1.1em;
    letter-spacing: 0.1em;
    line-height: 1.8em;
    display: block;
    margin: 40px auto;
}


@media only screen and (max-width: 47.9375em) {
    .copy__text {
        width: 100%;
        font-size: 1em;
        letter-spacing: 0;
        line-height: 1.6em;
        padding: 0px;
        margin: 0px auto;
        text-align: left;
    }

}


.information__container {
    padding: 40px 20px 40px;
    display: flex;
    justify-content: center;
}

.information__box {
    border: 1px dashed #333333;
    background-color: transparent;
    width: 100%;
    max-width: 800px;
    position: relative;
    padding: 15px;
    box-sizing: border-box;
}

.information-header-title {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #e6e6e6;
    /* 後ろの破線を隠す背景色 */
    padding: 0 15px;
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 0.2em;
    z-index: 2;
    line-height: 1;
}

.information-ttl {
    text-align: center;
    cursor: pointer;
    user-select: none;
    padding: 10px 0;
}

.date-title {
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 0.05em;
    display: inline-block;
    transition: opacity 0.2s ease;
}

.information-ttl:hover .date-title {
    opacity: 0.7;
}

.information-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease-out;
}

.information-section.is-open .information-content {
    grid-template-rows: 1fr;
}

.information-content-inner {
    overflow: hidden;
    text-align: center;
    padding: 20px 0 10px 0;
}

.btn-container {
    margin: 20px 0;
}


@media (max-width: 640px) {
    .information__container {
        margin: 0;
    }
}

.simulation__content {
    display: flex;
    gap: 2.8vw;
    align-items: center;
}

.simulation__content .sn__flex-col {
    margin-top: -40px;
}

.simulation__content img {
    width: 52%;
}

.simulation__sub-ttl {
    font-size: 1.4em;
    font-weight: bold;
}

.simulation__content p {
    margin: 20px 0 30px 0;
}

@media only screen and (max-width: 47.9375em) {

    .simulation__content {
        flex-direction: column;
    }

    .simulation__content .sn__flex-col {
        margin-top: 20px;
    }

    .simulation__content img {
        width: 80%;
    }

    .simulation__content p {
        margin: 40px auto;
    }

    .simulation__sub-ttl {
        font-size: 1.2em;
        font-weight: bold;
    }
}

.concept__wrapper .sn__flex-row {
    width: 80%;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin: 40px auto;
    margin-top: 200px;
    padding-left: 20px;
}

.concept__wrapper .sn__flex-col {
    margin: 0 0 0 auto;
}


.logo {
    width: 100%;
}

.concept__img {
    width: 48%;
}

.concept__btn-wrapper {
    margin: 0;
}

.concept-ttl {
    color: #000;
    font-size: 1.8em;
    font-weight: bold;
    letter-spacing: 0.1;
    line-height: 1.8;
    text-align: left;
}

@media only screen and (max-width: 47.9375em) {

    .concept__wrapper .sn__flex-row {
        gap: 20px;
        margin: 40px auto;
        margin-top: 100px;
        flex-direction: column-reverse;
    }

    .concept__img {
        width: 90%;
    }

    .concept-ttl {
        font-size: 1.6em;
        letter-spacing: 0;
        line-height: 1.6;
        text-align: left;
    }

    .concept_text {
        font-size: 1em;
        letter-spacing: 0;
        line-height: 1.4;
    }
}

/* 
MOVIE
*/
.movie-section {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0;
    border-bottom: none;
    position: relative;
    overflow: hidden;
    margin: 80px auto;
}

.movie-section .section-max {
    border-bottom: none;
}

.shot-movie {
    width: 100%;
    height: auto;
}



.feature__wrapper {
    width: 100%;
    height: auto;
    margin: 200px auto 80px auto;
    letter-spacing: 0.1em;
}

.feature__card {
    width: 80%;
    margin: 80px auto;
    align-items: center;
}

.feature__card img {
    width: 50%;
    margin: auto 0;
    object-fit: contain;
}

.feature__content {
    width: 50%;
}

.feature__content h1 {
    font-size: 2em;
    color: #A8ABAF;
    font-weight: bold;
}

.feature__content h3 {
    font-size: 1.6em;
    font-weight: bold;
    margin: 4px 0 10px 0;
}



@media only screen and (max-width: 47.9375em) {
    .feature__wrapper {
        letter-spacing: 0;
        padding: 0 20px;
    }

    .feature__ttl {
        font-size: 1.8em;
        letter-spacing: 0.1em;
        margin: 0;
    }

    .feature__text {
        text-align: center;
        margin: 40px auto;
    }

    .feature__note {
        text-align: center;
    }


    .feature__card {
        width: 100%;
        margin: 80px auto;
        align-items: center;
    }

    .feature__card img {
        width: 80%;
        margin: auto 0;
        object-fit: contain;
    }

    .feature__content {
        width: 100%;
    }

}

.practice__wrapper {
    margin-top: 200px;
}

.practice__ttl-wrapper {
    width: 100%;
    display: flex;
    align-items: flex-start;
    padding: 0 40px;
    margin: 0 auto;
    box-sizing: border-box;

    background-image: url(../imgs/practice-bg.webp);
    background-repeat: no-repeat;
    background-size: 100% 80%;
    background-position: top center;
}

.practice__main-content {
    width: 55%;
    padding-top: 100px;
}

.practice__main-ttl {
    font-size: 2em;
    font-weight: bold;
    letter-spacing: 0.1em;
}

.practice__main-text {
    width: 90%;
    font-size: 1.125em;
    margin: 20px 0;
}

.practice__ttl-wrapper img {
    width: 50%;
    height: auto;
    object-fit: contain;
}

.practice__container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    margin: 40px auto;
}

.practice__container:nth-child(3) {
    flex-direction: row-reverse;
}

.practice__container img {
    width: 40%;
    height: auto;
}

.practice__container:nth-child(3) img {
    width: 55%;
}

.practice__content {
    width: 55%;
}

.practice__container:nth-child(3) .practice__content {
    padding: 0 40px 0 60px;

}


.practice__label {
    font-size: 1.5em;
    color: #A8ABAF;
}

.practice__ttl {
    font-size: 2em;
    font-weight: bold;
    margin: 20px 0 40px 0;
}

.practice__text {
    width: 90%;
}

.simulation__btn-wrapper {
    margin: 20px 0;
}

.practice__sub-text {
    margin: 20px auto;
}

@media only screen and (max-width: 47.9375em) {

    .practice__ttl-wrapper {
        flex-direction: column;
        background-size: 100% 80%;
        background-position: top center;
    }

    .practice__main-content {
        width: 100%;
        padding-top: 40px;
    }

    .practice__ttl-wrapper img {
        width: 100%;
    }

    .practice__container,
    .practice__container:nth-child(3) {
        flex-direction: column-reverse;
        justify-content: space-between;
        align-items: center;
        box-sizing: border-box;
        margin: 40px auto;
    }

    .practice__container img {
        width: 80%;
    }

    .practice__container:nth-child(3) img {
        width: 100%;
        margin-top: 20px;
    }

    .practice__content,
    .practice__container:nth-child(3) .practice__content {
        width: 100%;
        padding: 0;
    }



    .practice__label {
        font-size: 1.5em;
        color: #A8ABAF;
    }

    .practice__ttl {
        font-size: 1.8em;
        font-weight: bold;
        margin: 10px 0 20px 0;
    }

    .practice__text {
        width: 100%;
    }

    .simulation__btn-wrapper {
        margin: 20px 0;
    }

    .practice__sub-text {
        margin: 20px auto;
    }
}






/* 
GUIDE
*/
.button__container img,
.setup__container img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.guide__container,
.button__container,
.setup__container {
    margin: 100px auto;
}

.guaid__wrapper h2 {
    font-size: 2em;
    font-weight: bold;
    padding: 10px;
    border-bottom: 1px solid #000;
    letter-spacing: 0.2rem;
    text-align: center;
    margin: 0 auto 40px auto;
}

.guide__wrapper:nth-child(2) {
    gap: 1vw;
    margin: 2vw 0;
}

.guide-item--center {
    width: 40%;
    justify-content: flex-end;
}

.guide-img--ui {
    width: 100%;
    margin: auto 0;
    justify-content: flex-end;
}

.guide-img--left,
.guide-img--right {
    display: none;
}


.guide-item--left {
    width: 30%;
    text-align: left;
    justify-content: flex-end;
    gap: 20px;
}

.guide-item--right {
    width: 30%;
    text-align: right;
    justify-content: flex-end;
    gap: 20px;
}

.guide-item--right ul {
    list-style-position: inside;
}

.guide__content:nth-child(3) {
    align-items: center;
    text-align: center;
    width: 60vw;
    max-width: 600px;
    margin: 2vw auto;
}

.guide__content:nth-child(3) div {
    width: 60%;
}

.guide-img--dark {
    width: 33.33%;
    height: auto;
}

.guide-summery--setup {
    text-align: center;
    align-items: center;
    margin: 4vw auto 2vw auto;
}

.guide-summery--setup .marker {
    font-size: 2.2rem;
    font-weight: bold;
    padding-bottom: 5px;
    border-bottom: 4px solid #A8ABAF;
}

@media only screen and (max-width: 47.9375em) {
    .guide__content:nth-child(2) {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "left left-img"
            "right-img right";
        margin: 4vw auto;
        column-gap: 10px;
        row-gap: 30px;
    }

    .guide-img--ui {
        display: none;
    }

    .guide-img--left,
    .guide-img--right {
        display: block;
    }

    .guide-img--left {
        grid-area: left-img;
    }

    .guide-img--right {
        grid-area: right-img;
    }


    .guide-item--left {
        grid-area: left;
        width: 80%;
        text-align: left;
        justify-content: flex-start;
        gap: 5px;
    }

    .guide-item--right {
        grid-area: right;
        width: 80%;
        text-align: right;
        justify-content: flex-end;
        gap: 5px;
    }

    .guide__content:nth-child(3)::before {
        display: block;
        content: "";
        background: #A8ABAF;
        width: 100px;
        height: 4px;
        position: absolute;
        top: -20px;
        left: 50%;
        transform: translateX(-50%);
    }

    .guide__content:nth-child(3) {
        width: 90%;
        margin-top: 40px;
        max-width: 1040px;
        margin: 2vw auto;
    }

    .guide__content:nth-child(3) div {
        width: 100%;
        font-size: 1.125em;
        margin: 10px auto;
    }

    .guide-img--dark {
        width: 80%;
        height: auto;
    }

    .guide-summery--setup {
        padding-top: 20px;
    }

    .guide-summery--setup .marker {
        padding-bottom: 0;
    }

}



/* 
FUNCTIONS
*/
.practice__wrapper {
    width: auto;
    height: auto;
    align-items: center;
    border-radius: 0;
    position: relative;
    z-index: 2;
}

.function-area--ui,
.mode__container,
.function-area--other {
    margin: 40px auto 120px auto;
}

.function-wapper {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.function-item--center {
    width: 40%;
}

.function-img--ui {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.function-item--left {
    width: 30%;
    display: flex;
    flex-direction: column;
    text-align: right;
    justify-content: center;
    gap: 30px;
    font-size: 2rem;
}

.function-item--right {
    width: 30%;
    display: flex;
    flex-direction: column;
    text-align: left;
    justify-content: center;
    gap: 30px;
    font-size: 2rem;
}

.practice__wrapper h2 {
    font-size: 2em;
    font-weight: bold;
    padding: 10px;
    border-bottom: 1px solid #000;
    letter-spacing: 0.2rem;
    text-align: center;
    margin: 0 auto 40px auto;
}

.mode__content {
    width: 80%;
    text-align: left;
    font-size: 2rem;
    margin: 0 auto 40px auto;
}

.mode__content .br-640px {
    font-size: 1.6rem;
    text-wrap: wrap;
}

@media only screen and (max-width: 47.9375em) {
    .mode__content {
        width: 90%;
        text-align: left;
        font-size: 1.8rem;
        margin: 30px auto;
    }

}

/* カルーセル */
.practice__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#carousel__main-img {
    width: 80%;
    max-width: 800px;
    height: auto;
    transition: opacity 0.5s ease;
    object-fit: contain;
    margin: 20px auto;
}

.carousel__thumbnails {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.carousel__thumbnail {
    width: 20vw;
    max-width: 200px;
    height: auto;
    margin: 0 10px;
    cursor: pointer;
    opacity: 0.6;
    transition: filter 0.3s ease, opacity 0.3s ease;
    object-fit: cover;
}

.carousel__thumbnail:not(.active) {
    position: relative;
    filter: grayscale(100%);
    opacity: 0.5;
}

.carousel__thumbnail.active {
    position: relative;
    filter: none;
    opacity: 1;
}

@media only screen and (max-width: 47.9375em) {
    #carousel__main-img {
        width: 100%;
    }

    .carousel__thumbnail {
        width: 30%;
    }

}


/* app連携機能 */
.app__text {
    width: 80%;
    margin: 40px auto;
    text-align: center;
}

.app__scroll {
    position: relative;
    height: auto;
}

.app__scroll-container {
    display: flex;
    overflow-x: scroll;
    /* scroll-snap-type: x mandatory; */
    -webkit-overflow-scrolling: touch;
    padding-left: 100px;
    background-color: #e7e7e8;
}

.app__scroll-container::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

.app__scroll-container::-webkit-scrollbar-thumb {
    border-radius: 1rem;
    --bg-opacity: 1;
    background-color: #A8ABAF;
}

.app__card {
    flex: 0 0 40%;
    scroll-snap-align: start;
    margin-right: 10px;
    border-radius: 12px;
    padding: 16px;
    box-sizing: border-box;
    text-align: left;
}

.function-scroll--spacer {
    flex: 0 0 200px;
    scroll-snap-align: start;
    box-sizing: border-box;
}

.app__card img {
    width: 90%;
    border-radius: 8px;
    margin-bottom: 10px;
}

.app__card h3 {
    margin: 12px 0 4px;
    font-size: 1.2em;
}

.app__card p {
    margin: 0;
    color: #555;
}

.function-scroll--button {
    position: absolute;
    top: 58%;
    right: 30px;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
}

.function-scroll--button:hover {
    background: rgba(0, 0, 0, 0.8);
}


@media only screen and (max-width: 47.9375em) {

    .app__scroll-container {
        padding-left: 60px;
    }

    .app__card {
        flex: 0 0 80%;
        margin-right: 0;
        padding: 10px;
        max-width: 200px;
    }

    .function-scroll--spacer {
        flex: 0 0 50px;
    }

    .app__card img {
        width: 80%;
        margin-bottom: 5px;
    }

    .app__text {
        width: 100%;
        padding: 0 10px;
    }

    .app__card h3 {
        letter-spacing: 0;
    }


    .function-scroll--button {
        position: absolute;
        top: 30%;
        right: 15px;
        transform: translateY(-50%);
    }

}


/* その他 */
.item {
    background-color: #d8d8d8;
    padding: 10px 40px;
    border-radius: 10px;
}

th {
    text-align: left;
}

.item b {
    display: block;
    margin-bottom: 6px;
}

.function-content--top {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    width: auto;
    justify-content: space-between;
    margin-bottom: 20px;
}

.function-content--bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    width: auto;
    justify-content: space-between;
    gap: 20px;
}

.function-content--top .item,
.function-content--bottom .item {
    margin: 0 auto;
}

@media (max-width: 768px) and (min-width: 374px) {

    .function-content--top .item,
    .function-content--bottom .item {
        margin: 0;
    }

    .function-content--top,
    .function-content--bottom {
        display: flex;
        flex-direction: column;
        height: auto;
        margin: 15px 0;
        padding-left: 15px;
        gap: 30px;
    }
}



/* 
SPECIAL
*/
.special-section {
    width: auto;
    height: auto;
    align-items: center;
    color: #000;
    position: relative;
}

/* .special-section .section-max {
    border-bottom: none;
    padding-bottom: 0;
} */

.special-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin: 4vw auto;
}

.special-mobile--addition {
    display: none;
}

@media (max-width: 640px) {
    .special-mobile--addition {
        display: block;
    }

    .special-mobile--addition h3 {
        margin: 30px auto 10px auto;
        text-align: center;
        letter-spacing: 0.5rem;
    }

    .special-mobile--addition ul {
        margin: 0;
        padding-top: 20px;
    }

    .special-mobile--addition span {
        text-wrap: wrap;
    }

    /* .special-mobile--addition .sn__flex-grid {
        gap: 30px;
        padding-top: 20px;
        padding-bottom: 15px;
    } */
}



/* UPCOMING */
.upcoming-title h2 {
    text-align: center;
    margin: 2vw auto;
}

.upcoming-title span {
    display: block;
    text-align: center;
    margin: 2vw auto;
}

.shotlayzer__upcoming-img {
    display: block;
    margin: 4vw auto;
    width: 30%;
}


/* 
OTHER PRODUCT
*/
.other__content {
    gap: 4vw;
    padding: 40px;
}

.other__content h2 {
    font-size: 2em;
    font-weight: bold;
}

.other__img {
    width: 40%;
    height: auto;
    object-fit: contain;
}

.other__logo {
    width: 40%;
    margin-bottom: 20px;
}

.other__content p {
    margin: 10px 0 40px;
}

@media (max-width: 640px) {
    .other__content {
        flex-direction: column;
        padding: 0;
        gap: 0;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .other__img {
        width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
        padding: 0 20px;
    }

    .other__logo {
        width: 80%;
        height: auto;
        margin: 20px 0;
        margin-left: 0;
    }

    .other-content--insolyis .sn__btn,
    .other-content--tracker .sn__btn {
        display: block;
        margin: 3vw auto;
    }

}

.include__wrapper {
    text-align: center;
}

.include__wrapper h2 {
    font-size: 2em;
    font-weight: bold;
}

.include__wrapper p {
    margin: 20px 0 40px;
}

.view-button {
    cursor: pointer;
}

.modal {
    justify-content: center;
    align-items: center;
}

.modal__content img {
    display: inline;
    margin: auto;
}


.specs__image {
    width: 80%;
    max-width: 80%;
    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;
    display: flex;
}

.specs__note {
    text-align: center;
}

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

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

    .specs__table {
        width: 100%;
    }

    .specs__label {
        width: 30%;
    }

    .specs__note,
    .attention {
        flex-direction: column;
        gap: 10px;
    }

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

    .attention__text {
        margin-top: 0;
        text-align: center;
    }

}