@charset "utf-8";
/* Default CSS STYLE **********************************************

* Copyright TAKAYA COMMUNICATIONS.inc
**************************************************************/

:root {
    --book_height: 280px;

    /* 書籍のサムネイル画像サイズ */
    --book_img_width: calc( var(--book_height) * 0.56 ); /* calc( var(--book_height) * 0.56 ) or 198px */
    --book_img_height: calc( var(--book_height) * 0.8 );  /* calc( var(--book_height) * 0.8 ) or 280px */

    /* 本棚のループ画像 ※画像に関しては、横：--book_height、縦：--book_bg_widthで書き出しを行う */
    --book_bg_width: 60px;
    --book_bg_left: url(../img/board_left.png);
    --book_bg_center: url(../img/board_center.png);
    --book_bg_right: url(../img/board_right.png);


    /* sp用 */
    --sp_book_height: calc( var(--book_height) * 0.8 );
    --sp_book_img_width: calc( var(--book_img_width) * 0.8 );
    --sp_book_img_height: calc( var(--book_img_height) * 0.8 );
    --sp_book_bg_left: url(../img/board_left_sp.png);
    --sp_book_bg_center: url(../img/board_center_sp.png);
    --sp_book_bg_right: url(../img/board_right_sp.png);
}