﻿/* -----------------------------------------------------------------------------
**
** PCサイトトップ用CSS
**
----------------------------------------------------------------------------- */

.TOL-top-PC {
    font-family: "roboto",Noto Sans JP,noto-sans-cjk-jp;
    min-width:1080px;
}

/*共通で使用しているCSS*/
    .common-slider .tr-item-block .tr-item-block-img {
        border-radius: 0 0 0 0;
        background-color: white;
    }

    .common-slider .tr-item-block .tr-item-block-info {
        border-radius: 0 0 0 0;
    }
.common-slider-prev-button > img,
.common-slider-next-button > img {
  width: 10px;
  height: 20px;
}
/*お知らせ枠*/
.TOL-top-PC-information {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 3px 5px;
    border: 2px solid red;
}

    .TOL-top-PC-information-item {
        display: block;
        text-indent: -1em;
        padding-left: 1em;
    }

        .TOL-top-PC-information a.is-text-red:link {
            color: var(--tr-red) !important;
        }

        .TOL-top-PC-information a::before {
            content: "";
            background-image: url(https://cdfront.tower.jp/img24/attention_icon_red.svg);
            background-repeat: no-repeat;
            display: inline-block;
            width: 13px;
            height: 13px;
            background-position: bottom;
            margin-right: 3px;
        }

/*キービジュアル*/
.TOL-top-PC-keyvisual {
    width: 100%;
    background-color: #333333; /*タワー作成のデザインでは明るめの黒だが、共通CSSにないので直接指定*/
}

    .TOL-top-PC-keyvisual .TOL-top-PC-keyvisual-inner {
        display: flex;
        justify-content: space-between;
        position: relative;
    }

        .TOL-top-PC-keyvisual .TOL-top-PC-keyvisual-inner .keyvisual-link {
            display: flex;
            align-items: center;
            position: relative;
        }

        .TOL-top-PC-keyvisual .TOL-top-PC-keyvisual-inner .jacket-image {
            width: 55vw;
            min-width:594px;
            aspect-ratio: 7 / 5;
            object-fit: contain;
            object-position: center;
        }

        .TOL-top-PC-keyvisual .TOL-top-PC-keyvisual-inner .keyvisual-explanation {
            width: 35vw;
            min-width:378px;
            margin-left: 50px;
        }

            .TOL-top-PC-keyvisual .TOL-top-PC-keyvisual-inner .keyvisual-explanation .common-slider-prev-button {
                width: 35px;
                height: 35px;
                margin-top: 10px;
                border: 1px solid var(--tr-white);
            }

                .TOL-top-PC-keyvisual .TOL-top-PC-keyvisual-inner .keyvisual-explanation .common-slider-prev-button:hover {
                    background: unset;
                }

                .TOL-top-PC-keyvisual .TOL-top-PC-keyvisual-inner .keyvisual-explanation .common-slider-prev-button .material-symbols-outlined {
                    color: var(--tr-white);
                    font-size: 30px;
                }

        .TOL-top-PC-keyvisual .TOL-top-PC-keyvisual-inner .keyvisual-jacket-menu {
            width: 35vw;
            min-width: 378px;
            margin: auto;
            display: flex;
            position: absolute;
            bottom: 50px;
            right: 0;
        }

            .TOL-top-PC-keyvisual .TOL-top-PC-keyvisual-inner .keyvisual-jacket-menu .select-jacket-image {
                width: 60px;
                height: 60px;
                margin-right: 20px;
                object-fit: contain;
                cursor: pointer;
                background: var(--tr-black);
            }

                .TOL-top-PC-keyvisual .TOL-top-PC-keyvisual-inner .keyvisual-jacket-menu .select-jacket-image:hover {
                    /*選択用ジャケ写に、個別のアクションが効くことを証明するためのもの*/
                    filter: opacity(0.7);
                }

.keyvisual-explanation a:hover .keyvisual-explanation-text {
    text-decoration: underline;
}
.keyvisual-explanation .common-slider-prev-button > img {
    width: 8px;
    height: 20px;
}
.keyvisual-jacket-menu .select-jacket-image.is-selected {
    outline: 2px solid var(--tr-yellow);
}

.jacket-image.is-show {
    animation: fadein .1s ease-in-out .1s 1 normal forwards;
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 100;
    }
}

/* 小さくしたとき可変にしない(20240124)
@media screen and (max-width: 1064px) {
    .TOL-top-PC-keyvisual .TOL-top-PC-keyvisual-inner .keyvisual-jacket-menu .select-jacket-image {
        width: 5.5vw;
        height: 5.5vw;
        margin-right: 1.5vw;
    }

    .TOL-top-PC-keyvisual .TOL-top-PC-keyvisual-inner .keyvisual-explanation .common-slider-prev-button {
        width: 3.2vw;
        height: 3.2vw;
        margin-top: .93vw;
    }

    .keyvisual-explanation-text {
        font-size: 1.87vw;
    }

    .TOL-top-PC-keyvisual .TOL-top-PC-keyvisual-inner .keyvisual-jacket-menu {
        bottom: 4.7vw;
    }
}
*/

/*バナー*/
.TOL-top-PC-banner {
    background-color: var(--tr-gray);
}

    .TOL-top-PC-banner:last-of-type {
        background-color: white;
    }

    .TOL-top-PC-banner .banner-group .banner-link {
        margin: 3px;
    }

    .TOL-top-PC-banner .banner-group {
        width: 1400px;
        max-width: 100%;
        margin: auto;
        padding: 12px 0;
        display: flex;
        justify-content: center;
    }

        .TOL-top-PC-banner .banner-group img {
            width: 100%;
            height: auto;
        }


/*注目キーワード*/
.TOL-top-PC-keyword {
    min-height: 140px;
    margin-top: 20px;
}

    .TOL-top-PC-keyword .keyword-title {
        display: flex;
        position: relative;
        justify-content: center;
        align-items: center;
    }

        .TOL-top-PC-keyword .keyword-title::after {
            position: absolute;
            content: "";
            background-color: var(--tr-red);
            width: 20px;
            height: 3px;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

    .TOL-top-PC-keyword .keyword-contents {
        width: 750px;
        height: 80px;
        margin: auto;
        margin-top: 25px;
        text-align: center;
        line-height: 2.2;
    }

        .TOL-top-PC-keyword .keyword-contents a {
            margin: 2px 7px 2px 7px;
        }

/*タワレコオンラインニュース遷移リンク*/
.TOL-top-PC-news .common-square-button {
    border-color: var(--tr-medium-gray);
    width: 400px;
    height: 46px;
    margin: 0 auto 30px auto;
}

    .TOL-top-PC-news .common-square-button .news-icon {
        width: 20px;
        height: 20px;
    }

    .TOL-top-PC-news .common-square-button .text-size-14 {
        width: 340px;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        text-align: right;
    }

        .TOL-top-PC-news .common-square-button .text-size-14 > * {
            margin: 5px;
        }

        .TOL-top-PC-news .common-square-button .text-size-14 .material-symbols-outlined {
            position: relative;
            left: 15px;
            line-height: .5;
            font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' -25, 'opsz' 24;
            transform: rotate(-90deg);
        }

/*店舗スタッフのオススメ*/
.TOL-top-PC-master-choice {
    margin-top: 20px;
    margin-bottom: 10px;
    height: 800px;
}

    .TOL-top-PC-master-choice .master-choice-background-image {
        width: 100%;
        height: 240px;
    }

        .TOL-top-PC-master-choice .master-choice-background-image .background-image {
            width: 100%;
            height: 290px;
            object-fit: cover;
        }

    .TOL-top-PC-master-choice .master-choice-contents {
        margin: auto;
        position: relative;
        bottom: 170px;
    }

    .TOL-top-PC-master-choice .master-choice-genre .section-title span {
        margin-right: 12px;
    }

    .TOL-top-PC-master-choice .master-choice-contents .master-choice-genre {
        max-width: 1080px;
        margin: auto;
        margin-bottom: 14px;
        padding-bottom:14px;
        background-color: var(--tr-white);
        border-radius: 5px;
        position: relative;
    }

        .TOL-top-PC-master-choice .master-choice-contents .master-choice-genre > * {
            padding-left: 35px;
        }

        .TOL-top-PC-master-choice .master-choice-contents .master-choice-genre .section-lead-title-container {
            display: flex;
            justify-content: flex-start;
            padding-top: 12px;
        }

            .TOL-top-PC-master-choice .master-choice-contents .master-choice-genre .section-lead-title-container .section-title .text-size-48 {
                margin-right: 8px;
            }

        .TOL-top-PC-master-choice .master-choice-contents .master-choice-genre .check-by-genre {
            white-space: nowrap;
            margin-top: 12px;
        }

            .TOL-top-PC-master-choice .master-choice-contents .master-choice-genre .check-by-genre .genre-tag-container {
                max-width: 1000px;
                margin-top: 10px;
                display: flex;
                gap: 8px;
                justify-content: flex-start;
                flex-wrap: wrap;
            }
    .TOL-top-PC-master-choice .common-main-button::after {
        font-family: 'Material Symbols Outlined';
        content: '\e5cc';
        font-size: 24px;
        color: var(--tr-red);
        font-variation-settings: 'wght' 300;

    }
.TOL-top-PC-master-choice-genre-tag {
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 4px 4px 12px;
    border: 1.3px solid var(--tr-black);
}

    .TOL-top-PC-master-choice-genre-tag::after {
        font-family: 'Material Symbols Outlined';
        content: '\e5cc';
        font-size: 24px;
        color: var(--tr-red);
        font-variation-settings: 'wght' 300;
    }

    .TOL-top-PC-master-choice-genre-tag:hover {
        background: var(--tr-light-gray);
    }


.TOL-top-PC-master-choice .master-choice-contents .master-choice-item {
    margin-top: 10px;
    width: 1548px;
    max-width: 100%;
    margin: auto;
    max-width: 100%;
}

.swiper-button-disabled .common-slider-next-button,
.swiper-button-disabled .common-slider-prev-button {
    border: 1px solid var(--tr-deep-gray);
    cursor: default;
    pointer-events: none;
}
.common-slider-next-button .swiper-button-disabled-img,
.common-slider-prev-button .swiper-button-disabled-img{
   display: none;
}
.swiper-button-disabled .common-slider-next-button .swiper-button-img,
.swiper-button-disabled .common-slider-prev-button .swiper-button-img{
   display: none;
}
.swiper-button-disabled .common-slider-next-button .swiper-button-disabled-img,
.swiper-button-disabled .common-slider-prev-button .swiper-button-disabled-img{
   display: block;
}

    .swiper-button-disabled .common-slider-next-button:hover,
    .swiper-button-disabled .common-slider-prev-button:hover {
        background: none;
    }

    .swiper-button-disabled .common-slider-next-button > span,
    .swiper-button-disabled .common-slider-prev-button > span {
        color: var(--tr-deep-gray);
    }

.TOL-top-PC-master-choice .master-choice-contents .master-choice-item .tr-item-block-info {
    min-height: 170px;
}

.TOL-top-PC-master-choice .master-choice-contents .scroll-button .scroll-button-is-master-choice {
    width: 1548px;
    max-width: 100%;
    margin: auto;
    display: flex;
    height: 1px;
    justify-content: space-between;
    align-items: center;
    position: relative;
    top: 200px;
}

.TOL-top-PC-master-choice .master-choice-item .common-slider .choice-item-list {
    display: flex;
    height: 380px;
}

.TOL-top-PC-master-choice .master-choice-genre .master-icon {
    position: absolute;
    right: 50px;
    top: 18px;
}

    .TOL-top-PC-master-choice .master-choice-genre .master-icon img {
        width: 70px;
        height: 105px;
    }

.TOL-top-PC-master-choice .master-choice-item .common-slider-container .common-slider .tr-item-block .tr-item-block-info .common-tag-group {
    padding-bottom: 3px;
    border-bottom: 1px solid lightgray;
    margin-bottom: 7px;
}

.TOL-top-PC-master-choice .master-choice-item .common-slider-container .common-slider .tr-item-block .tr-item-block-info .staff-info {
    display: flex;
    position: relative;
    top: 5px;
}

    .TOL-top-PC-master-choice .master-choice-item .common-slider-container .common-slider .tr-item-block .tr-item-block-info .staff-info:hover span {
        text-decoration: underline;
    }

    .TOL-top-PC-master-choice .master-choice-item .common-slider-container .common-slider .tr-item-block .tr-item-block-info .staff-info.no-jump:hover span {
        text-decoration: none;
    }

    .TOL-top-PC-master-choice .master-choice-item .common-slider-container .common-slider .tr-item-block .tr-item-block-info .staff-info .staff-image {
        width: 65px;
        height: 65px;
    }

        .TOL-top-PC-master-choice .master-choice-item .common-slider-container .common-slider .tr-item-block .tr-item-block-info .staff-info .staff-image .staff-icon {
            width: 60px;
            height: 60px;
            object-fit: cover;
            border-radius: 50%;
        }

    .TOL-top-PC-master-choice .master-choice-item .common-slider-container .common-slider .tr-item-block .tr-item-block-info .staff-info .staff-name {
        display: flex;
        flex-direction: column;
        position: relative;
        left: 5px;
        top: 5px;
    }

    .TOL-top-PC-master-choice .master-choice-item .common-slider-container .common-slider .tr-item-block .tr-item-block-info .staff-info .staff-image .towerrecommend-icon {
        width: 80px;
        height: 23px;
    }

/*ランキング*/
.TOL-top-PC-ranking {
    min-height: 1200px;
    margin-top: 10px;
    margin-bottom: 50px;
    background-color: var(--tr-yellow);
}

    .TOL-top-PC-ranking .ranking-contents {
        width: 1548px;
        max-width: 100%;
        height: auto;
        margin: auto;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .TOL-top-PC-ranking .pre-order-ranking {
        position: relative;
        padding-bottom: 30px;
        margin-bottom: 40px;
    }

        .TOL-top-PC-ranking .pre-order-ranking:not(:last-of-type):after {
            content: '';
            position: absolute;
            left: 5%;
            bottom: 0;
            width: 90%;
            border-bottom: 1px solid var(--tr-white);
        }

        .TOL-top-PC-ranking .ranking-contents .ranking-title-main {
            width: 1400px;
            max-width: calc(100% - 148px);
            height: 55px;
            margin: auto;
            margin-bottom: 20px;
        }

            .TOL-top-PC-ranking .ranking-contents .ranking-title-main .section-lead-title-container .section-title-main .text-size-48 {
                margin-right: 7px;
            }

            .TOL-top-PC-ranking .ranking-contents .ranking-title-main .section-lead-title-container .section-title-main .text-size-20 {
                margin-left: 7px;
            }

        .TOL-top-PC-ranking .ranking-contents .sales-ranking {
            position: relative;
        }

            .TOL-top-PC-ranking .ranking-contents .sales-ranking .ranking-title-sub {
                width: 1400px;
                max-width: calc(100% - 148px);
                height: 35px;
                margin: auto;
                margin-bottom: 5px;
                border-top: 1.5px solid var(--tr-white);
                padding-top: 50px;
                margin-top: 50px;
            }


        .TOL-top-PC-ranking .ranking-contents .ranking-title-sub {
            width: 1400px;
            max-width: calc(100% - 148px);
            height: 35px;
            margin: auto;
            margin-bottom: 5px;
        }

            .TOL-top-PC-ranking .ranking-contents .ranking-title-sub .section-lead-title-container {
                display: flex;
                justify-content: space-between;
                align-items: center;
            }

                .TOL-top-PC-ranking .ranking-contents .ranking-title-sub .section-lead-title-container .section-title-main {
                    margin-left: 10px;
                }

                    .TOL-top-PC-ranking .ranking-contents .ranking-title-sub .section-lead-title-container .section-title-main .ranking-title-size-eng {
                        margin-right: 5px;
                        font-size: 28px;
                    }

                    .TOL-top-PC-ranking .ranking-contents .ranking-title-sub .section-lead-title-container .section-title-main .ranking-title-size-jp {
                        margin-left: 5px;
                        font-size: 16px;
                    }

        .TOL-top-PC-ranking .ranking-contents .ranking-genre-tablist {
            width: 1400px;
            max-width: calc(100% - 148px);
            height: 38px;
            margin: auto;
            margin-top: 5px;
            margin-bottom: 5px;
            background-color: var(--tr-white);
        }

            .TOL-top-PC-ranking .ranking-contents .ranking-genre-tablist .tr-tab-list .tr-tab-list-inner {
                margin-left: 5px;
            }

                .TOL-top-PC-ranking .ranking-contents .ranking-genre-tablist .tr-tab-list .tr-tab-list-inner .tr-tab-list-item {
                    padding: 6px 36px;
                }
/* min-width:1080pxで固定する */
/* はみだし対策 */
/*
@media screen and (max-width: 1064px) {
    .TOL-top-PC-ranking .ranking-contents .ranking-genre-tablist .tr-tab-list .tr-tab-list-inner .tr-tab-list-item {
        padding: 6px 2.5vw
    }
}
*/

.TOL-top-PC-ranking .ranking-contents .common-slider-container .common-slider {
    margin-bottom: 30px;
}

.TOL-top-PC-ranking .ranking-contents .common-slider-container .common-slider .tr-item-block {
    background-color: var(--tr-white);
}
    .TOL-top-PC-ranking .ranking-contents .common-slider-container .common-slider .tr-item-block .tr-item-block-ranking {
        left: 5px;
        top: -23px;
    }

    .TOL-top-PC-ranking .ranking-contents .common-slider-container .common-slider .tr-item-block .tr-item-block-info {
        background-color: var(--tr-white);
        padding-bottom:2px;
    }

    .TOL-top-PC-ranking .ranking-contents .common-slider-container .common-slider .tr-item-block .tr-item-block-info.is-text-black a:link {
        color: var(--tr-black) !important;
    }

        .TOL-top-PC-ranking .ranking-contents .common-slider-container .common-slider .tr-item-block .tr-item-block-info.is-text-black a {
            color: var(--tr-black) !important;
        }

        .TOL-top-PC-ranking .ranking-contents .common-slider-container .common-slider .tr-item-block .tr-item-block-info .tr-item-block-info-price {
            margin-top:0px;
        }

.tr-item-block-ranking {
    padding: 7px 6px 0px;
}
/*テーマ別のオススメ*/
.TOL-top-PC-osusume-is-theme {
    width: 1400px;
    max-width: 100%;
    height: auto;
    margin: auto;
    margin-bottom: 50px;
    background-color: var(--tr-gray);
}

.TOL-top-PC-osusume-is-theme-inner {
    padding: 30px;
}

@media screen and (max-width: 1548px) {
    .TOL-top-PC-osusume-is-theme-inner {
        padding: 30px 72px;
    }
}

.TOL-top-PC-osusume-is-theme .osusume-is-theme-title {
    margin: auto;
    margin-bottom: 10px;
}

.TOL-top-PC-osusume-is-theme .osusume-is-theme-button {
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center
}
    .TOL-top-PC-osusume-is-theme .osusume-is-theme-button img {
        width: 7px;
        margin: 0 3px;
    }

    .TOL-top-PC-osusume-is-theme .osusume-is-theme-button .common-square-button {
        width: calc(33.3% - 10px);
        min-height: 50px;
        margin: 5px 5px 5px 5px;
        padding: 10px;
        display: flex;
        justify-content: space-between;
        border: none;
        align-items: center;
        box-sizing: border-box;
    }

        .TOL-top-PC-osusume-is-theme .osusume-is-theme-button .common-square-button .text-size-20 {
            margin-left: 10px;
        }

        .TOL-top-PC-osusume-is-theme .osusume-is-theme-button .common-square-button .material-symbols-outlined {
            transform: rotate(-90deg);
        }

/*PICK UP*/
.TOL-top-PC-pick-up {
    background-color: var(--tr-yellow);
}

    .TOL-top-PC-pick-up .pick-up-contents {
        width: 1548px;
        max-width: 100%;
        height: auto;
        margin: auto;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .TOL-top-PC-pick-up .section-title-main {
    }

    .TOL-top-PC-pick-up .pick-up-contents .section-title-main .text-size-48 {
        margin-right: 8px;
    }

    .TOL-top-PC-pick-up .pick-up-contents .section-title-main .text-size-20 {
        margin-left: 8px;
    }

    .TOL-top-PC-pick-up .pick-up-contents .section-title-main .section-lead-title-container .section-title-main .text-size-36 {
        padding-right: 10px;
    }

    .TOL-top-PC-pick-up .pick-up-contents .common-slider-container .common-slider .tr-item-block .tr-item-block-link {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

        .TOL-top-PC-pick-up .pick-up-contents .common-slider-container .common-slider .tr-item-block .tr-item-block-link:hover .tr-item-block-info-pick-up {
            text-decoration: underline;
            text-decoration-color: var(--tr-black);
        }

        .TOL-top-PC-pick-up .pick-up-contents .common-slider-container .common-slider .tr-item-block .tr-item-block-link .tr-item-block-info {
            background-color: var(--tr-light-gray);
        }

            .TOL-top-PC-pick-up .pick-up-contents .common-slider-container .common-slider .tr-item-block .tr-item-block-link .tr-item-block-info .text-size-16 {
                margin-bottom: 5px;
            }

            .pick-up-contents-section-title .common-read-more-link .is-black {
                color: var(--tr-black) !important;
            }
.common-read-more-link img {
    width: 6px;
    margin: 0 8px;
}
.TOL-top-PC-recommend-frame {
    width: 1548px;
    max-width: 100%;
    height: auto;
    margin: auto;
    padding-top: 20px;
    padding-bottom: 20px;
}


.pick-up-contents-section-title {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    width: 1400px;
    max-width: calc(100% - 148px);
    margin: auto;
}

.TOL-top-PC-social-media-banner {
    max-width: 1400px;
    margin: auto;
    width: 70%;
}

.TOL-top-PC-social-media-banner {
    padding: 15px 73px;
}

    .TOL-top-PC-social-media-banner img {
        max-width: 100%;
    }


    /* バナーリスト */
    .TOL-top-PC-social-media-banner .bannerlist {
        margin-bottom: 10px;
    }

        .TOL-top-PC-social-media-banner .bannerlist li {
            background: none;
            padding: 0 0 0 0;
            float: left;
            margin-right: 10px;
        }
    /* バナーリスト2 */
    .TOL-top-PC-social-media-banner .bannerlist02 {
        margin-bottom: 10px;
    }

        .TOL-top-PC-social-media-banner .bannerlist02 > li img {
            border: solid 1px #B1B1B1;
            border-radius: 7px;
        }

        .TOL-top-PC-social-media-banner .bannerlist02 li {
            background: none;
            padding: 0 0 0 0;
            float: left;
            margin-right: 13.33333px;
        }

            .TOL-top-PC-social-media-banner .bannerlist02 li.last {
                background: none;
                padding: 0 0 0 0;
                float: left;
                margin-right: 0;
            }

.TOL-top-PC-general-purpose {
    max-width: 1400px;
    margin: auto;
    padding: 20px 0;
}

.TOL-top-PC-general-purpose-inner {
    padding: 0 74px;
}

.TOL-top-PC-recommend-frame a:link{
    color: var(--tr-black) !important;
}

/* min-width:1080pxで固定するため、共通CSSのmediaクエリを無効化する */
.TOL-top-PC .section-lead-title-container {
    display: flex;
    align-items: baseline;
    flex-direction:row;
}

.TOL-top-PC .section-lead-title-container .is-left {
    margin-left:75px;
}

    .TOL-top-PC .section-lead-title-container .section-title-main {
        margin-right: 6px;
    }

.TOL-top-PC .tr-item-block.is-size-l {
    width: calc(25% - 12px);
    min-width: calc(25% - 12px);
}

.TOL-top-PC .tr-item-block.is-size-m {
    width: calc(18% - 12px);
    min-width: calc(18% - 12px);
}

.TOL-top-PC .tr-item-block.is-size-s {
    width: calc(15.5% - 12px);
    min-width: calc(15.5% - 12px);
}

.TOL-top-PC .tr-item-block.is-size-l .tr-item-block-info {
    padding: 4px 16px 12px;
}

.TOL-top-PC .tr-item-block.is-size-m .tr-item-block-info {
    padding: 4px 8px 12px;
}

.TOL-top-PC .tr-item-block.is-size-s .tr-item-block-info {
    padding: 4px 8px 12px;
}

.TOL-top-PC .common-slider .tr-item-block + .tr-item-block {
    margin-left: 12px;
}

.TOL-top-PC .common-slider-btn {
    display:block;
}

.TOL-top-PC .recommend-title {
    margin-left: 75px;
}

#footerArea12base {
    min-width: 1080px;
}
