@charset "UTF-8";

/*--------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------
 COMMON SETTEING
 --------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------*/
/* scroll */
html { 
    scroll-behavior: smooth;
    scroll-padding-top: 56px;
  }
  @media (min-width: 769px) {
    html {
      scroll-padding-top: 80px;
    }
  }

@media (min-width: 769px) {
  .cp-body .bw-breadcrumb{
    padding-left: 3%;
    padding-right: 3%;
  }
}

@media (min-width: 1000px) {
  .cp-body .bw-breadcrumb{
    padding-left: 0;
    padding-right: 0;
  }
}

/* footer上の余白削除 */

.bw-footer {
    padding-top: 0;
}

/* メインコンテンツ ヘッダー空き　調整用 */

body[data-page-type="top"] .bw_contentsArea,
.bw_contentsArea {
    margin-top: 51px !important;
}


/* PCヘッダー空き調整 */

@media all and (min-width: 769px) {
    body[data-page-type="top"] .bw_contentsArea,
    .bw_contentsArea {
        margin-top: 66px !important;
    }
}


/* PC パンクズ下の　margin　対策用 */

body[data-page-type="top"] .bw_contentsArea {
    display: block;
}


/*-------------------------------------------
 基本設定
-------------------------------------------*/

.cp-body {
    /* transition */
    --hover-transition: all .3s ease-out;
    /* テキストリンク */
    --col-txt-link: #1889CF;
    /* docomo red */
    --col-d-red: #cc0033;
    /* docomo green */
    --col-d-green: #009141;
    /* light gray(border.etc.) */
    --col-d-gray: #D9D9D9;
}


/*-------------------------------------------
 ページ調整
-------------------------------------------*/
.cp-main {
    /* 基本テキスト設定 */
    font-size: 16px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    line-height: 1.7;
}


/* PCで上にマージン */
@media all and (min-width: 769px) {
    .cp-main {
        margin-top: 15px;
    }
}


/* commonのlineheightを上書き他に合わせる */

.cp-main p {
    line-height: 1.7;
}

.cp-main__inner {
    /* 基本的に横中央になるように */
    margin: 0 auto;
}

/* h系設定リセット */
.cp-main h1,
.cp-main h2,
.cp-main h3,
.cp-main h4,
.cp-main h5,
.cp-main h6 {
    font-weight: bold;
    margin-bottom: 0;
    max-width: initial;
}


/*-------------------------------------------
 基本色設定
-------------------------------------------*/
.cp-main{
	/* max960で 960以下で左右に入れたい余白の数値 */
	/* 基本的にヘッダーなどに合わせ 8px */
	--size-rl-padding: 8px;

	/* （自動計算用） */
	--size-rl-padding-plus: calc( var(--size-rl-padding) + 2);

	/* コンテンツの余白　基本 */
	--gap-base: min(5%, 58px);

	/* コンテンツの余白 スマホで上下開けたい */
	--gap-base-tb: min(8%, 48px);

	/* 最大幅 */
	--maxwidth: 960px;
}

/* 横幅MAX960 */
.cont960 {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}


/*-------------------------------------------
 block 共通setting
-------------------------------------------*/
/* コンテンツのpadding + max width */
.cp-main .cont__padding-maxwidth {
    padding: calc(var(--gap-base) * 2) var(--gap-base);
    max-width: calc(var(--maxwidth) + (var(--gap-base) * 2));
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (min-width: 789px) {
    .cp-main .cont__padding-maxwidth {
       padding: var(--gap-base);
        }
}

/* コンテンツのpadding + max width 上下スマホで空き同じ */
.cp-main .cont__padding-maxwidth-tbsame {
    padding: var(--gap-base);
    max-width: calc(var(--maxwidth) + (var(--gap-base) * 2));
    margin-left: auto;
    margin-right: auto;
}

/* コンテンツのpadding + max width　上左右空き同じ */
.cp-main .cont__padding-maxwidth-trlsame {
    padding: var(--gap-base) var(--gap-base) var(--gap-base) var(--gap-base);
    max-width: calc(var(--maxwidth) + (var(--gap-base) * 2));
    margin-left: auto;
    margin-right: auto;
}

/* コンテンツのpadding + max width　上の空きなし */
.cp-main .cont__padding-maxwidth-only-brl {
    padding: 0 var(--gap-base) calc(var(--gap-base) * 2) var(--gap-base);
    max-width: calc(var(--maxwidth) + (var(--gap-base) * 2));
    margin-left: auto;
    margin-right: auto;
}

/* コンテンツのpadding + max width　上の空きなし */
.cp-main .cont__padding-maxwidth-only-brlsame {
    padding: 0 var(--gap-base) var(--gap-base) var(--gap-base);
    max-width: calc(var(--maxwidth) + (var(--gap-base) * 2));
    margin-left: auto;
    margin-right: auto;
}


/* コンテンツのpadding + max width　上の空きなし下は余白半分 */
.cp-main .cont__padding-maxwidth-only-b_half-rl {
    padding: 0 var(--gap-base) var(--gap-base) var(--gap-base);
    max-width: calc(var(--maxwidth) + (var(--gap-base) * 2));
    margin-left: auto;
    margin-right: auto;
}

/* コンテンツのpadding */
.cp-main .cont__padding{
	padding: var(--gap-base-tb) var(--gap-base);
}

/* コンテンツのpadding左右のみ */
.cp-main .cont__padding-only-rl{
	padding: 0 var(--gap-base);
}

/* コンテンツのpadding上下のみ */
.cp-main .cont__padding-only-tb{
	padding: var(--gap-base-tb) 0;
}

/* コンテンツのpadding上 */
.cp-main .cont__padding-only-tb{
	padding-top: var(--gap-base-tb) ;
}
/* コンテンツのpadding下 */
.cp-main .cont__padding-only-b{
	padding-bottom: var(--gap-base-tb) ;
}
/* padding右 */
.cp-main .cont__padding-only-r{
	padding-right: var(--gap-base) ;
}
/* コンテンツの左 */
.cp-main .cont__padding-only-l{
	padding-left: var(--gap-base) ;
}

/* コンテンツのpadding全てなし */
.cp-main .cont__padding-none{
	padding: 0;
}

/* コンテンツの margin */
.cp-main .cont__margin{
	margin: var(--gap-base-tb) var(--gap-base);
}

/* コンテンツのmargin左右のみ */
.cp-main .cont__margin-only-rl{
	margin: 0 var(--gap-base);
}

/* コンテンツのmargin上下のみ */
.cp-main .cont__margin-only-tb{
	margin: var(--gap-base) 0;
}

/* コンテンツのmargin上 */
.cp-main .cont__margin-only-t{
	margin-top: var(--gap-base) ;
}
/* コンテンツのmargin下 */
.cp-main .cont__margin-only-b{
	margin-bottom: var(--gap-base) ;
}
/* margin右 */
.cp-main .cont__margin-only-r{
	margin-right: var(--gap-base) ;
}
/* コンテンツの左 */
.cp-main .cont__margin-only-l{
	margin-left: var(--gap-base) ;
}

/* コンテンツ */
.cp-main .block-inner{
	margin-left: auto;
	margin-right: auto;
}

/* コンテンツ内の最大幅 */
.cp-main .maxwidth{
	max-width: var(--maxwidth);
}

/* 画像はmaxまで横100％に */
.cp-main img {
    width: 100%;
    max-width: 100%;
    height: auto;
}


/* setting a テキスト　リセット */

.cp-main a {
    color: var(--col-txt-link);
}

.cp-main a:link {
    text-decoration: underline;
}

.cp-main a:hover {
    text-decoration: none;
}


/* pcでのhoverにopacityとtransitionを設定 */

@media (min-width: 769px) {

    .cp-main a,
    .cp-main a img,
    .cp-main .arrow:before,
    .cp-main .arrow:after,
    .cp-main .cp-btn__large,
    .cp-main .cp-btn__middle,
    .cp-main .cp-btn__small {
        transition: var(--hover-transition);
        opacity: 1;
    }
}

/* ページ内リンク調整用 */
.cp-body .page__anchor{
	height: 0px;
	display: block;
	padding-top: 56px;
	margin-top: -56px;
  }
  
  @media (min-width: 769px) {
	  .cp-body .page__anchor{
	  padding-top: 66px;
	  margin-top: -66px;
	}
  }
  

/*-------------------------------------------
 display
-------------------------------------------*
/* inline-blockに */
.cp-main .disp__inline-block {
    display: inline-block;
}

/* inline-blockに */
.cp-main .disp__block {
    display: block;
}


/* 固定 */
.cp-main .txt-f-12 {
    font-size: 12px;
    line-height: 1.4;
}


.cp-main strong {
    font-weight: 700;
}


/*-------------------------------------------
 ボタン
-------------------------------------------*/


/* ボタン large */
.cp-main .cp-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    position: relative;
    line-height: 1.2;
}


/* ボタン large */
.cp-main .cp-btn__large {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: min(4vw, 20px);
    font-weight: bold;
    background: var(--col-d-red);
    width: min(100% , 600px);
    height: 56px;
    padding: 12px 26px;
    text-align: center;
    border-radius: 100px;
    margin: auto;
    position: relative;
    line-height: 1.2;
}


/* ボタン middle -ボタンリンク- */
.cp-main .cp-btn__middle {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--col-d-red);
    color: #fff;
    padding: 12px;
    border-radius: 30px;
    font-weight: bold;
    text-align: center;
    margin: auto;
    font-size: 12px;
    font-size: min(3vw ,16px);
    line-height: 1.3;
    position: relative;
    height: 40px;
}


/* ボタン small -ボタンリンク- */

.cp-main .cp-btn__small {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--col-d-red);
    color: #fff;
    padding: 12px;
    border-radius: 30px;
    font-weight: bold;
    text-align: center;
    font-size: 14px;
    position: relative;
    padding: 0.5em;
    margin: auto;
    line-height: 1.2;
}


/* ボタン　テキスト */

.cp-main a.cp-btn__large,
.cp-main a.cp-btn__middle,
.cp-main a.cp-btn__small,
.cp-main a.entry-block__btn {
    color: #fff;
    text-decoration: none;
}


/* ボタン　＞ */

.cp-main .arrow:before {
    position: absolute;
    content: " ";
    right: 15px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    top: 50%;
    transform:  translateY(-50%) rotate(45deg);
    -webkit-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
}


/* ボタン影 */
.cp-main .btn-shadow {
    box-shadow: 0px 3px 0 var(--btn-shadow);
    transition: var(--hover-transition);
    transform: translateY(0);
}

@media only screen and (min-width: 370px) {
    .cp-main .cp-btn__middle {
        font-size: min(3vw ,16px);
    }

    /* PC */
    .cp-main .arrow:before {
        right: 20px;
        width: 12px;
        height: 12px;
        border-top: 3px solid #fff;
        border-right: 3px solid #fff;
    }

    .cp-main .btn-shadow {
        box-shadow: 0px 3px 0 var(--btn-shadow);
    }
}

@media only screen and (min-width: 769px) {
    .cp-main .btn-shadow:hover {
        box-shadow: none !important;
        transform: translateY(3px);
    }

    .cp-main .arrow:hover:before{
        right: 24px;
    }
}


/*-----------------------------------
 テキスト　＼ ／
------------------------------------*/
/* テキスト */
.cp-main .text__deco-slash{
	display: flex;
	align-items: center;
	justify-content: center;
    margin-bottom: 2%;
	margin-bottom: min(2% , 8px);
    font-weight:700;
    font-size: clamp(14px, 4vw , 18px);
}

.cp-main .text__deco-slash::before,
.cp-main .text__deco-slash::after{
	content: "";
	height: 2em;
	width: 3px;
	background: var(--col-c-blue);
	vertical-align: bottom;
}

.cp-main  .text__deco-slash::before {
	-webkit-transform: rotate(-30deg);
	transform: rotate(-30deg);
	margin-right: 0.7em;
}

.cp-main .text__deco-slash::after {
	-webkit-transform: rotate(30deg);
	transform: rotate(30deg);
	margin-left: 0.7em;
}

/*-------------------------------------------
 リスト頭出し
-------------------------------------------*/

.cp-main .list__normal li {
    padding-left: 1em;
    text-indent: -1em;
}


.cp-main .list__normal li span{
	text-indent: 0;
}

/*-------------------------------------------
 下コンテンツのスマホの調整　ボーター入れる
-------------------------------------------*/

.bw-footer__download {
    padding-top: 2rem;
    border-top: 1px solid #ccc;
}


/*-------------------------------------------
close対応　
-------------------------------------------*/

/* ページ上テキスト */

/* setting other */
.attention__txt {
    font-size: 3.5vw;
    color: #cc0033;
}

@media only screen and (min-width: 390px) {
    .attention__txt {
        font-size: 12px;
    }
}


/* ボタン用 
------------------------*/


/* ボタンの色 */
.cp-main .cp-end {
    pointer-events: none !important;
    background-color: #c8c8c8 !important;
    border: none !important;
    color: #FFF !important;
    box-shadow: none !important;
}


/* 影 */
.cp-main .cp-end.btn-shadow {
    box-shadow: none !important;
}


/* 矢印 */
.cp-main .cp-end.arrow:before {
    border-color: #FFF !important;
}


/* 画像 */
.cp-main .cp-btn__large.cp-end img,
.cp-main .cp-btn__middle.cp-end img,
.cp-main .cp-btn__small.cp-end img {
    -webkit-filter: brightness(0) invert(1) !important;
    filter: brightness(0) invert(1) !important;
}


/* 画像直接用 
------------------------*/

.cp-main .cp-end .cp-end__img {
    -webkit-filter: grayscale(100%) !important;
    filter: grayscale(100%) !important;
    opacity: .5 !important;
}


/*-------------------------------------------
 テキストアンダーライン
-------------------------------------------*/

.cp-main .text-uline {
    background: linear-gradient(transparent 70%, var(--col-c-yellow) 30%);
}

/*-------------------------------------------
 テキストアンダーライン
-------------------------------------------*/

.cp-main .margin-b0{
    margin-bottom: 0!important;
}

/*--------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------
 メイン設定
 --------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------*/

/*-------------------------------------------
 このページのみの色
-------------------------------------------*/

.cp-main {
    /* blue */
    --col-c-blue: #1889CF;
    /* lightblue */
    --col-c-light-blue: #3CBFFE;
    /* green */
    --col-c-green: #07CB12;
    /* lightgreen */
    --col-c-light-green: #00DE8E;
}

/*-------------------------------------------
 HOVER
-------------------------------------------*/

/* ボタン　テキスト */
.cp-main a.cp-btn__large:hover,
.cp-main a.cp-btn__middle:hover,
.cp-main a.cp-btn__small:hover,
.cp-main a.entry-block__btn:hover {
    color: #fff;
    text-decoration: none;
}

@media only screen and (min-width: 769px) {
    /* text */
    .cp-main a.cp-btn__middle:hover,
    .cp-main .btn-genretop:hover,
    .cp-main a.cp-btn__small:hover
    {
        filter: brightness(115%) contrast(120%);
    }

    /* img */
    .cp-main a img:hover
    {
        filter: brightness(115%) contrast(108%);
    }
}


/*-------------------------------------------
 メインビジュアル
-------------------------------------------*/

/* 背景 */
.cp-main .mv-block {
    background-color: #aeeed6;
    background: url(../img/mv_bg.jpg) center top  repeat-x;
    overflow: hidden;
}


/* img */
.cp-main .mv-block__img {
    display: block;
    width: min(100% , 960px);
    margin-bottom: 0;
    margin: 0 auto;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.25);
}

/* ----------------------------------
  期間
-----------------------------------*/
.cp-main .period-block{
    background: var(--col-c-blue);
    padding: 8px;
    text-align: center;
    font-size: 14px;
    line-height: 1.3;
    color: #FFF;
    font-weight: bold;
}

/* ----------------------------------
  ナビゲーション
-----------------------------------*/
.cp-main .pnav-block{
    position: relative;
    z-index: 5;
}
.cp-main .pnav-block__inner{

}

.cp-main .pnav{
    width: min(100% ,960px);
    margin: auto;
}

.cp-main .pnav{
    display: grid;
    grid-auto-flow: column;

}

.cp-main .pnav__item{
    border-right: 1px dotted var(--col-d-gray);
    text-align: center;
    font-size: 16px;
}

.cp-main .pnav__item01{
    border-left: 1px dotted var(--col-d-gray);
}

.cp-main .pnav__item .pnav__link-text{
    display: block;
    text-align: center;
    padding: 8px 16px;
    text-decoration: none;
    line-height: 1.2;
    font-weight: bold;
    position: relative;
}


.cp-main .pnav__item .pnav__link-text::before{
    position: absolute;
    content: " ";
    right: 8px;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--col-c-green);
    border-right: 2px solid var(--col-c-green);
    top: 50%;
    transform:  translateY(-50%) rotate(45deg);
    -webkit-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    transition: var(--hover-transition);
}

/* current */
.cp-main .page-female .pnav__item01 .pnav__link-text,
.cp-main .page-male .pnav__item02 .pnav__link-text,
.cp-main .page-light-novel .pnav__item03 .pnav__link-text{
    color: var(--col-c-green);
    pointer-events: none;
}

.cp-main .page-female .pnav__item01 .pnav__link-text::before,
.cp-main .page-male .pnav__item02 .pnav__link-text::before,
.cp-main .page-light-novel .pnav__item03 .pnav__link-text::before{
    content: none;
}

.cp-main .page-female .pnav__item01 .pnav__link-text::after,
.cp-main .page-male .pnav__item02 .pnav__link-text::after,
.cp-main .page-light-novel .pnav__item03 .pnav__link-text::after{
    position: absolute;
    content: " ";
    display: block;
    background: center / contain no-repeat url(../img/icon_arrow.png);
    width: 53px;
    height: 29px;
    bottom: -29px;
    left: 50%;
    transform:  translateX(-50%) rotate(0);
    -webkit-transform: translateX(-50%) rotate(0);
    -ms-transform: translateX(-50%) rotate(0);
}


@media only screen and (min-width: 769px) {
    .cp-main .pnav__item .pnav__link-text::before{
        right: 12px;

    }
    
    .cp-main .pnav__item .pnav__link-text:hover{
        color: var(--col-c-green);
    }

    .cp-main .pnav__item .pnav__link-text:hover::before{
        right: 6px;
    }

    .cp-main .pnav__item .pnav__link-text{
       padding: 24px 8px;
       font-size: 20px;
    }
}

/* ----------------------------------
  メインエリア背景
-----------------------------------*/
.cp-main .cp-main-contents{
    background: rgb(209,255,164);
    background: -moz-linear-gradient(99deg, rgba(209,255,164,1) 0%, rgba(166,222,255,1) 100%);
    background: -webkit-linear-gradient(99deg, rgba(209,255,164,1) 0%, rgba(166,222,255,1) 100%);
    background: linear-gradient(99deg, rgba(209,255,164,1) 0%, rgba(166,222,255,1) 100%);
}

.cp-main .cp-main-contents__inner{
    background: url(../img/bg_star_l.png) left top / 100% auto no-repeat ,url(../img/stripe.png) center top repeat-x ;
}
@media only screen and (min-width: 769px) {
    .cp-main .cp-main-contents__inner{
        background-size: 60% auto ,auto auto ;
    }
}


/* ----------------------------------
  メインタイトル
-----------------------------------*/
.cp-main .main-title{
    text-align: center;
}

.cp-main .main-title__img{
    width: min(85% ,450px);
}

/*-------------------------------------------
 ランキング　大枠
-------------------------------------------*/
.cp-main .ranking-block{
    margin-top:24px;
}

.cp-main .ranking-block__inner{
    background: #FFF;
    box-shadow: 0px 0px 10px 0px rgba(24, 137, 207, 0.25);
}

.cp-main .ranking-header-block__inner{
    text-align: center;
    padding: 8% 8% 5%;
    background: url(../img/br_ranking.png) left top / 100% auto no-repeat,url(../img/stripe.png) center bottom repeat-x;
}

.ranking-header-block__title{
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 900;
    font-size: min(7vw ,36px);
    background: linear-gradient(180deg, #00EE0D 0%, #54BFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


@media only screen and (min-width: 769px) {
    .cp-main .ranking-header-block__inner{
            padding: 36px 0 36px ;
            background: url(../img/br_ranking.png) left top / auto 95% no-repeat,url(../img/stripe.png) center bottom repeat-x;
    }
    .ranking-header-block__title{
        font-size: 36px;
    }
}


/*-------------------------------------------
  ランキング nav
-------------------------------------------*/
.cp-main .page-nav{
    width: 80%;
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    margin: 8px auto;
}


.cp-main .page-nav__item{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url(../img/snav_m.png) center top / contain repeat-x #FCFFDA;
    height: 30px;
    font-size: 14px;
    text-decoration: none;
    transition: var(--hover-transition);
}

.cp-main .page-nav__item::before{
    content: "";
    position: absolute;
    width: 21px;
    left: -21px;
    top:0;
    display: block;
    background: url(../img/snav_l.png) right top / contain no-repeat ;
    height: 30px;
}

.cp-main .page-nav__item::after{
    content: "";
    position: absolute;
    width: 21px;
    right: -21px;
    top:0;
    display: block;
    background: url(../img/snav_r.png) left top / contain no-repeat ;
    height: 30px;
}


.cp-main a.page-nav__link{
    display: block;
    position: relative;
    width: 100%;
    text-decoration: none;
    font-weight:  bold;
    font-size: min(4vw, 10px);
}

.cp-main a.page-nav__link::after{
    content: "";
    width: 8px;
    height: 8px;
    border-style: solid;
    border-width: 2px 2px 0 0;
    border-color: #FF8225;
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%) rotate(135deg);
}

@media only screen and (min-width: 374px) {
    .cp-main a.page-nav__link{
        font-size: 14px;
    }
}

@media only screen and (min-width: 769px) {
    .cp-main .page-nav{
        width: 480px;
        gap: 36px;
    }

    .cp-main a.page-nav__link{
        font-size: 20px;
    }
    
    .cp-main .page-nav__item{
        height: 48px;
        font-size: 20px;
    }

    .cp-main .page-nav__item:hover{
        filter: brightness(115%) contrast(108%);
    }
    
    .cp-main .page-nav__item::before{
        width: 21px;
        left: -21px;
        height: 48px;
    }
    
    .cp-main .page-nav__item::after{

        width: 21px;
        right: -21px;

        height: 48px;
    }
    

    .cp-main a.page-nav__link::after{
        content: "";
        width: 10px;
        height: 10px;
        border-style: solid;
        border-width: 3px 3px 0 0;
        border-color: #FF8225;
        position: absolute;
        right: 5px;
        top: 50%;
        transform: translateY(-50%) rotate(135deg);
    }
}


/*-------------------------------------------
 手動棚　共通設定
-------------------------------------------*/
.cp-main .cp-shelf{
	display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 16px;
}


.cp-main .cp-shelf__img-box{
	display: block;
	padding-top: min(130%, 250px);
	position: relative;
	margin-bottom: 0.5em;
}

.cp-main .cp-shelf__img-box-link{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
    text-align: center;
}


.cp-main .cp-shelf__img-box__img{
    margin: 0 auto;
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
    border-radius: 0;
    -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.12);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.12);
}

.cp-main .cp-shelf__item__inner{
    display: flex;
    flex-direction: column;
}

.cp-main .cp-shelf__ranking{
    display: flex;
    flex-direction: column-reverse;
    height: 100%;
    font-weight: normal;
    margin-bottom: 6px;
    position: relative;
    width: 100%;
    padding-top: 22.380952381%;
}

.cp-main .cp-shelf__btns_btn{
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 3px .2em;
    border-radius: 4px;
    background: var(--col-c-green);
    border: 1px solid var(--col-c-green);
	line-height: 1;
	font-size: clamp(12px , 3vw , 14px);
	height: 40px;
}

.cp-main .cp-shelf__btns_btn--detail{
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 3px .2em;
    border-radius: 4px;
    background: #FFF;
    border: 1px solid var(--col-c-green);
    color: var(--col-c-green) !important;
	line-height: 1;
	font-size: clamp(12px , 3vw , 14px);
	height: 40px;
}

@media (min-width: 600px) {
    .cp-main .cp-shelf{
        gap: 32px;
    }
}


@media (min-width: 769px) {
    .cp-main .cp-shelf{
        grid-template-columns: repeat(5, 1fr);
        gap: 32px;
    }
}

@media (min-width: 860px) {
    .cp-main .cp-shelf{
        gap: 48px;
    }
}


.cp-main .cp-shelf__ranking__under4{
    border: 1px solid var(--col-c-blue);
    padding: 4px;
    line-height: 1;
    color: var(--col-c-blue);
    font-size: 12px;
    text-align: center;
}


.cp-shelf__ranking__under4,
.cp-shelf__ranking img{
	position: absolute;
	width: 100%;
	display: block;
	bottom: 0;
	left: 0;
}

@media (min-width: 769px) {
    .cp-main .cp-shelf__ranking__under4{
        font-size: 14px;
    }
}


/*-------------------------------------------
 ランキング　テキスト
-------------------------------------------*/
.cp-main .cp-ranking-textlist__item{
    border-bottom: 1px dashed var(--col-c-light-blue);
    margin-bottom: 16px;
}

.cp-main .cp-ranking-textlist__item--blue{
    border-color:var(--col-c-light-blue);
}

.cp-main .cp-ranking-textlist__item--green{
    border-color: var(--col-c-light-green);
}

.cp-main .cp-ranking-textlist__item--green{
    border-color: var(--col-c-light-green);
}

.cp-ranking-textlist__ranking{
    width: 70px;
    margin-right: 6px;
}

.cp-ranking-textlist__ranking__text{
    font-size: 12px;
    padding: 4px 0;
    font-weight: bold;
    color: #FFF;
    background: var(--col-c-light-blue);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
}

.cp-main .cp-ranking-textlist__title{
    width: calc(100% - 76px);

}

.cp-main .cp-ranking-textlist__title{
    font-size: 14px;
    line-height: 1.3;
}

.cp-main .cp-ranking-textlist__item--green .cp-ranking-textlist__ranking__text{
    background: var(--col-c-light-green);
}

.cp-ranking-textlist__ranking__text::before {
	position: absolute;
	content: "";
    top: -1px;
	left: -1px;
    width: 10px;
    height: calc(100% + 2px);
    background: #FFF;
	clip-path: polygon(0 0, 100% 0%, 20% 100%, 0% 100%);
}
.cp-ranking-textlist__ranking__text::after {
	position: absolute;
	content: "";
    top: -1px;
	right: -1px;
    width: 10px;
    height: calc(100% + 2px);
    background: #FFF;
	clip-path: polygon(80% 0, 100% 0, 100% 100%, 0 100%);
}

.cp-main a.cp-ranking-textlist__link{
    text-decoration: none;
    display: flex;
    margin-bottom: 8px;
    color: #000;
    transition: var(--hover-transition);
}


@media (min-width: 769px) {
    .cp-ranking-textlist__ranking{
        width: 100px;
    }

    .cp-main .cp-ranking-textlist__title{
        width: calc(100% - 106px);
        font-size: 16px;
    }

    .cp-ranking-textlist__ranking__text{
        font-size: 14px;
    }

    .cp-main a.cp-ranking-textlist__link:hover{
        filter: brightness(115%) contrast(108%);
        color: #988d6f;
    }

}
/*-------------------------------------------
 リンク
-------------------------------------------*/

.cp-main .btn-other-block__list{
    width: min(100%, 600px);
    margin: auto;
}

.cp-main .btn-other-block__list-item a{
    margin-bottom: 1.5em;
}

.cp-main .btn-other-block__list-item{
    margin-bottom: 16px;
}

.cp-main .btn-other-block__list-item:last-child{
    margin-bottom: 0;
}

.cp-main .btn-rankinglist {
    background: #FF8225;
    color: #FFF;
    font-size: 16px;
}


@media (min-width: 769px) {
    .cp-main .btn-other-block a:hover{
        opacity: .7;
    }

    .btn-other-block__list-img + .btn-other-block__list{
        margin-top: 48px;
    }

    .cp-main .btn-other-block__list-item{
        margin-bottom: 32px;
    }
}


/*-------------------------------------------
 ジャンルトップ
-------------------------------------------*/
.cp-main .btn-genretop{
    position: fixed;
    width: 60px;
    height: 60px;
    right: 20px;
    bottom: -120px;
    transition: var(--hover-transition);
    z-index: 999;
}


@media (min-width: 769px) {
    .cp-main .btn-genretop{
        width: 100px;
        height: 100px;
    }

    .cp-main .btn-genretop:hover{
        bottom: 30px;
    }
    
}