
/* 共通CSS */
.window_top {
    position: relative;
    top: -65px;
}

.top-page h3{
    font-size: 32px;
    line-height: 46px;
    text-align: center;
    margin-bottom: 20px;
    color: #004EB5;
    font-family: 'NotoSansJP-Bold';
}
.top-page .schedule h3{
    color: #fff;
}

.top-page .background-white{
    width: 100%;
    padding: 65px 0 30px;
    background-image: url(/cdn/bts/common/pc/images/top/bg_text_pattern_white.png);
    background-repeat: repeat;
}

.top-page .background-orange{
    width: 100%;
    background-color: #FF9011;
    background-image: url(/cdn/bts/common/pc/images/top/bg_text_pattern_orange.png);
    background-repeat: repeat;
}

.top-page .background-stripe{
    width: 100%;
    background-color: #F7FAFA;
    background-image: url(/cdn/bts/common/pc/images/common/bg_stripe.png);
    background-repeat: repeat;
}
.w_fill .top-page .w_content .com_content_wrapper{
    padding-bottom: 0;
}
/* マーキーエリア */
.top-page .marquee_content_wrapper{
    background-color: #004EB5;
}
.top-page .marquee_area {
    width: 990px;
    height: 27px;
    margin: auto;
    font-size: 12px;
    line-height: 17px;
    color: #FFFFFF;
    padding: 5px 0px;
    overflow: hidden; /* はみ出し部分を隠す */
    position: relative;
}
.top-page .marquee_area::after{
    content: "";
    display: block;
    position: absolute;
    width: 105px;
    height: 98%;
    left: 0px;
    top: 0;
    background-image: linear-gradient(to right, #004EB5 0%, rgba(18, 18, 18, 0) 100%);
    z-index: 2;
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
}

.top-page .text_animation {
    display: inline-block;
    white-space: nowrap; /* テキストを折り返さない */
    /* animation: marquee 13s linear infinite; アニメーション設定 */
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    padding-left: 100%;
}
.top-page .text_animation a{
    color: inherit;
    text-decoration: underline;
}

@keyframes marquee {
    0% {
        /* ※要確認 */
        transform: translateX(0%); /* 右の外側からスタート */
    }
    100% {
        transform: translateX(-110%); /* 左の外に抜ける */
    }
}

/* 非表示用クラス */
.top-page .marquee_content_wrapper.display_none {
    display: none;
}



/* 本日の発売レース */
.top-page .today-sell{
    padding-top: 35px;
    font-family: NotoSansJP-Medium;
}
.top-page .today-sell .today-sell-container{
    display: flex;
    flex-wrap: wrap;
}
.top-page .today-sell .today-sell_block{
    width: 470px;
    background-color: #FFFFFF;
    box-shadow: 2px 2px 5px #00000029;
}
.top-page .today-sell .today-sell_block.day{
    margin-left: 10px;
}
.top-page .today-sell .today-sell_block.nighter{
    margin-top: 10px;
}
.top-page .today-sell .sell-title{
    width: 100%;
    height: 32px;
    padding-top: 2px;
    padding-left: 10px;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 26px;
}
.top-page .today-sell .morning .sell-title{
    background-color: #6DC9F2;
}
.top-page .today-sell .day .sell-title{
    background-color: #FFBB00;
}
.top-page .today-sell .nighter .sell-title{
    background-color: #A182E9;
}
.top-page .today-sell .sell-item{
    display: flex;
    flex-wrap: wrap;
}
.top-page .today-sell .sell-item .sell-item_list{
    display: inline-block;
    width: 235px;
    padding: 9px 10px;
    font-size: 0;
}
.top-page .today-sell .sell-item .sell-item_list:nth-of-type(4n+2),
.top-page .today-sell .sell-item .sell-item_list:nth-of-type(4n+3){
    background-color: #F7FAFA;
}
.top-page .today-sell .sell-item .sell-item_list span{
    display: inline-block;
    font-size: 16px;
    line-height: 24px;
    vertical-align: middle;
}
.top-page .today-sell .sell-item_list span.sell_jo{
    width: 48px;
}
.top-page .today-sell .sell-item .sell-item_list span.sell_grade{
    width: 44px;
    height: 22px;
    margin-left: 8px;
    text-align: center;
    font-size: 14px;
    line-height: 20px;
}
.top-page .today-sell .sell-item_list span.sell_nichiji{
    width: 48px;
    margin-left: 5px;
}
.top-page .today-sell .sell-item_list span.sell_icon{
    margin-left: 1px;
    font-size: 0;
    line-height: 1;
}
.top-page .today-sell .sell-item_list span.sell_icon i{
    display: inline-block;
    width: 15px;
    height: 15px;
    background-size: 100%;
    vertical-align: middle;
}
.top-page .today-sell .sell-item_list span.sell_icon i.is-morning{
    width: 20px;
    height: 19px;
}
.top-page .today-sell .sell-item_list span.sell_icon i.is-nighter{
    width: 14px;
    height: 14px;
}
.top-page .today-sell .sell-item_list span.sell_icon i.is-lady{
    width: 13px;
    height: 13px;
}
.top-page .today-sell .sell-item_list span.sell_icon i:nth-of-type(n+2){
    margin-left: 5px;
}
.top-page .today-sell .sell-none-txt{
    font-size: 16px;
}
.top-page .today-sell .sell-item_list span.sell_icon:has(.is-nighter){
    margin-left: 4px;
}
.top-page .today-sell .sell-item_list span.sell_icon:has(.is-midnight){
    margin-left: 5px;
}
/* 新着情報 */
.top-page .news{
    padding-top: 30px;
}
.news_container{
    width: 950px;
    margin: 0 auto;
    padding: 20px 0;
    background: #fff;
    box-shadow: 2px 2px 5px #00000029;
}
.news_title{
    width: 780px;
    background: #B1B1B1;
    color: #fff;
    font-family: 'NotoSansJP-Bold';
    font-size: 18px;
    line-height: 26px;
    padding: 3px 0 5px 9px;
    box-sizing: border-box;
    margin: 0 auto 7px;
}
.news_list{
    padding: 0;
    width: 780px;
    list-style: none;
    margin: 0 auto;
}
.news_list li{
    font-size: 0;
    margin-bottom: 8px;
}
.news_list li:last-child{
    margin-bottom: 20px;
}
.news_list li span{
    vertical-align: middle;
}
.news_list .news_date{
    font-family: 'NotoSansJP-Bold';
    font-size: 18px;
    line-height: 26px;
    padding: 0 0 0 9px;
}
.col-tag_new, .col-tag_important{
    color: #fff;
    font-size: 12px;
    line-height: 14px;
    display: inline-block;
    width: 49px;
    text-align: center;
    padding: 2px 0;
    margin-left: 6px;
}
.col-tag_new{
    font-family: 'Roboto-Bold';
    background: #FF9011;
}
.col-tag_important{
    background: #D80808;
    font-family: 'NotoSansJP-Bold';
}
.news_text{
    font-size: 14px;
    line-height: 20px;
    padding: 0 9px;
}
.news_text a{
    text-decoration: none;
    color: inherit;
}
.list_link_button{
    text-align: center;
    margin: 0 auto;
}
.list_link_button a{
    text-decoration: none;
    font-family:'NotoSansJP-Medium';
    font-size: 14px;
    line-height: 20px;
    display: inline-block;
    color: #004EB5;
    border: 1px solid #004EB5;
    padding: 8px 65px 8px 50px;
    box-sizing: border-box;
    position: relative;
}
.list_link_button a::after{
    content: "";
    width: 16px;
    height: 8px;
    background-image: url(/cdn/bts/common/pc/images/common/arrow_01_blue.png);
    background-size: cover;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 9.27px;
    margin: auto 0;
}

/* 発売日程 */
.top-page .schedule{
    padding: 30px 0;
}
/* 発売日程は別CSSファイルで記載 */


/* ピックアップ */
.top-page .bnr-area{
    padding-top: 30px;
    padding-bottom: 50px;
}
.pickup_container {
    width: 100%;
    height: 180px;
}
.pickup_container .pickup_slider{
    width: 100%;
    height: 180px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}
.pickup_container .slick-list{
    padding: 0 161px;
}
.pickup_slider .pickup_banner{
    width: 294px;
    height: 180px;
    margin: 0 10px;
}
.pickup_banner a{
    width: 294px;
}
.pickup_banner img {
    vertical-align: bottom;
    object-fit: contain;
    box-shadow: 2px 2px 5px #00000029;
}
.pickup_container .slick-dots li+li{
    margin-left: 10px;
}
/******************
ピックアップslick
*******************/
/* Dots */
.pickup_container .slick-dots {
    bottom: 0;
    height: fit-content;
    bottom: -26px;
}
.pickup_container .slick-dots li {
    width: 45px;
    height: 5px;
    margin: 0;
}
.pickup_container .slick-dots li button {
    width: 45px;
    height: 5px;
    padding: 0;
    background: #98C5FF;
    opacity: 1;

}
.pickup_container .slick-dots li button:before {
    line-height: 6px;
    width: 45px;
    height: 5px;
    content: '';
    display: block;
    opacity: 1;
    color: #98C5FF;
}
.pickup_container .slick-dots li.slick-active button:before {
    opacity: 1;
    color: #004EB5;
    background: #004EB5;
}

/* フッターバナー */
.top-page .footer_banner_area{
    position: relative;
    width: 100%;
    min-height: 91px;
}
.top-page .w_content .footer-banner_content_wrapper{
    margin-top: 73px;
}
.top-page .footer_banner_area .slick-initialized .slick-slide{
    display:flex
}
.top-page .footer_banner_area .img_info{
    display: flex;
    /* margin-right: 0px; */
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.top-page .footer_banner_area .inner_content{
    margin-bottom: 0;
}
.top-page .footer_banner_area .img_info .list_info{
    width: 160px;     /* 画像の横幅 */
    height: 40px;     /* 画像の高さ */
    margin-right: 17px;
    margin-bottom: 11px;
}
.top-page .footer_banner_area .img_info .list_info:nth-of-type(n+6) {
    margin-bottom: 0;
}
.top-page .footer_banner_area .img_info .list_info:nth-of-type(5n+5) {
    margin-right: 0;
}
.top-page .footer_banner_area .a_info img{
    display: inline-block;
    width: 100%;
    height: 100%;
}
.top-page .footer_banner_area a{
    display: inline-block;
    width: 100%;
    height: 100%;
}


.top-page .footer_banner_area .slick-prev,
.top-page .footer_banner_area .slick-next {
    position: absolute;
    top: 60%;
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: center; */
    width: 28px;
    height: 55px;
    background: #004EB5;
    opacity: 1;
    transform: translateY(-50%);
    border: none;
    outline: none;
    cursor: pointer;
    z-index: 10;
}
/* .top-page .footer_banner_area .no-arrows .slick-prev,
.top-page .footer_banner_area .no-arrows .slick-next{
    display: none !important;
} */

.top-page .footer_banner_area .slick-prev:hover,
.top-page .footer_banner_area .slick-next:hover,
.top-page .footer_banner_area .slick-prev:focus,
.top-page .footer_banner_area .slick-next:focus{
    /* opacity: 1; */
    background: #004EB5;
}

.top-page .footer_banner_area .slick-prev {
    /* top: 103px; */
    left: 0px;
}

.top-page .footer_banner_area .slick-next {
    /* background: #004EB5; */
    right: 0px;
    /* top: 103px; */
}

.top-page .footer_banner_area .slick-prev::before,
.top-page .footer_banner_area .slick-next::before {
    content: "";
    position: relative;
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid #FFFFFF;  /* ← 白色 */
    border-top: 2px solid #FFFFFF;
    opacity: 1;
}

/* ← 左矢印 */
.top-page .footer_banner_area .slick-prev::before {
    margin-left: 10px;
    transform: rotate(-135deg);
}

/* → 右矢印 */
.top-page .footer_banner_area .slick-next::before {
    left: 5px;
    margin-right: 10px;
    transform: rotate(45deg);
}
.top-page .footer_banner_area .slick-list{
    width: 870px;
    overflow: hidden;
    margin: auto;
}