@charset "utf-8";
.tmPd {
    padding-top: var(--header-height);
    padding-bottom: 120px;
}

.tmPdHero {
    max-width: 1728px;
    position: relative;
    z-index: 1;
}

.tmPdHero__img {
    width: 100vw;
    height: 460px;
    margin: 0 calc(-50vw + 50%);
    object-fit: cover;
}

.tmPdSpec {
    z-index: 1;
    position: relative;
    width: 100%;
    max-width: 1500px;
    min-height: 265px;
    height: auto;
    margin: 0 auto;
    margin-top: -150px;
}

.tmPdSpec__frame {
    padding: 62px 72px 46px;
    display: flex;
    justify-content: space-between;
    align-items: start;
    background: #fff;
}

.tmPdSpec::before,
.tmPdSpec::after,
.tmPdSpec__frame::before,
.tmPdSpec__frame::after {
    z-index: 2;
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    pointer-events: none;
}

.tmPdSpec::before {
    top: 20px;
    left: 20px;
    border-top: 1px solid #333;
    border-left: 1px solid #333;
}

.tmPdSpec::after {
    top: 20px;
    right: 20px;
    border-top: 1px solid #333;
    border-right: 1px solid #333;
}

.tmPdSpec__frame::before {
    bottom: 20px;
    left: 20px;
    border-bottom: 1px solid #333;
    border-left: 1px solid #333;
}

.tmPdSpec__frame::after {
    bottom: 20px;
    right: 20px;
    border-bottom: 1px solid #333;
    border-right: 1px solid #333;
}

.tmPdSpec__left {
    z-index: 3;
    position: relative;
    width: calc(100% - 360px);
}

.tmPdSpec__title {
    margin: 0;
    font-size: var(--en-font-large);
    line-height: 1;
    color: #212121;
}

.tmPdSpec__lead {
    margin: 17px 0 0;
    line-height: 1.85;
    letter-spacing: 0.01em;
}

.tmPdSpec__right {
    position: relative;
    width: 292px;
    padding-left: 24px;
}

.tmPdSpec__right::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 100%;
    background-color: #333;
}

.tmPdSpec__meta {
    margin: 0;
    line-height: 1.9;
    letter-spacing: 0.01em;
}

.tmPdGallery {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    z-index: 999;
}

.tmPdGallery__slider {
    position: relative;
    width: 100vw;
    margin: 0 calc(-50vw + 50%);
    overflow: hidden;
}

.tmPdGallery__slider .splide__track {
    max-width: 800px;
    width: 100%;
    height: auto;
    overflow: visible;
    margin: 0 auto;
}

.tmPdGallery__slider .splide__list {
    width: 100%;
    height: 100%;
}

.tmPdSlider__slide {
    width: 100%;
    height: auto;
    /* aspect-ratio: 8 / 3.4; */
    margin: 0;
}

.tmPdSlider__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
}

.tmPdGallery__tabs {
    margin: 68px auto 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 70px 26px;
    max-width: 1040px;
}

.tmPdTabs__tab {
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    text-align: center;
    cursor: pointer;
}

.tmPdTabs__thumb {
    width: 100%;
    max-width: 330px;
    height: 184px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.tmPdTabs__label {
    margin-top: 14px;
    display: block;
    font-family: "Times New Roman", Times, serif;
    font-size: 20px;
    line-height: 1;
    color: #333;
}

.tmPdTabs__tab.is-active .tmPdTabs__thumb {
    opacity: 1;
}

.tmPdTabs__tab .tmPdTabs__thumb {
    opacity: 0.55;
    transition: opacity 0.2s ease;
}

.tmPdTabs__tab:hover .tmPdTabs__thumb {
    opacity: 0.8;
}

.tmPdTabs__tab:focus-visible {
    outline: 1px solid #212121;
    outline-offset: 4px;
}

.tmPdLightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.tmPdLightbox.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.tmPdLightbox__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(0, 0, 0, 0.86);
}

.tmPdLightbox__dialog {
    position: relative;
    width: min(96vw, 1200px);
    height: min(88vh, 900px);
    margin: 6vh auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(10px) scale(0.98);
    transition: transform 0.3s ease;
}

.tmPdLightbox.is-open .tmPdLightbox__dialog {
    transform: translateY(0) scale(1);
}

.tmPdLightbox__close {
    position: absolute;
    right: 0;
    top: 0;
    transform: translateY(0);
    width: 44px;
    height: 44px;
    border: 1px solid #fff;
    border-radius: 999px;
    background: transparent;
    color: #fff;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.tmPdLightbox__slider {
    width: 100%;
    position: relative;
}

.tmPdLightbox__slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tmPdLightbox__img {
    width: 100%;
    max-height: 86vh;
    object-fit: contain;
}

.tmPdLightbox .splide__arrow {
    position: absolute;
    z-index: 10;
    width: 56px;
    height: 56px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 999px;
    background: rgba(20, 20, 20, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #fff;
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.tmPdLightbox .splide__arrow svg {
    fill: #fff;
    width: 1.3em;
    height: 1.3em;
}

.tmPdLightbox .splide__arrow--prev {
    left: 18px;
    transform: translateY(-50%) scale(-1);
}

.tmPdLightbox .splide__arrow--next {
    right: 18px;
}

.tmPdLightbox .splide__pagination__page {
    background: #fff;
    opacity: 0.6;
}

.tmPdLightbox .splide__pagination__page.is-active {
    opacity: 1;
}

body.is-pdLightboxOpen {
    overflow: hidden;
}

.tmPdCtas {
    max-width: 1728px;
    margin: 140px auto 0;
    display: grid;
    grid-template-columns: 746px 746px;
    justify-content: center;
    column-gap: 22px;
}

.tmPdCta {
    position: relative;
    display: block;
    width: 746px;
    height: 339px;
    overflow: hidden;
    color: #fff;
    text-decoration: none;
}

.tmPdCta__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tmPdCta__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
}

.tmPdCta__label {
    position: absolute;
    left: 48px;
    bottom: 39px;
    font-family: "Times New Roman", Times, serif;
    font-size: 30px;
    line-height: 1;
}

.tmPdPager {
    max-width: 1200px;
    margin: 90px auto 0;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-start;
}

.tmPdPager__link {
    width: 274px;
    text-align: center;
    text-decoration: none;
    color: #212121;
    display: block;
    position: relative;
    transition: opacity 0.2s ease;
}

.tmPdPager__link:hover {
    opacity: 0.85;
}

.tmPdPager__text {
    display: block;
    font-family: "Junge", "Times New Roman", serif;
    font-size: 27.83px;
    line-height: 1;
    letter-spacing: 0.02em;
}

.tmPdPager__thumbWrap {
    display: block;
    /* width: 274px;
    height: 220px; */
    overflow: hidden;
    /* margin: 12px 0 11px; */
}

.tmPdPager__thumbWrap img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.tmPdPager__model {
    display: block;
    font-family: "Junge", "Times New Roman", serif;
    font-size: 16px;
    line-height: 1.2;
}

.tmPdPager__size {
    display: block;
    margin-top: 5px;
    font-family: "Junge", "Times New Roman", serif;
    font-size: 10px;
    line-height: 1.2;
}

.tmPdPager__link--prev .tmPdPager__text {
    position: absolute;
    left: -118px;
    top: 95px;
}

.tmPdPager__link--next .tmPdPager__text {
    position: absolute;
    right: -126px;
    top: 95px;
}

@media screen and (max-width: 758px) {
    .tmPd {
        padding-bottom: 60px;
    }
    .tmPdHero__img {
        height: 460px;
    }
    .tmPdSpec {
        min-height: 265px;
        margin-top: -60px;
    }
    .tmPdSpec__frame {
        padding: 30px;
        flex-direction: column;
    }
    .tmPdSpec::before {
        top: 15px;
        left: 15px;
    }
    .tmPdSpec::after {
        top: 15px;
        right: 15px;
    }
    .tmPdSpec__frame::before {
        bottom: 15px;
        left: 15px;
    }
    .tmPdSpec__frame::after {
        bottom: 15px;
        right: 15px;
    }
    .tmPdSpec__left {
        width: 100%;
    }
    .tmPdSpec__title {
        font-size: 24px;
    }
    .tmPdSpec__lead {
        width: 100%;
        line-height: 1.6;
    }
    .tmPdSpec__right {
        margin-top: 20px;
        width: 100%;
    }
    .tmPdGallery {
        margin: 30px auto 0;
    }
    .tmPdGallery__slider .splide__track {
        width: 100%;
    }
    .tmPdGallery__slider .splide__list {
        width: 100%;
        height: 100%;
        display: flex;
    }
    .tmPdGallery__tabs {
        margin: 30px auto 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 25px 10px;
    }
    .tmPdTabs__thumb {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    .tmPdLightbox__dialog {
        width: 100vw;
        height: 100vh;
        margin: 0;
        padding: 18px 8px 48px;
        box-sizing: border-box;
    }
    .tmPdLightbox__close {
        right: 14px;
        top: 10px;
        width: 40px;
        height: 40px;
    }
    .tmPdLightbox__img {
        max-height: calc(100vh - 120px);
    }
    .tmPdLightbox .splide__arrow {
        width: 36px;
        height: 36px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    }
    .tmPdLightbox .splide__arrow--prev {
        left: 8px;
    }
    .tmPdLightbox .splide__arrow--next {
        right: 8px;
    }
    .tmPdTabs__label {
        margin-top: 14px;
        font-size: 16px;
    }
    .tmPdPager {
        margin: 96px auto 0;
        display: flex;
        justify-content: space-between;
        gap: 0;
    }
    .tmPdPager__link {
        width: 30%;
    }
    .tmPdPager__text {
        font-size: 20px;
    }
    .tmPdPager__thumbWrap {
        display: block;
        width: 100%;
        height: auto;
        /* margin: 12px 0 11px; */
    }
    .tmPdPager__thumbWrap img {
        height: auto;
        object-fit: contain;
    }
    .tmPdPager__model {
        font-size: 16px;
        line-height: 1.2;
    }
    .tmPdPager__size {
        margin-top: 5px;
        font-size: 10px;
        line-height: 1.2;
    }
    .tmPdPager__link--prev .tmPdPager__text {
        margin-top: 10px;
        font-size: 13px;
        position: relative;
        left: auto;
        top: auto;
    }
    .tmPdPager__link--next .tmPdPager__text {
        margin-top: 10px;
        font-size: 13px;
        position: relative;
        right: auto;
        top: auto;
    }
}