﻿/* -----------------------------------------------------------------------------
**
** 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にないので直接指定*/
    position: relative;
    overflow: hidden;
}

.TOL-top-PC-keyvisual .swiper {
    width: 100%;
}

.TOL-top-PC-keyvisual .swiper-wrapper {
    touch-action: pan-y;
}

.TOL-top-PC-keyvisual .swiper-slide {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

    .TOL-top-PC-keyvisual .TOL-top-PC-keyvisual-inner {
        max-width: 1400px;
        min-width: 1080px;
        height: 400px;
        width: 100%;
        display: flex;
        justify-content: center;
    }

        .TOL-top-PC-keyvisual .TOL-top-PC-keyvisual-inner .keyvisual-link {
            display: flex;
        }

        .TOL-top-PC-keyvisual .TOL-top-PC-keyvisual-inner .keyvisual-link .jacket-image {
            max-height: 400px;
            min-width: 560px;
            aspect-ratio: 7 / 5;
            object-fit: contain;
            object-position: center;
        }

        @supports (-moz-appearance: none) {
            .TOL-top-PC-keyvisual .TOL-top-PC-keyvisual-inner .keyvisual-link .jacket-image {
                width: 100%;
            }
        }

        .TOL-top-PC-keyvisual .TOL-top-PC-keyvisual-inner .keyvisual-explanation {
            width: 35vw;
            min-width: 378px;
            margin-left: 50px;
            margin-top: 75px;
        }

            .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 .keyvisual-jacket-menu {
            width: 35vw;
            min-width: 378px;
            margin: auto;
            display: flex;
            position: absolute;
            bottom: 30px;
            /* 検索サジェストの下に表示するため */
            z-index: 1;
        }

            .TOL-top-PC-keyvisual .keyvisual-jacket-menu.is-hidden {
                /*JSが実行されるまでは画面左端に表示されてしまうため非表示にする*/
                display: none;
            }

            .TOL-top-PC-keyvisual .keyvisual-jacket-menu .select-jacket-image {
                width: 90px;
                height: 90px;
                margin-right: 20px;
                object-fit: contain;
                cursor: pointer;
                background: var(--tr-black);
            }

                .TOL-top-PC-keyvisual .keyvisual-jacket-menu .select-jacket-image:hover {
                    /*選択用ジャケ写に、個別のアクションが効くことを証明するためのもの*/
                    filter: opacity(0.7);
                }

.keyvisual-explanation .keyvisual-explanation-text {
    overflow-wrap: anywhere;
    word-break: normal;
    line-break: strict;
    font-weight: bold;
}
.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;
    }
}
*/

/*カテゴリ見出し*/
.category-headline {
    width: 100%;
    background-color: var(--tr-black);
    padding: 10px 0;
}

    .category-headline .category-headline-contents {
        margin: 0 auto;
        display: flex;
        line-height: 2.2;
        width: 80%;
        max-width: 1200px;
        color: var(--tr-white);
        font-size: 19px;
    }

/* カテゴリ、ジャンルTOP ジャンル導線 */
.TOL-category-genre-top-genrenavi {
    width: 100%;
    background-color: var(--tr-black);
    padding: 5px 0;
}

    .TOL-category-genre-top-genrenavi .genrenavi-contents {
        margin: 0 auto;
        display: flex;
        justify-content: center;
        flex-wrap: wrap; /* 折り返し対応 */
        line-height: 2.2;
    }

        .TOL-category-genre-top-genrenavi .genrenavi-contents a {
            color: var(--tr-white);
            text-decoration: none;
            padding: 4px 16px;
            margin: 0 3px;
            border-radius: 20px;
            display: inline-block;
            transition: background-color 0.3s, color 0.3s;
        }

            .TOL-category-genre-top-genrenavi .genrenavi-contents a:hover {
                background-color: var(--tr-deep-gray);
                border-radius: 20px;
            }

            /* ジャンルナビゲーションのactiveスタイル（楕円形の赤背景） */
            .TOL-category-genre-top-genrenavi .genrenavi-contents a.active {
                background-color: var(--tr-red);
                border-radius: 20px;
            }

/* ジャンル導線 */
.TOL-top-genrenavi {
    width: 100%;
    background-color: var(--tr-black);
    padding: 5px 0;
}

.TOL-top-genrenavi .genrenavi-contents {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* 折り返し対応 */
    line-height: 2.2;
}

.TOL-top-genrenavi .genrenavi-contents a {
    color: #fff !important;
    text-decoration: none;
    padding: 4px 16px;
    margin: 0 3px;
    border-radius: 20px;
    display: inline-block;
    transition: background-color 0.3s, color 0.3s;
}

.TOL-top-genrenavi .genrenavi-contents a:hover {
    background-color: var(--tr-deep-gray);
    border-radius: 20px;
}

/* ジャンルナビゲーションのactiveスタイル（楕円形の赤背景） */
.TOL-top-genrenavi .genrenavi-contents a.active {
    background-color: var(--tr-red);
    border-radius: 20px;
}

/*↓↓ジャンルメニュー（本/雑誌/コミックTOP）↓↓*/
.books-genre-menu-bar {
    background: var(--tr-black);
    padding: 0;
    position: relative;
    border-bottom: 1px solid var(--tr-white);
}

.books-genre-menu-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.books-genre-menu-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.books-genre-menu-item {
    position: relative;
    list-style: none;
    z-index: 100;
}

    .books-genre-menu-item:hover {
        z-index: 1000;
    }

.books-genre-menu-link {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: var(--tr-white);
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
    cursor: pointer;
}

    .books-genre-menu-link::before {
        content: '';
        position: absolute;
        inset: 7px 0;
        background-color: transparent;
        border-radius: 20px;
        transition: background-color 0.2s;
        z-index: -1;
    }

    .books-genre-menu-link:hover::before {
        background-color: var(--tr-medium-gray);
    }

.menu-link.has-dropdown {
    display: flex;
    align-items: center;
}

.dropdown-arrow {
    width: 6px;
    height: 12px;
    margin-left: 6px;
    transition: transform 0.3s ease;
    transform: rotate(90deg);
}

.menu-link:hover .dropdown-arrow {
    transform: rotate(-90deg);
}

/* 第1階層のドロップダウン */
.books-genre-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--tr-black);
    min-width: 200px;
    box-shadow: 0 4px 12px var(--tr-black);
    z-index: 1001;
    list-style: none;
    padding: 0;
    margin: 0;
}

.books-genre-menu-item:hover > .books-genre-dropdown {
    display: block;
}

.books-genre-dropdown-item {
    position: relative;
    list-style: none;
}

.books-genre-dropdown-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    color: var(--tr-white);
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.2s;
}

    .books-genre-dropdown-link:hover {
        background-color: var(--tr-medium-gray);
    }

.dropdown-link.has-subdropdown:hover {
    border-radius: 0;
    padding: 12px 20px;
    margin: 0;
}

.books-genre-dropdown-arrow {
    width: 6px;
    height: 12px;
    margin-left: 6px;
    transition: transform 0.3s ease;
    transform: rotate(90deg);
}

.menu-link:hover .books-genre-dropdown-arrow {
    transform: rotate(-90deg);
}

.books-genre-subdropdown-arrow {
    width: 6px;
    height: 12px;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

/* 第2階層のドロップダウン（サブメニュー） */
.books-genre-subdropdown {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background: var(--tr-deep-gray);
    min-width: 180px;
    box-shadow: 0 4px 12px var(--tr-black);
    z-index: 1002;
    list-style: none;
    padding: 0;
    margin: 0;
}

.books-genre-dropdown-item:hover > .books-genre-subdropdown {
    display: block;
}

.books-genre-subdropdown li {
    list-style: none;
}

.books-genre-subdropdown-link {
    display: block;
    padding: 12px 20px;
    color: var(--tr-white);
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.2s;
}

    .books-genre-subdropdown-link:hover {
        background-color: var(--tr-medium-gray);
    }
/*↑↑ジャンルメニュー（本/雑誌/コミックTOP）↑↑*/

/*↓↓クラシック サブジャンルメニュー↓↓*/
.classic-sub-genre-container {
    background-color: var(--tr-gray);
    padding: 0;
    box-shadow: 0 2px 4px var(--tr-black);
}

.classic-sub-genre-nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    flex-wrap: wrap; /* 折り返し対応 */
}

    .classic-sub-genre-nav-menu li {
        margin: 0;
    }

        .classic-sub-genre-nav-menu li a {
            display: block;
            padding: 15px 20px;
            text-decoration: none;
            color: #333;
            font-size: 14px;
            white-space: nowrap;
            transition: color 0.3s;
            border-bottom: 3px solid transparent;
        }

            .classic-sub-genre-nav-menu li a:hover {
                color: var(--tr-red);
            }

            .classic-sub-genre-nav-menu li a.active {
                color: var(--tr-red);
                border-bottom-color: var(--tr-red);
            }
/*↑↑クラシック サブジャンルメニュー↑↑*/


/*バナー*/
.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;
    }

        /* 子要素が5つ以上のときだけgridに切り替え */
        .TOL-top-PC-banner .banner-group:has(> .banner-link:nth-child(5)) {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            justify-content: unset;
            flex-wrap: unset;
        }

        .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;
}

/*注目キーワード用デザイン*/
.HCO-top-featuredkeywords {
    min-height: 140px;
    margin-top: 20px;
}

    .HCO-top-featuredkeywords .keyword-title {
        display: flex;
        position: relative;
        justify-content: center;
        align-items: center;
    }

        .HCO-top-featuredkeywords .keyword-title-container span {
            font-size: 16px;
            line-height: 1.5;
            font-weight: bold;
        }

    .HCO-top-featuredkeywords .keyword-title::after {
        position: absolute;
        content: "";
        background-color: var(--tr-red);
        width: 20px;
        height: 3px;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
    }

    .HCO-top-featuredkeywords ul {
        width: 750px;
        min-height: 80px;
        margin: auto;
        margin-top: 25px;
        text-align: center;
        line-height: 2.2;
    }

        .HCO-top-featuredkeywords ul li {
            display: inline-block;
            margin: 2px 7px 2px 7px;
        }

            .HCO-top-featuredkeywords ul li a {
                font-size: 16px;
                line-height: 1.5;
            }

                .HCO-top-featuredkeywords ul li a:hover {
                    cursor: pointer;
                    text-decoration: underline;
                }
