@charset "utf-8";

/*----------------------------------------------------
 elements
----------------------------------------------------*/
body {
    background: #fff;
    color: #333;
    font-family: 'Roboto','Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  .3s ease;
}

a:link {
    text-decoration: none;
}

a:hover {

}

a:visited {
    text-decoration: none;
}

img {
    vertical-align: top;
}

ul li {
    list-style: none;
}

.center {
    text-align: center;
}

.mb5 {
    margin-bottom: 5px;
}

.mb10 {
    margin-bottom: 10px;
}

.mb15 {
    margin-bottom: 15px;
}

.mb20 {
    margin-bottom: 20px;
}

.mb25 {
    margin-bottom: 25px;
}

.mb30 {
    margin-bottom: 30px;
}

.mb35 {
    margin-bottom: 35px;
}

.mb40 {
    margin-bottom: 40px;
}

.mb45 {
    margin-bottom: 45px;
}

.mb50 {
    margin-bottom: 50px;
}

div {
    box-sizing: border-box;
}

.bold {
    font-weight: bold;
}

.red {
    color: #be0709;
}
.blue {
    color: #1C1CE6;
}
.small {
    font-size: .8em;
}

/* For modern browsers */
.cf:before,
.cf:after {
    content:"";
    display:table;
}

.cf:after {
    clear:both;
}

/* For IE 6/7 (trigger hasLayout) */
.cf {
    zoom:1;
}

/* form */
input,
button,
textarea,
select {
    /* font-familyを継承しないので、継承させる */
    font-family: inherit;

    /* box-size */
    box-sizing: border-box;

    /* 文字の大きさ iOSでズームさせないために14px以上を指定 */
    font-size: 14px;

    /* 文字色を親から継承 */
    color: inherit;
}

label {
    /* iOSでのlabelとinput,select,textareaの関連付け */
    cursor: pointer;
}

.modal {
    position: fixed;
    display: none;
    z-index: 9999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 90%;
    max-width: 420px;
    height: 323px;
    padding: 20px;
    text-align: center;
    background: #fff;
    border-radius: 12px;
}

.modal p {
    margin-bottom:10px;
}

.modal p.mb30 {
    margin-bottom:30px;
}

.modal p.image img {
    width: 120px;
}

.modal a {
    cursor:pointer;
}

.modal ul {
    margin: 20px 0 0 0;
    display: flex;
    justify-content: space-between;
}

.modal ul li {
    width: 48%;
}

.modal ul li a {
    display: block;
    color: #333;
    border: 1px solid #ccc;
    background: #f1e767;
    background: -webkit-gradient(linear, left top, left bottom, from(#fdfbfb), to(#ebedee));
    background: -webkit-linear-gradient(top, #fdfbfb 0%, #ebedee 100%);
    background: linear-gradient(to bottom, #fdfbfb 0%, #ebedee 100%);
    padding: 10px;
    border-radius: 10px;
}

.modal ul li:first-child a {
    background: -webkit-gradient(linear, left top, left bottom, from(#0ba360), to(#3cba92));
    background-image: -webkit-linear-gradient(to top, #0ba360 0%, #3cba92 100%);
    background-image: linear-gradient(to top, #0ba360 0%, #3cba92 100%);
    color: #fff;
}

.modal ul li:first-child a {

}

.modal ul li a:hover {
    opacity: .7;
}

/*----------------------------------------------------
 .inner
----------------------------------------------------*/
.inner {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}


/*----------------------------------------------------
 header
----------------------------------------------------*/

#header {
    width: 100%;
    position: relative;
}

#header_top {
    padding: 7px 0;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
}

#header_top .logo {
    float: left;
    padding: 0 0 0 9px;
}

#header_top .nav {
    float: right;
    margin: 10px 0 0 0;
}

#header_top .nav li {
    padding: 0 0 0 12px;
    display: inline-block;
    background: url('/common/img/parts/header-link-con.png') no-repeat;
    font-size: .9em;
    background-position: 0 4px;
    margin: 0 0 0 22px;
}

#header_top .nav li a {
    color: #535353;
}

#header_top .nav li a:hover {
    color: #3473c2;
}

#header_middle {
    background: #f1f1f1;
    height: 55px;
}

#header_middle .cat_select {
    position: relative;
    float: left;
    font-weight: bold;
    background: url('/common/img/parts/search-plus-con.png') no-repeat;
    padding: 0 18px 0 26px;
    margin: 16px 30px 18px 12px;
}

#header_middle .cat_select:hover {
    cursor: pointer;
}

#header_middle .cat_select::after {
    content: '';
    background: url('/common/img/parts/bootm-arrow.png') no-repeat;
    background-size: 100% auto;
    width: 14px;
    height: 14px;
    position: absolute;
    right: 0;
    top: 4px;
}

#header #login {
    padding: 10px;
    background: #f2f4ff;
}

#header #login .login_box .bt {
    width: 100%;
    position: relative;
}

#header #login .login_box .pink a {
    color: #fff;
    background: #f29c9f;
    padding: 8px 10px;
    display: block;
    text-align: left;
    border-radius: 4px;
    margin: 0 0 10px;
}

#header #login .login_box .pink a:hover {
    background: #f1898c;
}

#header #login .login_box .pink a::after {
    content: '';
    background: url('/common/img/parts/white-arrow.png') no-repeat;
    width: 17px;
    height: 17px;
    position: absolute;
    right: 6px;
    top: 10px;
}

#header #login .login_box .purple a {
    color: #fff;
    background: #a88abe;
    padding: 8px 10px;
    display: block;
    text-align: left;
    border-radius: 4px;
    margin: 0 0 10px;
}

#header #login .login_box .purple a:hover {
    background: #a174c1;
}

#header #login .login_box .purple a::after {
    content: '';
    background: url('/common/img/parts/white-arrow.png') no-repeat;
    width: 17px;
    height: 17px;
    position: absolute;
    right: 6px;
    top: 10px;
}

#header #login .login_box .green a {
    color: #fff;
    background: #b4d465;
    padding: 8px 10px;
    display: block;
    text-align: left;
    border-radius: 4px;
}

#header #login .login_box .green a:hover {
    background: #a5cc47;
}

#header #login .login_box .green a::after {
    content: '';
    background: url('/common/img/parts/white-arrow.png') no-repeat;
    width: 17px;
    height: 17px;
    position: absolute;
    right: 6px;
    top: 10px;
}

#header #sp_menu {
    display: none;
}

#header #search_sp {
    display: none;
}

#header #search_sp {
    display: none;
}

#header #categorys {
    display: none;
    padding: 10px;
}

#header #categorys .head {
    background: url(/common/img/parts/file-con.png) #f0fdff no-repeat;
    background-size: 20px auto;
    background-position: 12px 12px;
    font-weight: bold;
    color: #333;
    padding: 10px 10px 10px 40px;
    margin: 0 0 8px;
    border-radius: 4px;
}

#header #categorys ul li {
    display: inline-block;
    margin: 0 0 0 0;
}

#header #categorys ul li a {
    background: url(/common/img/parts/cat-con.png) no-repeat;
    background-size: 13px auto;
    background-position: 9px 12px;
    position: relative;
    display: block;
    color: #333;
    padding: 7px 10px 7px 29px;
}

#header #categorys ul li a:hover {
    color: #247fae;
}

#header_middle .header_search {
    float: left;
    width: 100%;
    max-width: 290px;
    margin: 11px 0 0 0;
}

#header_middle .header_search li:first-child {
    float: left;
    width: 67%;
}

#header_middle .header_search li:first-child input {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    height: 33px;
    padding: 0 0 0 11px;
    box-sizing: border-box;
    width: 100%;
}

#header_middle .header_search li:first-child input::placeholder {
    color: #dad8d9;
}

#header_middle .header_search li:last-child {
    float: left;
    width: 33%
}

#header_middle .header_search li:last-child button {
    background: #434343;
    border-radius: 0 4px 4px 0;
    border: 1px solid #ddd;
    border-left: none;
    color: #fff;
    height: 33px;
    width: 100%;
}

#header_middle .header_search li:last-child button:hover {
    cursor: pointer;
}

#header_middle .header_search li:last-child button span {
    background: url('/common/img/parts/search-con.png') no-repeat;
    background-position-y: 2px;
    padding: 0 0 0 19px;
    font-family: 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}

#header_middle .cart_link {
    float: right;
    height: 55px;
}

#header_middle .cart_link a {
    position: relative;
    border-top: 4px solid #fef200;
    background: linear-gradient(180deg, #f29ba1 0%, #f793ab 49%, #fb8cb6 100%);
    height: 100%;
    display: block;
    box-sizing: border-box;
    color: #fff;
    font-size: 1.1em;
    font-weight: bold;
    padding: 4px 18px 0 62px;
}

#header_middle .cart_link.cart_off a {
    border-top: 4px solid #FFC107;
    background: linear-gradient(180deg, #4CAF50 0%, #4CAF50 49%, #009641 100%);
}

#header_middle .cart_link a::before {
    content: '';
    background: url('/common/img/parts/cart-color.png') no-repeat;
    background-size: 100% auto;
    width: 52px;
    height: 43px;
    position: absolute;
    left: 4px;
    top: 3px;
}

#header_middle .cart_link a span {
    display: block;
    font-weight: normal;
    font-size: .7em;
}

#header_middle .login_status {
    float: right;
    font-weight: bold;
    text-align: center;
    margin: 7px 17px 0 0;
}

#header_middle .login_status a {
    text-decoration: underline;
    color: #247fae;
}

#header_middle .login_status span {
    display: block;
    font-weight: normal;
    font-size: .7em;
}

#header_bottom {
    background: #40484a;
}

#header_bottom ul li {
    display: inline-block;
    font-weight: bold;
    margin: 0 0 0 0;
    min-width: 100px;
}

#header_bottom ul li.drop_down {
    position: relative;
    cursor: pointer;
}

#header_bottom ul li.drop_down ul.menu_child {
    position: absolute;
    left: 0;
    top: 34px;
    background: #fff;
    border-left: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
    padding: 0 0;
    z-index: 999;
    display: none;
    width: 100%;
}

#header_bottom ul li.drop_down ul.menu_child li {
    border-bottom: 1px solid #e5e5e5;
    display: block;
}

#header_bottom ul li.drop_down ul.menu_child li.height a {
    line-height: 26px;
}

#header_bottom ul li.drop_down ul.menu_child li a {
    color: #333;
    background: none;
    padding: 0 0 0 13px;
}

#header_bottom ul li.drop_down ul.menu_child li a:hover {
    color: #fff;
    background: #32b16c;
}

#header_bottom ul li.drop_down ul.menu_child li a::after {
    display: none;
}

#header_bottom ul li a {
    position: relative;
    color: #fff;
    line-height: 34px;
    display: block;
}

#header_bottom ul li:nth-child(1) a {
    background: url('/common/img/parts/nav-con-01.png') no-repeat;
    background-size: 16px auto;
    background-position: 15px 9px;
    padding: 0 20px 0 38px;
}

#header_bottom ul li:nth-child(2) a {
    background: url('/common/img/parts/nav-con-02.png') no-repeat;
    background-size: 16px auto;
    background-position: 15px 9px;
    padding: 0 20px 0 38px;
}

#header_bottom ul li:nth-child(3) a {
    background: url('/common/img/parts/nav-con-03.png') no-repeat;
    background-size: 16px auto;
    background-position: 15px 9px;
    padding: 0 20px 0 38px;
}

#header_bottom ul li:nth-child(4) a {
    background: url('/common/img/parts/nav-con-04.png') no-repeat;
    background-size: 16px auto;
    background-position: 15px 9px;
    padding: 0 40px 0 38px;
}

#header_bottom ul li:nth-child(4) a::after {
    content: '';
    background: url('/common/img/parts/nav-bottom-arrow.png') no-repeat;
    background-size: 100% auto;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 4px;
    top: 7px;
}

#header_bottom ul li:nth-child(5) a {
    background: url('/common/img/parts/nav-con-05.png') no-repeat;
    background-size: 16px auto;
    background-position: 15px 9px;
    padding: 0 40px 0 38px;
}

#header_bottom ul li:nth-child(5) a::after {
    content: '';
    background: url('/common/img/parts/nav-bottom-arrow.png') no-repeat;
    background-size: 100% auto;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 4px;
    top: 7px;
}

#header_bottom ul li a:hover {
    background-color: #32b16c;
}

/*----------------------------------------------------
 main_col + main_contents
----------------------------------------------------*/

#main_contents {
    width: 100%;
    position: relative;
}

#main_col {
    max-width: 1100px;
    margin: 23px auto 150px;
    padding: 0;
}

#main_col #left_col {
    width: -webkit-calc(100% - 3.3333% - 250px);
    width: -moz-calc(100% - 3.3333% - 250px);
    width: calc(100% - 3.3333% - 250px);
    float: left;
}

/*----------------------------------------------------
 side_col
----------------------------------------------------*/

#main_col #side_col {
    width: 250px;
    float: right;
}

#side_col .order_box {
    border: 5px solid #e5e5e5;
    border-radius: 4px;
    padding: 12px;
    margin: 0 0 17px;
}

#side_col .order_box h3 {
    text-align: center;
    margin: 0 0 5px;
}

#side_col .order_box .price {
    text-align: center;
    font-weight: bold;
    color: #920805;
    margin: 0 0 7px;
}

#side_col .order_box .price .remaining,
#left_col .purchase_box .top .remaining {
    border: 1px solid #E91E63;
    color: #E91E63;
    border-radius: 4px;
    padding: 1px 2px;
    font-size: 11px;
    font-weight: normal;
}

#side_col .order_box .price .remaining_warning,
#left_col .purchase_box .top .remaining_warning {
    border: 1px solid #E91E63;
    background: #E91E63;
    color: #fff;
    border-radius: 4px;
    padding: 1px 2px;
    font-size: 11px;
    font-weight: normal;
    animation: flash 1s linear infinite;
}

@keyframes flash {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

#side_col .order_box .cart_bt {
    margin: 0 0 10px;
    position: relative;
}

#side_col .order_box .cart_bt a {
    position: relative;
    display: block;
    background: #f2914a;
    padding: 8px 10px 8px 32px;
    color: #fff;
    font-weight: bold;
    border-radius: 4px;
}

#side_col .order_box .cart_bt a::before {
    content: '';
    background: url('/common/img/product/cart-con.png') no-repeat;
    background-size: 100% auto;
    position: absolute;
    width: 19px;
    height: 21px;
    left: 8px;
    top: 8px;
}

#side_col .order_box .cart_bt a::after {
    content: '';
    background: url('/common/img/parts/white-arrow.png') no-repeat;
    width: 17px;
    height: 17px;
    position: absolute;
    right: 6px;
    top: 10px;
}

#side_col .order_box .cart_bt a:hover {
    background: #f37214;
}

#side_col .order_box .buy_bt {
    position: relative;
}

#side_col .order_box .buy_bt a {
    position: relative;
    display: block;
    background: #d1c0a6;
    padding: 8px 10px 8px 32px;
    color: #fff;
    font-weight: bold;
    border-radius: 4px;
}

#side_col .order_box .buy_bt a::before {
    content: '';
    background: url('/common/img/product/buy-con.png') no-repeat;
    background-size: 100% auto;
    position: absolute;
    width: 19px;
    height: 21px;
    left: 8px;
    top: 8px;
}

#side_col .order_box .buy_bt a::after {
    content: '';
    background: url('/common/img/parts/white-arrow.png') no-repeat;
    width: 17px;
    height: 17px;
    position: absolute;
    right: 6px;
    top: 10px;
}

#side_col .order_box .buy_bt a:hover {
    background: #c59c5e;
}



#side_col .login_box {
    background: #f2f4ff;
    border: 1px solid #d2d2d2;
    margin: 0 0 17px;
    text-align: center;
    font-weight: bold;
    border-radius: 4px;
    padding: 12px;
}

#side_col .login_box p {
    margin: 0 0 10px;
}

#side_col .login_box .bt {
    width: 100%;
    position: relative;
}

#side_col .login_box .pink a {
    color: #fff;
    background: #f29c9f;
    padding: 8px 10px;
    display: block;
    text-align: left;
    border-radius: 4px;
    margin: 0 0 10px;
}

#side_col .login_box .pink a:hover {
    background: #f1898c;
}

#side_col .login_box .pink a::after {
    content: '';
    background: url('/common/img/parts/white-arrow.png') no-repeat;
    width: 17px;
    height: 17px;
    position: absolute;
    right: 6px;
    top: 10px;
}

#side_col .login_box .purple a {
    color: #fff;
    background: #a88abe;
    padding: 8px 10px;
    display: block;
    text-align: left;
    border-radius: 4px;
    margin: 0 0 10px;
}

#side_col .login_box .purple a:hover {
    background: #a174c1;
}

#side_col .login_box .purple a::after {
    content: '';
    background: url('/common/img/parts/white-arrow.png') no-repeat;
    width: 17px;
    height: 17px;
    position: absolute;
    right: 6px;
    top: 10px;
}

#side_col .login_box .green a {
    color: #fff;
    background: #b4d465;
    padding: 8px 10px;
    display: block;
    text-align: left;
    border-radius: 4px;
}

#side_col .login_box .green a:hover {
    background: #a5cc47;
}

#side_col .login_box .green a::after {
    content: '';
    background: url('/common/img/parts/white-arrow.png') no-repeat;
    width: 17px;
    height: 17px;
    position: absolute;
    right: 6px;
    top: 10px;
}

#side_col .side_search {
    margin: 0 0 17px;
}

#side_col .side_search li:first-child {
    float: left;
    width: 67%;
}

#side_col .side_search li:first-child input {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    height: 36px;
    padding: 0 0 0 11px;
    box-sizing: border-box;
}

#side_col .side_search li:first-child input::placeholder {
    color: #dad8d9;
}

#side_col .side_search li:last-child {
    float: left;
    width: 33%
}

#side_col .side_search li:last-child button {
    background: #434343;
    border-radius: 0 4px 4px 0;
    border: 1px solid #ddd;
    border-left: none;
    color: #fff;
    height: 36px;
    width: 100%;
}

#side_col .side_search li:last-child button:hover {
    cursor: pointer;
}

#side_col .side_search li:last-child button span {
    background: url('/common/img/parts/search-con.png') no-repeat;
    background-position-y: 2px;
    padding: 0 0 0 19px;
    font-family: 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}

#side_col .search_list {
    border: 1px solid #d2d2d2;
    border-radius: 4px;
    margin: 0 0 17px;
}

#side_col .search_list .head {
    background: url('/common/img/parts/pc-con.png') #535353 no-repeat;
    background-size: 20px auto;
    background-position: 12px 12px;
    font-weight: bold;
    color: #fff;
    padding: 10px 10px 10px 40px;
    border-radius: 4px 4px 0 0;
}

#side_col .search_list ul  {
    margin: 4px 8px;
}

#side_col .search_list ul li {
    border-bottom: 1px solid #d2d2d2;
}


#side_col .search_list ul li:last-child {
    border: none;
}

#side_col .search_list ul li a {
    position: relative;
    display: block;
    color: #333;
    padding: 10px 10px 10px 32px;
}

#side_col .search_list ul li a::after {
    content: '';
    background: url('/common/img/parts/right-arrow.png') no-repeat;
    width: 13px;
    height: 13px;
    position: absolute;
    right: 6px;
    top: 15px;
}

#side_col .search_list ul li a:hover::after {
    content: '';
    background: url('/common/img/parts/right-arrow-hover.png') no-repeat;
    width: 13px;
    height: 13px;
    position: absolute;
    right: 6px;
    top: 15px;
}

#side_col .search_list ul li:nth-child(1) a {
    background: url('/common/img/parts/search-link-con01.png') no-repeat;
    background-size: 17px auto;
    background-position: 6px 12px;
}

#side_col .search_list ul li:nth-child(1) a:hover {
    background: url('/common/img/parts/search-link-con01-hover.png') #32b16c no-repeat;
    color: #fff;
    background-size: 17px auto;
    background-position: 6px 12px;
}


#side_col .search_list ul li:nth-child(2) a {
    background: url('/common/img/parts/search-link-con02.png') no-repeat;
    background-size: 16px auto;
    background-position: 6px 13px;
}

#side_col .search_list ul li:nth-child(2) a:hover {
    background: url('/common/img/parts/search-link-con02-hover.png') #32b16c no-repeat;
    color: #fff;
    background-size: 16px auto;
    background-position: 6px 13px;
}


#side_col .search_list ul li:nth-child(3) a {
    background: url('/common/img/parts/search-link-con03.png') no-repeat;
    background-size: 16px auto;
    background-position: 6px 14px;
}

#side_col .search_list ul li:nth-child(3) a:hover {
    background: url('/common/img/parts/search-link-con03-hover.png') #32b16c no-repeat;
    color: #fff;
    background-size: 16px auto;
    background-position: 6px 14px;
}


#side_col .search_list ul li:nth-child(4) a {
    background: url('/common/img/parts/search-link-con04.png') no-repeat;
    background-size: 16px auto;
    background-position: 6px 14px;
}

#side_col .search_list ul li:nth-child(4) a:hover {
    background: url('/common/img/parts/search-link-con04-hover.png') #32b16c no-repeat;
    color: #fff;
    background-size: 16px auto;
    background-position: 6px 14px;
}

#side_col .cat_list {
    border: 1px solid #d2d2d2;
    border-radius: 4px;
    margin: 0 0 17px;
}

#side_col .cat_list .head {
    background: url('/common/img/parts/file-con.png') #eeeeee no-repeat;
    background-size: 20px auto;
    background-position: 14px 11px;
    font-weight: bold;
    color: #333;
    padding: 10px 10px 10px 40px;
    border-radius: 4px 4px 0 0;
}

#side_col .cat_list ul  {
    margin: 4px 8px;
}

#side_col .cat_list ul li {
    border-bottom: 1px solid #d2d2d2;
}


#side_col .cat_list ul li:last-child {
    border: none;
}

#side_col .cat_list ul li a {
    position: relative;
    display: block;
    color: #333;
    padding: 10px 10px 10px 32px;
}

#side_col .cat_list ul li a::after {
    content: '';
    background: url('/common/img/parts/right-arrow.png') no-repeat;
    width: 13px;
    height: 13px;
    position: absolute;
    right: 6px;
    top: 15px;
}

#side_col .cat_list ul li a:hover::after {
    content: '';
    background: url('/common/img/parts/right-arrow-hover.png') no-repeat;
    width: 13px;
    height: 13px;
    position: absolute;
    right: 6px;
    top: 15px;
}

#side_col .cat_list ul li a {
    background: url('/common/img/parts/cat-con.png') no-repeat;
    background-size: 15px auto;
    background-position: 9px 13px;
}

#side_col .cat_list ul li a:hover {
    background: url('/common/img/parts/cat-con-hover.png') #32b16c no-repeat;
    color: #fff;
    background-size: 15px auto;
    background-position: 9px 13px;
}

#side_col .rank_list {
    margin: 0 0 17px;
}

#side_col .rank_list .head {
    position: relative;
    background: linear-gradient(180deg, #f29ba1 0%, #f793ab 49%, #fb8cb6 100%);
    font-weight: bold;
    color: #fff;
    padding: 7px 10px 7px 37px;
    margin: 0 0 5px;
}

#side_col .rank_list .head::after {
    content: '';
    background: url('/common/img/parts/rank-con.png') no-repeat;
    background-size: 100% auto;
    width: 19px;
    height: 19px;
    position: absolute;
    left: 12px;
    top: 8px;
}

#side_col .rank_list ul li {
    margin: 0 0 30px;
    position: relative;
}

#side_col .rank_list ul li .pointback {
    font-size: 11px;
    color: #fff;
    padding: 0px 4px 1px 30px;
    position: absolute;
    white-space: nowrap;
    left: 0;
    top: 0;
}

#side_col .rank_list ul li .pointback:before {
    content: '';
    width: 25px;
    height: 25px;
    background: url(../img/parts/point-mark.png) no-repeat;
    background-size: 100% auto;
    position: absolute;
    left: 1px;
    top: -3px;
}

#side_col .rank_list ul li .pointback span {
    font-size: 13px;
    font-weight: bold;
}

#side_col .rank_list ul li .pointback.back-05 {
    background: rgb(33 150 243 / .7);
}

#side_col .rank_list ul li .pointback.back-10 {
    background: rgb(0 150 136 / .7);
}

#side_col .rank_list ul li .pointback.back-15 {
    background: rgb(103 58 183 / .7);
}

#side_col .rank_list ul li .pointback.back-20 {
    background: rgb(255 87 34 / .7);
}

#side_col .rank_list ul li .pointback.back-50 {
    background: rgb(233 30 99 / .7);
}



#side_col .rank_list ul li a {
    color: #4b4b4b;
    display: block;
    -webkit-transition: opacity .3s ease-out;
    -moz-transition: opacity .3s ease-out;
    -ms-transition: opacity .3s ease-out;
    transition: opacity .3s ease-out;
}

#side_col .rank_list ul li a:hover {
    opacity: .7;
    -webkit-opacity: .7;
    -moz-opacity: .7;
}

#side_col .rank_list ul li a .image_area {
    position: relative;
    background: #eee;
    height: 190px;
    width: 100%;
    margin: 0 0 7px;
}

#side_col .rank_list ul li a .image_area img {
    position: absolute;
    display: inline-block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

#side_col .rank_list ul li a .image_area .title {
    background: rgb(255 255 255 / 0.7);
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 13px 15px;
    color: #247fae;
    font-weight: bold;
}

#side_col .rank_list ul li ol {
    display: flex;
    margin: 0 0 3px 3px;
}

#side_col .rank_list ul li ol li {
    float: none;
    width: auto;
    margin: 0;
    color: #fff;
    font-size: .8em;
    padding: 0 3px;
    border-radius: 4px;
    margin: 0 4px 0 0;
}

#side_col .rank_list ul li ol li.benefits {
    background-image: linear-gradient(to top, #FF9800 0%, #FFC107 100%);
}

#side_col .rank_list ul li ol li.limited {
    background-image: linear-gradient(to top, #ff0844 0%, #fba388 100%);
}

#side_col .rank_list ul li ol li.set {
    background-image: linear-gradient(to top, #6f86d6 0%, #48c6ef 100%);
}

#side_col .rank_list ul li a .bottom {
    width: 100%;
}

#side_col .rank_list ul li a .bottom .user {
    width: 56%;
    float: left;
    background: url(/common/img/parts/name-con.png) no-repeat;
    padding: 2px 0 0 19px;
    color: #4b4b4b;
    font-weight: bold;
}

#side_col .rank_list ul li a .bottom .price {
    width: 42%;
    float: right;
    color: #be0709;
    font-weight: bold;
    text-align: right;
    padding: 2px 0 0 0;
    display: flex;
    justify-content: flex-end;
}

#side_col .rank_list ul li a .bottom .price span.point-bade {
    display: block;
    margin: -8px 0 0 3px;
}

#side_col .rank_list ul li a .bottom .price span.point-bade img {
    width: 40px;
}

#side_col .rank_list ul li:nth-child(1) a .image_area .title::after {
    content: '1';
    background: url(/common/img/parts/no1_con.png) no-repeat;
    width: 50px;
    height: auto;
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    background-size: cover;
    color: #ffffff;
    text-align: center;
    padding: 12px 0 0px;
}

#side_col .rank_list ul li:nth-child(2) a .image_area .title::after {
    content: '2';
    background: url(/common/img/parts/no2_con.png) no-repeat;
    width: 50px;
    height: auto;
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    background-size: cover;
    color: #ffffff;
    text-align: center;
    padding: 12px 0 0px;
}

#side_col .rank_list ul li:nth-child(3) a .image_area .title::after {
    content: '3';
    background: url(/common/img/parts/no3_con.png) no-repeat;
    width: 50px;
    height: auto;
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    background-size: cover;
    color: #ffffff;
    text-align: center;
    padding: 12px 0 0px;
}

#side_col .rank_list ul li:nth-child(4) a .image_area .title::after {
    content: '4';
    background: url(/common/img/parts/no4-5_con.png) no-repeat;
    width: 50px;
    height: auto;
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    background-size: cover;
    color: #ffffff;
    text-align: center;
    padding: 12px 0 0px;
}

#side_col .rank_list ul li:nth-child(5) a .image_area .title::after {
    content: '5';
    background: url(/common/img/parts/no4-5_con.png) no-repeat;
    width: 50px;
    height: auto;
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    background-size: cover;
    color: #ffffff;
    text-align: center;
    padding: 12px 0 0px;
}

#side_col .rank_list ul li.vol_01 .image_area {
    background: #fff6a9;
}

#side_col .rank_list ul li.vol_01 a .image_area .title {
    color: #b5a305;
}

#side_col .rank_list ul li.vol_01 .bottom .price {
    color: #ff9800;
}

#side_col .rank_list ul li.vol_02 .image_area {
    background: #fff6a9;
}

#side_col .rank_list ul li.vol_02 a .image_area .title {
    color: #b5a305;
}

#side_col .rank_list ul li.vol_02 a {
    z-index: 10;
    position: relative;
}

#side_col .rank_list ul li.vol_02 .bottom .price {
    color: #ff9800;
}

#side_col .rank_list ul li.vol_02:after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background-image: -webkit-repeating-linear-gradient(-45deg, #ffe7a0, #fff8e2 1px, transparent 2px, transparent 5px);
    background-image: repeating-linear-gradient(-45deg, #ffe7a0, #fff8e2 1px, transparent 2px, transparent 5px);
    background-size: 7px 7px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
}

#side_col .rank_list ul li.vol_03 .image_area {
    position    :relative;
    overflow    :hidden;
    background: #fff6a9;
}

#side_col .rank_list ul li.vol_03 a {
    z-index: 10;
    position: relative;
    overflow    :hidden;
}

#side_col .rank_list ul li.vol_03 .bottom .price {
    color: #ff9800;
}

#side_col .rank_list ul li.vol_03 a .image_area .title {
    color: #b5a305;
}

#side_col .rank_list ul li.vol_03:after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background-image: -webkit-repeating-linear-gradient(-45deg, #ffe7a0, #fff8e2 1px, transparent 2px, transparent 5px);
    background-image: repeating-linear-gradient(-45deg, #ffe7a0, #fff8e2 1px, transparent 2px, transparent 5px);
    background-size: 7px 7px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
}

.reflection {
    height      :100%;
    width       :30px;
    position    :absolute;
    top         :-180px;
    left        :0;
    background-color: #fff;
    opacity     :0;
    transform: rotate(45deg);
    animation: reflection 2s ease-in-out infinite;
    -webkit-transform: rotate(45deg);
    -webkit-animation: reflection 2s ease-in-out infinite;
    -moz-transform: rotate(45deg);
    -moz-animation: reflection 2s ease-in-out infinite;
    -ms-transform: rotate(45deg);
    -ms-animation: reflection 2s ease-in-out infinite;
    -o-transform: rotate(45deg);
    -o-animation: reflection 2s ease-in-out infinite;
}

@keyframes reflection {
    0% { transform: scale(0) rotate(45deg); opacity: 0; }
    80% { transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { transform: scale(4) rotate(45deg); opacity: 1; }
    100% { transform: scale(50) rotate(45deg); opacity: 0; }
}
@-webkit-keyframes reflection {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}
@-moz-keyframes reflection {
    0% { -moz-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -moz-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -moz-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -moz-transform: scale(50) rotate(45deg); opacity: 0; }
}
@-ms-keyframes reflection {
    0% { -ms-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -ms-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -ms-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -ms-transform: scale(50) rotate(45deg); opacity: 0; }
}
@-o-keyframes reflection {
    0% { -o-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -o-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -o-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -o-transform: scale(50) rotate(45deg); opacity: 0; }
}

#side_col .rank_list ul li.vol_04 .image_area {
    position    :relative;
    overflow    :hidden;
    background: #fff6a9;
}

#side_col .rank_list ul li.vol_04 a {
    z-index: 10;
    position: relative;
    overflow    :hidden;
}

#side_col .rank_list ul li.vol_04 .bottom .price {
    color: #ff9800;
}

#side_col .rank_list ul li.vol_04 a .image_area .title {
    color: #b5a305;
}

#side_col .rank_list ul li.vol_04:after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background-image: -webkit-repeating-linear-gradient(-45deg, #ffe7a0, #fff8e2 1px, transparent 2px, transparent 5px);
    background-image: repeating-linear-gradient(-45deg, #ffe7a0, #fff8e2 1px, transparent 2px, transparent 5px);
    background-size: 7px 7px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
}

#side_col .rank_list ul li.vol_05 {
    background: linear-gradient(45deg, #6cb8ff, #fff66c, #ffa36c);
    background-size: 600% 600%;
    animation: AnimationName 10s ease infinite;
}

#side_col .rank_list ul li.vol_05 .image_area {
    background: none;
}

#side_col .rank_list ul li.vol_05 a {
    z-index: 10;
    position: relative;
    overflow    :hidden;
}

#side_col .rank_list ul li.vol_05 .bottom .price {
    color: #ff9800;
}

#side_col .rank_list ul li.vol_05 a .image_area .title {
    color: #b5a305;
}

@keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}

.reflection-add {
    height      :100%;
    width       :30px;
    position    :absolute;
    top         :-180px;
    left        :0;
    background-color: #fff;
    opacity     :0;
    transform: rotate(45deg);
    animation: reflection 1s ease-in-out infinite;
    -webkit-transform: rotate(45deg);
    -webkit-animation: reflection 1s ease-in-out infinite;
    -moz-transform: rotate(45deg);
    -moz-animation: reflection 1s ease-in-out infinite;
    -ms-transform: rotate(45deg);
    -ms-animation: reflection 1s ease-in-out infinite;
    -o-transform: rotate(45deg);
    -o-animation: reflection 1s ease-in-out infinite;
}

@keyframes reflection-add {
    0% { transform: scale(0) rotate(45deg); opacity: 0; }
    80% { transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { transform: scale(4) rotate(45deg); opacity: 1; }
    100% { transform: scale(50) rotate(45deg); opacity: 0; }
}
@-webkit-keyframes reflection-add {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}
@-moz-keyframes reflection-add {
    0% { -moz-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -moz-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -moz-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -moz-transform: scale(50) rotate(45deg); opacity: 0; }
}
@-ms-keyframes reflection-add {
    0% { -ms-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -ms-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -ms-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -ms-transform: scale(50) rotate(45deg); opacity: 0; }
}
@-o-keyframes reflection-add {
    0% { -o-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -o-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -o-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -o-transform: scale(50) rotate(45deg); opacity: 0; }
}


#side_col .mypage_box {
    border: 5px solid #e5e5e5;
    border-radius: 4px;
    padding: 12px 0 0;
    margin: 0 0 17px;
}

#side_col .mypage_box p {
    text-align: center;
    margin: 0 0 12px;
    font-weight: bold;
}

#side_col .mypage_box table {
    width: 100%;
    text-align: center;
}

#side_col .mypage_box th {
    display: block;
    width: 100%;
    background: #eaecd1;
    color: #5d5532;
    font-size: 0.8em;
    padding: 2px 0;
}

#side_col .mypage_box td {
    display: block;
    width: 100%;
    padding: 2px 0;
    font-size: 0.8em;
    background: #fffdea;
    color: #58480e;
}

#side_col .mypage_box .my_link {
    margin: 0 8px;
    position: relative;
}

#side_col .mypage_box .my_link a {
    color: #fff;
    background: #32b16c;
    padding: 8px 10px;
    display: block;
    text-align: left;
    border-radius: 4px;
    margin: 0 0 10px;
    font-weight: bold;
}

#side_col .mypage_box .my_link a:hover {
    background: #117740;
}

#side_col .mypage_box .my_link a::after {
    content: '';
    background: url('/common/img/parts/white-arrow.png') no-repeat;
    width: 17px;
    height: 17px;
    position: absolute;
    right: 6px;
    top: 10px;
}

#side_col .mypage_box .logout_link {
    margin: 0 8px;
    position: relative;
}

#side_col .mypage_box .logout_link a {
    color: #fff;
    background: #434343;
    padding: 8px 10px;
    display: block;
    text-align: left;
    border-radius: 4px;
    margin: 0 0 10px;
    font-weight: bold;
}

#side_col .mypage_box .logout_link a:hover {
    background: #000000;
}

#side_col .mypage_box .logout_link a::after {
    content: '';
    background: url('/common/img/parts/white-arrow.png') no-repeat;
    width: 17px;
    height: 17px;
    position: absolute;
    right: 6px;
    top: 10px;
}

#side_col .mypage_menu {
    margin: 0 0 30px;
    background: #F6F6F8;
}

#side_col .mypage_menu dt.head {
    font-weight: bold;
    background: #535353;
    color: #fff;
    font-size: .9em;
    padding: 6px 10px;
}

#side_col .mypage_menu dt a {
    position: relative;
    background: #32b16c;
    display: block;
    color: #fff;
    padding: 6px 10px;
    font-weight: bold;
    border-bottom: 1px solid #fff;
}

#side_col .mypage_menu dt a:hover {
    background: #009688;
}

#side_col .mypage_menu dt a::after {
    content: '';
    background: url('/common/img/parts/arrow-white-big-con.png') no-repeat;
    background-size: 11px auto;
    width: 11px;
    height: 11px;
    position: absolute;
    right: 6px;
    top: 11px;
}

#side_col .mypage_menu dd  {
    border-bottom: 1px dotted #A8A8A8;
}

#side_col .mypage_menu dd:last-child {
    border: none;
}

#side_col .mypage_menu dd a {
    position: relative;
    font-size: .9em;
    color: #3b3e40;
    display: block;
    padding: 8px 10px;
}

#side_col .mypage_menu dd a:hover {
    color: #247fae;
}

#side_col .mypage_menu dd a::after {
    content: '';
    background: url('/common/img/parts/right-arrow.png') no-repeat;
    width: 13px;
    height: 13px;
    position: absolute;
    right: 6px;
    top: 11px;
}

#side_col .rank_follow_list {
    margin: 0 0 17px;
}

#side_col .rank_follow_list .head {
    position: relative;
    background: -webkit-linear-gradient(180deg, #00BCD4 0%, #278dbb 49%, #3785c3 100%);
    background: linear-gradient(180deg, #00BCD4 0%, #278dbb 49%, #3785c3 100%);
    font-weight: bold;
    color: #fff;
    padding: 7px 10px 7px 37px;
    margin: 0 0 5px;
}

#side_col .rank_follow_list.rookie .head {
    background: -webkit-linear-gradient(180deg, #84dc87 0%, #3fb36d 49%, #1a9828 100%);
    background: linear-gradient(180deg, #84dc87 0%, #3fb36d 49%, #1a9828 100%);
}

#side_col .rank_follow_list .head::before {
    content: '';
    background: url('/common/img/parts/follow-con.png') no-repeat;
    background-size: 100% auto;
    width: 19px;
    height: 19px;
    position: absolute;
    left: 12px;
    top: 8px;
}

#side_col .rank_follow_list.rookie .head::before {
    content: '';
    background: url(/common/img/parts/rookie_icon.svg) no-repeat;
    background-size: 100% auto;
    width: 22px;
    height: 24px;
    position: absolute;
    left: 12px;
    top: 6px;
}

#side_col .rank_follow_list li {
    padding: 8px;
    border-bottom: solid 1px #efefef;
}

#side_col .rank_follow_list li a {
    -webkit-transition: opacity .3s ease-out;
    -moz-transition: opacity .3s ease-out;
    -ms-transition: opacity .3s ease-out;
    transition: opacity .3s ease-out;
}

#side_col .rank_follow_list li a:hover {
    opacity: 0.7;
}

#side_col .rank_follow_list  li .left {
    width: 56px;
    height: 55px;
    position: relative;
    border-radius: 50%;
    display: block;
    overflow: hidden;
    background: #eee;
    float: left;
    margin: 0 10px 0 0;
}

#side_col .rank_follow_list  li .left img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
}

#side_col .rank_follow_list  li:nth-child(1) .left::after {
    content: 'No.1';
    background: rgb(255 255 255 / 0.7);
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 0;
    color: #585858;
    font-weight: bold;
    text-align: center;
    padding: 0 0 0px;
    font-size: .7em;
}

#side_col .rank_follow_list  li:nth-child(2) .left::after {
    content: 'No.2';
    background: rgb(255 255 255 / 0.7);
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 0;
    color: #585858;
    font-weight: bold;
    text-align: center;
    padding: 0 0 0px;
    font-size: .7em;
}

#side_col .rank_follow_list  li:nth-child(3) .left::after {
    content: 'No.3';
    background: rgb(255 255 255 / 0.7);
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 0;
    color: #585858;
    font-weight: bold;
    text-align: center;
    padding: 0 0 0px;
    font-size: .7em;
}

#side_col .rank_follow_list  li:nth-child(4) .left::after {
    content: 'No.4';
    background: rgb(255 255 255 / 0.7);
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 0;
    color: #585858;
    font-weight: bold;
    text-align: center;
    padding: 0 0 0px;
    font-size: .7em;
}

#side_col .rank_follow_list  li:nth-child(5) .left::after {
    content: 'No.5';
    background: rgb(255 255 255 / 0.7);
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 0;
    color: #585858;
    font-weight: bold;
    text-align: center;
    padding: 0 0 0px;
    font-size: .7em;
}

#side_col .rank_follow_list  li:nth-child(6) .left::after {
    content: 'No.6';
    background: rgb(255 255 255 / 0.7);
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 0;
    color: #585858;
    font-weight: bold;
    text-align: center;
    padding: 0 0 0px;
    font-size: .7em;
}

#side_col .rank_follow_list  li:nth-child(7) .left::after {
    content: 'No.7';
    background: rgb(255 255 255 / 0.7);
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 0;
    color: #585858;
    font-weight: bold;
    text-align: center;
    padding: 0 0 0px;
    font-size: .7em;
}

#side_col .rank_follow_list  li:nth-child(8) .left::after {
    content: 'No.8';
    background: rgb(255 255 255 / 0.7);
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 0;
    color: #585858;
    font-weight: bold;
    text-align: center;
    padding: 0 0 0px;
    font-size: .7em;
}

#side_col .rank_follow_list  li:nth-child(9) .left::after {
    content: 'No.9';
    background: rgb(255 255 255 / 0.7);
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 0;
    color: #585858;
    font-weight: bold;
    text-align: center;
    padding: 0 0 0px;
    font-size: .7em;
}

#side_col .rank_follow_list  li:nth-child(10) .left::after {
    content: 'No.10';
    background: rgb(255 255 255 / 0.7);
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 0;
    color: #585858;
    font-weight: bold;
    text-align: center;
    padding: 0 0 0px;
    font-size: .7em;
}

#side_col .rank_follow_list li .right {
    float: left;
    width: calc(100% - 66px);
    color: #287fac;
    padding: 0 0 0;
    box-sizing: border-box;
}

#side_col .rank_follow_list.rookie li .right {
    color: #239e39;
}

#side_col .rank_follow_list  li .right p {
    font-size: .8em;
    color: #333;
}

#side_col .rank_follow_list  li .follow_rank {
    width: 100%;
    margin: 8px 0 0 0;
    border: 1px solid #eaeaea;
    border-radius: 4px;
}

#side_col .rank_follow_list  li .follow_rank .box_left {
    width: 120px;
    float: left;
    font-size: .8em;
    font-weight: bold;
    text-align: center;
    padding: 3px 0;
    background: #0ab0cd;
    color: #fff;
}

#side_col .rank_follow_list.rookie li .follow_rank .box_left {
    background: #0f8e82;
}

#side_col .rank_follow_list  li .follow_rank .box_right {
    float: left;
    width: calc(100% - 120px);
    font-size: 1.1em;
    font-weight: bold;
    text-align: center;
    color: #909090;
}

#side_col .add_ranking_link {
    text-align: right;
    margin: 0 0 2rem;
}

#side_col .add_ranking_link a {
    display: block;
    color: #333;
    font-weight: bold;
}

#side_col .add_ranking_link a:hover {
    opacity: .7;
}

#side_col .add_ranking_link a i {
    background: #2a2a2a;
    color: #ffffff;
    font-size: .8rem;
    padding: .2rem;
    border-radius: 50%;
    margin: 0 0 0 .4rem;
    width: 11px;
    height: 11px;
    line-height: 11px;
    text-align: center;
}

#side_col .add_ranking_bt {
    margin: 1.5rem 0;
}

#side_col .btn-copy {
    font-size: 1rem;
    font-weight: bold;
    position: relative;
    margin-bottom: .4em;
    text-align: center;
    color: #475267;
}

#side_col .btn-copy:before {
    margin-right: 1rem;
    content: '＼';
}

#side_col .btn-copy:after {
    margin-left: 1rem;
    content: '／';
}

#side_col .btn,
#side_col a.btn,
#side_col button.btn {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.5;
    position: relative;
    display: inline-block;
    padding: 1rem 4rem;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: 0.1em;
    color: #212529;
    border-radius: 0.5rem;
}

#side_col a.btn-c {
    width: 100%;
    font-size: 1rem;
    position: relative;
    padding: 1rem 0 1rem 0;
    text-align: center;
    color: #fff;
    border-radius: 0;
    background-image: -webkit-linear-gradient(to right, #d9afd9 0%, #97d9e1 100%);
    background-image: linear-gradient(to right, #d9afd9 0%, #97d9e1 100%);
    -webkit-box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
    box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
    box-sizing: border-box;
    border-radius: 4px;
}

#side_col a.btn-c span {
    position: relative;
}

#side_col a.btn-c:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

#side_col a.btn-c:after {
    font-family: "Font Awesome 5 Free";
    font-size: 1rem;
    line-height: 1;
    position: absolute;
    top: calc(50% - 0.5rem);
    right: 1rem;
    margin: 0;
    padding: 0;
    content: "\f30b";
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

#side_col a.btn-c:hover {
    color: #fff;
    box-shadow: none;
}

#side_col a.btn-c:hover:before {
    opacity: 0;
}

#side_col a.btn-c:hover:after {
    right: 0.5rem;
}

/*----------------------------------------------------
 full menu col
----------------------------------------------------*/

#full_menu_col {
    margin: 0 0 25px;
}

#full_menu_col .mypage_box {
    border: 5px solid #e5e5e5;
    border-radius: 4px;
    padding: 12px 0 0;
    margin: 0 0 17px;
}

#full_menu_col .mypage_box p {
    text-align: center;
    margin: 0 0 12px;
    font-weight: bold;
}

#full_menu_col .mypage_box table {
    width: 100%;
    text-align: center;
}

#full_menu_col .mypage_box th {
    display: block;
    width: 100%;
    background: #eaecd1;
    color: #5d5532;
    font-size: 0.8em;
    padding: 2px 0;
}

#full_menu_col .mypage_box td {
    display: block;
    width: 100%;
    padding: 2px 0;
    font-size: 0.8em;
    background: #fffdea;
    color: #58480e;
}

#full_menu_col .mypage_box .my_link {
    margin: 0 8px;
    position: relative;
}

#full_menu_col .mypage_box .my_link a {
    color: #fff;
    background: #32b16c;
    padding: 8px 10px;
    display: block;
    text-align: left;
    border-radius: 4px;
    margin: 0 0 10px;
    font-weight: bold;
}

#full_menu_col .mypage_box .my_link a:hover {
    background: #117740;
}

#full_menu_col .mypage_box .my_link a::after {
    content: '';
    background: url('/common/img/parts/white-arrow.png') no-repeat;
    width: 17px;
    height: 17px;
    position: absolute;
    right: 6px;
    top: 10px;
}

#full_menu_col .mypage_box .logout_link {
    margin: 0 8px;
    position: relative;
}

#full_menu_col .mypage_box .logout_link a {
    color: #fff;
    background: #434343;
    padding: 8px 10px;
    display: block;
    text-align: left;
    border-radius: 4px;
    margin: 0 0 10px;
    font-weight: bold;
}

#full_menu_col .mypage_box .logout_link a:hover {
    background: #000000;
}

#full_menu_col .mypage_box .logout_link a::after {
    content: '';
    background: url('/common/img/parts/white-arrow.png') no-repeat;
    width: 17px;
    height: 17px;
    position: absolute;
    right: 6px;
    top: 10px;
}

#full_menu_col .mypage_menu {
    margin: 0 0 30px;
    background: #F6F6F8;
    width: 100%;
}

#full_menu_col .mypage_menu dt.head {
    font-weight: bold;
    background: #535353;
    color: #fff;
    font-size: .9em;
    padding: 6px 10px;
}

#full_menu_col .mypage_menu dt a {
    position: relative;
    background: #32b16c;
    display: block;
    color: #fff;
    padding: 6px 10px;
    font-weight: bold;
    border-bottom: 1px solid #fff;
}

#full_menu_col .mypage_menu dt a:hover {
    background: #009688;
}

#full_menu_col .mypage_menu dt a::after {
    content: '';
    background: url('/common/img/parts/arrow-white-big-con.png') no-repeat;
    background-size: 11px auto;
    width: 11px;
    height: 11px;
    position: absolute;
    right: 6px;
    top: 11px;
}

#full_menu_col .mypage_menu dd  {
    border-bottom: 1px dotted #A8A8A8;
}

#full_menu_col .mypage_menu dd:last-child {
    border: none;
}

#full_menu_col .mypage_menu dd a {
    position: relative;
    font-size: .9em;
    color: #3b3e40;
    display: block;
    padding: 8px 10px;
}

#full_menu_col .mypage_menu dd a:hover {
    color: #247fae;
}

#full_menu_col .mypage_menu dd a::after {
    content: '';
    background: url('/common/img/parts/right-arrow.png') no-repeat;
    width: 13px;
    height: 13px;
    position: absolute;
    right: 6px;
    top: 11px;
}

#full_menu_col .mypage_menu dl:nth-child(1),#full_menu_col .mypage_menu dl:nth-child(8) {
    display: flex;
}

#full_menu_col .mypage_menu dl:nth-child(1) dt,#full_menu_col .mypage_menu dl:nth-child(8) dt {
    width: calc(100vw / 2);
}

#full_menu_col .mypage_menu dl:nth-child(1) dt:first-child,#full_menu_col .mypage_menu dl:nth-child(8) dt:first-child {
    border-right: 1px solid #fff;
}

#full_menu_col .mypage_menu dl:nth-child(2) dd {
    float: left;
    width: calc(100% / 2);
}

#full_menu_col .mypage_menu dl:nth-child(2) dd {
    border-bottom: none;
}

#full_menu_col .mypage_menu dl:nth-child(2) dd a {
    border-right: 1px dotted #a8a8a8;
    border-bottom: none;
}

#full_menu_col .mypage_menu dl:nth-child(2) dd:last-child a {
    border: none;
}

#full_menu_col .mypage_menu dl:nth-child(3) dd {
    float: left;
    width: calc(100% / 4);
    border-bottom: none;
}

#full_menu_col .mypage_menu dl:nth-child(3) dd a {
    border-right: 1px dotted #a8a8a8;
    border-bottom: none;
}

#full_menu_col .mypage_menu dl:nth-child(3) dd:last-child a {
    border: none;
}

#full_menu_col .mypage_menu dl:nth-child(4) dd {
    float: left;
}

#full_menu_col .mypage_menu dl:nth-child(4) dd:nth-child(2), #full_menu_col .mypage_menu dl:nth-child(4) dd:nth-child(3) {
    width: calc(100% / 2);
}

#full_menu_col .mypage_menu dl:nth-child(4) dd:nth-child(4),#full_menu_col .mypage_menu dl:nth-child(4) dd:nth-child(5),#full_menu_col .mypage_menu dl:nth-child(4) dd:nth-child(6){
    width: calc(100% / 3);
}

#full_menu_col .mypage_menu dl:nth-child(4) dd a {
    border-right: 1px dotted #a8a8a8;
    border-bottom: none;
}

#full_menu_col .mypage_menu dl:nth-child(4) dd:nth-child(3) a {
    border-right: none;
}

#full_menu_col .mypage_menu dl:nth-child(4) dd:nth-child(4) , #full_menu_col .mypage_menu dl:nth-child(4) dd:nth-child(5) , #full_menu_col .mypage_menu dl:nth-child(4) dd:nth-child(6)  {
    border-bottom: none;
}

#full_menu_col .mypage_menu dl:nth-child(4) dd:last-child a {
    border: none;
}

#full_menu_col .mypage_menu dl:nth-child(5) dd,#full_menu_col .mypage_menu dl:nth-child(6) dd {
    float: left;
    width: calc(100% / 3);
    border: none;
}

#full_menu_col .mypage_menu dl:nth-child(5) dd a,#full_menu_col .mypage_menu dl:nth-child(6) dd a {
    border-right: 1px dotted #a8a8a8;
    border-bottom: none;
}

#full_menu_col .mypage_menu dl:nth-child(5) dd:last-child a,#full_menu_col .mypage_menu dl:nth-child(6) dd:last-child a {
    border: none;
}

#full_menu_col .mypage_menu dl:nth-child(7) dd {
    float: left;
    width: calc(100% / 4);
    border-bottom: none;
}

#full_menu_col .mypage_menu dl:nth-child(7) dd a {
    border-right: 1px dotted #a8a8a8;
    border-bottom: none;
}

#full_menu_col .mypage_menu dl:nth-child(7) dd:last-child a {
    border: none;
}

#full_menu_col #full_menu {
    display: none;
}

#panel-position {
    position: absolute;
    right: 0;
    top: -20px;
}

#panel-btn{
    display: inline-block;
    position: relative;
    width: 45px;
    height: 45px;
    margin: 20px 0 10px;
    background: #000;
}

#panel-btn:hover{
    background: #000;
    cursor: pointer;
}

#panel-btn-icon{
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 2px;
    margin: -1px 0 0 -7px;
    background: #fff;
    transition: .2s;
}

#panel-btn-icon:before, #panel-btn-icon:after{
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 14px;
    height: 2px;
    background: #fff;
    transition: .3s;
}

#panel-btn-icon:before{
    margin-top: -6px;
}

#panel-btn-icon:after{
    margin-top: 4px;
}

#panel-btn .close{
    background: transparent;
}

#panel-btn .close:before, #panel-btn .close:after{
    margin-top: 0;
}

#panel-btn .close:before{
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

#panel-btn .close:after{
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}

/*----------------------------------------------------
 footer
----------------------------------------------------*/

#footer {
    border-top: 1px solid #ddd;
    padding: 27px 0 30px;
}

#footer .logo {
    float: left;
}

#footer .nav {
    float: right;
    margin: 10px 0 0 0;
}

#footer .nav li {
    font-weight: bold;
    padding: 0 18px;
    display: inline-block;
    border-right: 1px solid #d2d2d2;
}

#footer .nav li:last-child {
    border: none;
}

#footer .nav li a {
    color: #535353;
}

#footer .nav li a:hover {
    color: #247fae;
}

#copy {
    background: #1b1b1b;
    color: #fff;
    font-size: .8em;
    font-weight: bold;
    text-align: center;
    padding: 24px 0;
}

/*----------------------------------------------------
 top
----------------------------------------------------*/

#top-page .info_area {
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    margin: 0 0 37px;
}

#top-page .info_area .head {
    position: relative;
    background: url('/common/img/top/info-con.png') #fff45c no-repeat;
    background-position: 16px 5px;
    font-size: 1.1em;
    font-weight: bold;
    color: #343434;
    padding: 10px 10px 10px 53px;
    border-radius: 4px 4px 0 0;
}

#top-page .info_area .head span {
    position: absolute;
    right: 13px;
    top: 12px;
    color: #e4b71e;
    font-size: .8em;
}

#top-page .info_area .news_area {
    overflow: auto;
    max-height: 145px;
    margin: 10px 10px 10px 20px;
}

#top-page .info_area .news_area ul li {
    width: 100%;
    border-bottom: 1px solid #e5e5e5;
    padding: 10px 0;
}

#top-page .info_area .news_area ul li span {
    display: block;
    color: #eac665;
    font-size: .9em;
    font-weight: bold;
    line-height: 22px;
}

#top-page .products_area h2 {
    background: linear-gradient(180deg, #f86b71 0%, #e4475a 49%, #d12845 100%);
    margin: 0 0 13px;
    padding: 8px 10px 8px 14px;
    position: relative;
}

#top-page .products_area h2 img {
    max-width: 50%;
}

#top-page .products_area h2 span {
    position: absolute;
    right: 13px;
    top: 15px;
    color: #fff;
    font-size: .8em;
}

#top-page .free_products_area h2 {
    background-image: -webkit-linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    background-image: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    margin: 0 0 13px;
    padding: 8px 10px 8px 14px;
    position: relative;
}

#top-page .free_products_area h2 span {
    position: absolute;
    right: 13px;
    top: 15px;
    color: #fff;
    font-size: .8em;
}

#top-page .products_area .arrow_link,
#top-page .ranking_area .arrow_link,
#top-page .cat_ranking_area .arrow_link,
#page .mypage .favorites .arrow_link,
#page .mypage .watchlist .arrow_link {
    background: url('/common/img/top/red-arrow.png') right no-repeat;
    text-align: right;
    font-weight: bold;
    margin: 20px 0 40px;
}

#page .mypage .favorites .arrow_link,
#page .mypage .watchlist .arrow_link {
    margin: 0px;
}

#top-page .products_area .arrow_link a,
#top-page .ranking_area .arrow_link a,
#top-page .cat_ranking_area .arrow_link a,
#page .mypage .favorites .arrow_link a,
#page .mypage .watchlist .arrow_link a {
    color: #535353;
    padding: 0 29px 0 0;
}

#top-page .products_area .arrow_link a:hover,
#top-page .ranking_area .arrow_link a:hover,
#top-page .cat_ranking_area .arrow_link a:hover,
#page .mypage .favorites .arrow_link a:hover,
#page .mypage .watchlist .arrow_link a:hover {
    color: #e4475a;
}

#top-page .pickup_area h2 {
    background: linear-gradient(180deg, #e3c01e 0%, #ddb714 49%, #d6ac08 100%);
    margin: 0 0 13px;
    padding: 8px 10px 8px 10px;
    position: relative;
}

#top-page .pickup_area h2 span {
    position: absolute;
    right: 13px;
    top: 15px;
    color: #fff;
    font-size: .8em;
}

#top-page .pickup_area .arrow_link {
    background: url('/common/img/top/yellow-arrow.png') right no-repeat;
    text-align: right;
    font-weight: bold;
    margin: 20px 0 40px;
}

#top-page .pickup_area .arrow_link a {
    color: #535353;
    padding: 0 29px 0 0;
}

#top-page .pickup_area .arrow_link a:hover {
    color: #ddb714;
}

#top-page .ranking_area h2 {
    background: linear-gradient(180deg, #0eb649 0%, #0cab34 49%, #0b9c19 100%);
    margin: 0 0 13px;
    padding: 8px 10px 8px 10px;
    position: relative;
}

#top-page .ranking_area h2 span {
    position: absolute;
    right: 13px;
    top: 15px;
    color: #fff;
    font-size: .8em;
}

#top-page .ranking_area h3.green {
    font-weight: bold;
    font-size: 1.2em;
    margin: 0 0 13px;
    padding: 8px 13px 8px 13px;
    background: #f3feee;
    border-left: 5px solid #009a44;
}

#top-page .ranking_area h3.blue {
    font-weight: bold;
    font-size: 1.2em;
    margin: 30px 0 13px;
    padding: 8px 13px 8px 13px;
    background: #eff8ff;
    border-left: 5px solid #0069b7;
}

#top-page .ranking_area h3.orange {
    font-weight: bold;
    font-size: 1.2em;
    margin: 30px 0 13px;
    padding: 8px 13px 8px 13px;
    background: #fff6a9;
    border-left: 5px solid #ff9800;
}

#top-page .ranking_area h3.yellow {
    font-weight: bold;
    font-size: 1.2em;
    margin: 30px 0 13px;
    padding: 8px 13px 8px 13px;
    background: #fefef4;
    border-left: 5px solid #fff45c;
}

#top-page .cat_ranking_area h2 {
    background: linear-gradient(180deg, #1b29d0 0%, #1629b6 49%, #0c2792 100%);
    margin: 0 0 13px;
    padding: 8px 10px 8px 10px;
    position: relative;
}

#top-page .cat_ranking_area h2 span {
    position: absolute;
    right: 13px;
    top: 15px;
    color: #fff;
    font-size: .8em;
}

#top-page .cat_ranking_area h3 {
    font-weight: bold;
    font-size: 1.2em;
    margin: 0 0 13px;
    padding: 8px 13px 8px 13px;
    background: #eeeeee;
    border-left: 5px solid #001c58;
}

#top-page .cat_ranking_area ul {
    margin: 0 0 30px;
}

/* 商品リスト */

#top-page .swiper-button-prev {
    top: 40%;
    height: 57px;
    left: 0px;
    right: auto;
    background-size: 8px auto;
    background-color: rgb(255 255 255 / 0.9);
    border: 1px solid #ddd;
    border-radius: 0 4px 4px 0;
    border-left: none;
}

#top-page .swiper-button-next {
    top: 40%;
    height: 57px;
    left: auto;
    right: -1px;
    background-size: 8px auto;
    background-color: rgb(255 255 255 / 0.9);
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    border-right: none;
}

#top-page .item_list ul {
    letter-spacing: -1em;
    white-space: nowrap;
    display: flex;
    flex-wrap: wrap;
}

#top-page .item_list ul.swiper-wrapper {
    flex-wrap: initial;
}

#top-page .item_list ul li {
    letter-spacing: normal;
    white-space: normal;
    width: 23.83333%;
    margin: 0 1.5% 20px 0;
    position: relative;
}

#top-page .item_list ul li.vol_01 .image_area {
    background: #fff6a9;
}

#top-page .item_list ul li.vol_01 .title {
    color: #b5a305;
}

#top-page .item_list ul li.vol_01 .bottom .price {
    color: #ff9800;
}

#top-page .item_list ul li.vol_02 .image_area {
    background: #fff6a9;
}

#top-page .item_list ul li.vol_02 .title {
    color: #b5a305;
}

#top-page .item_list ul li.vol_02 a {
    z-index: 10;
    position: relative;
}

#top-page .item_list ul li.vol_02 .bottom .price {
    color: #ff9800;
}

#top-page .item_list ul li.vol_02:after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background-image: -webkit-repeating-linear-gradient(-45deg, #ffe7a0, #fff8e2 1px, transparent 2px, transparent 5px);
    background-image: repeating-linear-gradient(-45deg, #ffe7a0, #fff8e2 1px, transparent 2px, transparent 5px);
    background-size: 7px 7px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
}

#top-page .item_list ul li.vol_03 .image_area {
    position    :relative;
    overflow    :hidden;
    background: #fff6a9;
}

#top-page .item_list ul li.vol_03 a {
    z-index: 10;
    position: relative;
    overflow    :hidden;
}

#top-page .item_list ul li.vol_03 .bottom .price {
    color: #ff9800;
}

#top-page .item_list ul li.vol_03 .title {
    color: #b5a305;
}

#top-page .item_list ul li.vol_03:after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background-image: -webkit-repeating-linear-gradient(-45deg, #ffe7a0, #fff8e2 1px, transparent 2px, transparent 5px);
    background-image: repeating-linear-gradient(-45deg, #ffe7a0, #fff8e2 1px, transparent 2px, transparent 5px);
    background-size: 7px 7px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
}

.reflection {
    height      :100%;
    width       :30px;
    position    :absolute;
    top         :-180px;
    left        :0;
    background-color: #fff;
    opacity     :0;
    transform: rotate(45deg);
    animation: reflection 2s ease-in-out infinite;
    -webkit-transform: rotate(45deg);
    -webkit-animation: reflection 2s ease-in-out infinite;
    -moz-transform: rotate(45deg);
    -moz-animation: reflection 2s ease-in-out infinite;
    -ms-transform: rotate(45deg);
    -ms-animation: reflection 2s ease-in-out infinite;
    -o-transform: rotate(45deg);
    -o-animation: reflection 2s ease-in-out infinite;
}

@keyframes reflection {
    0% { transform: scale(0) rotate(45deg); opacity: 0; }
    80% { transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { transform: scale(4) rotate(45deg); opacity: 1; }
    100% { transform: scale(50) rotate(45deg); opacity: 0; }
}
@-webkit-keyframes reflection {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}
@-moz-keyframes reflection {
    0% { -moz-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -moz-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -moz-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -moz-transform: scale(50) rotate(45deg); opacity: 0; }
}
@-ms-keyframes reflection {
    0% { -ms-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -ms-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -ms-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -ms-transform: scale(50) rotate(45deg); opacity: 0; }
}
@-o-keyframes reflection {
    0% { -o-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -o-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -o-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -o-transform: scale(50) rotate(45deg); opacity: 0; }
}

#top-page .item_list ul li.vol_04 .image_area {
    position    :relative;
    overflow    :hidden;
    background: #fff6a9;
}

#top-page .item_list ul li.vol_04 a {
    z-index: 10;
    position: relative;
    overflow    :hidden;
}

#top-page .item_list ul li.vol_04 .bottom .price {
    color: #ff9800;
}

#top-page .item_list ul li.vol_04 .title {
    color: #b5a305;
}

#top-page .item_list ul li.vol_04:after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background-image: -webkit-repeating-linear-gradient(-45deg, #ffe7a0, #fff8e2 1px, transparent 2px, transparent 5px);
    background-image: repeating-linear-gradient(-45deg, #ffe7a0, #fff8e2 1px, transparent 2px, transparent 5px);
    background-size: 7px 7px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
}

#top-page .item_list ul li.vol_05 {
    background: linear-gradient(45deg, #6cb8ff, #fff66c, #ffa36c);
    background-size: 600% 600%;
    animation: AnimationName 10s ease infinite;
}

#top-page .item_list ul li.vol_05 .image_area {
    background: none;
}

#top-page .item_list ul li.vol_05 a {
    z-index: 10;
    position: relative;
    overflow    :hidden;
}

#top-page .item_list ul li.vol_05 .bottom .price {
    color: #ff9800;
}

#top-page .item_list ul li.vol_05 .title {
    color: #b5a305;
}

@keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}

.reflection-add {
    height      :100%;
    width       :30px;
    position    :absolute;
    top         :-180px;
    left        :0;
    background-color: #fff;
    opacity     :0;
    transform: rotate(45deg);
    animation: reflection 1s ease-in-out infinite;
    -webkit-transform: rotate(45deg);
    -webkit-animation: reflection 1s ease-in-out infinite;
    -moz-transform: rotate(45deg);
    -moz-animation: reflection 1s ease-in-out infinite;
    -ms-transform: rotate(45deg);
    -ms-animation: reflection 1s ease-in-out infinite;
    -o-transform: rotate(45deg);
    -o-animation: reflection 1s ease-in-out infinite;
}

@keyframes reflection-add {
    0% { transform: scale(0) rotate(45deg); opacity: 0; }
    80% { transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { transform: scale(4) rotate(45deg); opacity: 1; }
    100% { transform: scale(50) rotate(45deg); opacity: 0; }
}
@-webkit-keyframes reflection-add {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}
@-moz-keyframes reflection-add {
    0% { -moz-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -moz-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -moz-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -moz-transform: scale(50) rotate(45deg); opacity: 0; }
}
@-ms-keyframes reflection-add {
    0% { -ms-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -ms-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -ms-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -ms-transform: scale(50) rotate(45deg); opacity: 0; }
}
@-o-keyframes reflection-add {
    0% { -o-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -o-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -o-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -o-transform: scale(50) rotate(45deg); opacity: 0; }
}

#top-page .item_list ul li .pointback {
    font-size: 11px;
    color: #fff;
    padding: 0px 4px 1px 30px;
    position: absolute;
    white-space: nowrap;
    left: 0;
    top: 0;
}

#top-page .item_list ul li .pointback.back-05 {
    background: rgb(33 150 243 / .7);
}

#top-page .item_list ul li .pointback.back-10 {
    background: rgb(0 150 136 / .7);
}

#top-page .item_list ul li .pointback.back-15 {
    background: rgb(103 58 183 / .7);
}

#top-page .item_list ul li .pointback.back-20 {
    background: rgb(255 87 34 / .7);
}

#top-page .item_list ul li .pointback.back-50 {
    background: rgb(233 30 99 / .7);
}

#top-page .item_list ul li .pointback span {
    font-size: 13px;
    font-weight: bold;
}

#top-page .item_list ul li .pointback:before {
    content: '';
    width: 25px;
    height: 25px;
    background: url('../img/parts/point-mark.png') no-repeat;
    background-size: 100% auto;
    position: absolute;
    left: 1px;
    top: -3px;
}

#top-page .item_list ul li a {
    display: block;
    -webkit-transition: opacity .3s ease-out;
    -moz-transition: opacity .3s ease-out;
    -ms-transition: opacity .3s ease-out;
    transition: opacity .3s ease-out;
}

#top-page .item_list ul li a:hover {
    opacity: .7;
    -webkit-opacity: .7;
    -moz-opacity: .7;
}

#top-page .item_list ul li:nth-child(4n) {
    margin: 0 0 20px 0;
}

#top-page .item_list ul li .image_area {
    position: relative;
    background: #eee;
    height: 120px;
    width: 100%;
    margin: 0 0 7px;
}

#top-page .item_list ul li .image_area img {
    position: absolute;
    display: inline-block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

#top-page .item_list ul li .title {
    color: #287fac;
    font-weight: bold;
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

#top-page .item_list ul li ol {
    display: flex;
    margin: 0 0 3px 3px;
}

#top-page .item_list ul li ol li {
    float: none;
    width: auto;
    margin: 0;
    color: #fff;
    font-size: .8em;
    padding: 0 3px;
    border-radius: 4px;
    margin: 0 4px 0 0;
}

#top-page .item_list ul li ol li.benefits {
    background-image: linear-gradient(to top, #FF9800 0%, #FFC107 100%);
}

#top-page .item_list ul li ol li.limited {
    background-image: linear-gradient(to top, #ff0844 0%, #fba388 100%);
}

#top-page .item_list ul li ol li.set {
    background-image: linear-gradient(to top, #6f86d6 0%, #48c6ef 100%);
}

#top-page .item_list ul li .bottom .user {
    display: block;
    background: url('/common/img/parts/member-con.png') no-repeat;
    background-size: 14px auto;
    background-position: 3px 5px;
    padding: 2px 0 0 19px;
    margin: 0 0 4px;
    color: #4b4b4b;
    font-weight: bold;
}

#top-page .item_list ul li .bottom .user a {
    color: #4b4b4b;
}

#top-page .item_list ul li .bottom .price {
    width: 100%;
    display: block;
    color: #be0709;
    font-weight: bold;
    text-align: right;
    padding: 2px 0 0 0;
    display: flex;
    justify-content: flex-end;
}

#top-page .item_list ul li .bottom .price span.point-bade {
    display: block;
    margin: -8px 0 0 3px;
}

#top-page .item_list ul li .bottom .price span.point-bade img {
    width: 40px;
}

#top-page .item_list ul.rank_list li:nth-child(1) .image_area::after {
    content: '1';
    font-weight: bold;
    background: rgb(244 197 0 / 90%);
    width: 28px;
    height: 28px;
    line-height: 28px;
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    font-weight: bold;
    text-align: center;
}

#top-page .item_list ul.rank_list li:nth-child(2) .image_area::after {
    content: '2';
    font-weight: bold;
    background: rgb(164 163 157 / 90%);
    width: 28px;
    height: 28px;
    line-height: 28px;
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    font-weight: bold;
    text-align: center;
}

#top-page .item_list ul.rank_list li:nth-child(3) .image_area::after {
    content: '3';
    font-weight: bold;
    background: rgb(183 138 88 / 90%);
    width: 28px;
    height: 28px;
    line-height: 28px;
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    font-weight: bold;
    text-align: center;
}

#top-page .item_list ul.rank_list li:nth-child(4) .image_area::after {
    content: '4';
    font-weight: bold;
    background: rgb(100 188 156 / 80%);
    width: 28px;
    height: 28px;
    line-height: 28px;
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    font-weight: bold;
    text-align: center;
}

#top-page .item_list ul.rank_list li:nth-child(5) .image_area::after {
    content: '5';
    font-weight: bold;
    background: rgb(100 188 156 / 80%);
    width: 28px;
    height: 28px;
    line-height: 28px;
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    font-weight: bold;
    text-align: center;
}

#top-page .item_list ul.rank_list li:nth-child(6) .image_area::after {
    content: '6';
    font-weight: bold;
    background: rgb(100 188 156 / 80%);
    width: 28px;
    height: 28px;
    line-height: 28px;
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    font-weight: bold;
    text-align: center;
}

#top-page .item_list ul.rank_list li:nth-child(7) .image_area::after {
    content: '7';
    font-weight: bold;
    background: rgb(100 188 156 / 80%);
    width: 28px;
    height: 28px;
    line-height: 28px;
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    font-weight: bold;
    text-align: center;
}

#top-page .item_list ul.rank_list li:nth-child(8) .image_area::after {
    content: '8';
    font-weight: bold;
    background: rgb(100 188 156 / 80%);
    width: 28px;
    height: 28px;
    line-height: 28px;
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    font-weight: bold;
    text-align: center;
}

#top-page .item_list ul.rank_list li:nth-child(9) .image_area::after {
    content: '9';
    font-weight: bold;
    background: rgb(100 188 156 / 80%);
    width: 28px;
    height: 28px;
    line-height: 28px;
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    font-weight: bold;
    text-align: center;
}

#top-page .item_list ul.rank_list li:nth-child(10) .image_area::after {
    content: '10';
    font-weight: bold;
    background: rgb(100 188 156 / 80%);
    width: 28px;
    height: 28px;
    line-height: 28px;
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    font-weight: bold;
    text-align: center;
}

#top-page .item_list ul.rank_list li:nth-child(11) .image_area::after {
    content: '11';
    font-weight: bold;
    background: rgb(100 188 156 / 80%);
    width: 28px;
    height: 28px;
    line-height: 28px;
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    font-weight: bold;
    text-align: center;
}

#top-page .item_list ul.rank_list li:nth-child(12) .image_area::after {
    content: '12';
    font-weight: bold;
    background: rgb(100 188 156 / 80%);
    width: 28px;
    height: 28px;
    line-height: 28px;
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    font-weight: bold;
    text-align: center;
}


/*----------------------------------------------------
 PC
----------------------------------------------------*/

@media screen and (min-width: 1000px)  {
    /*　画面サイズ 1000pxから適用　*/

    .sp {
        display: none;
    }

    .sp-tab {
        display: none;
    }

    /*------------------------
        header
    ------------------------*/

    #header .login_select {
        display: none;
    }

    #header #login {
        display: none;
    }

    #header_top .nav_sp {
        display: none;
    }

	#page .cart_area .cart_table td.payment_type label:first-child {
		display: block !important;
	}

}

/*----------------------------------------------------
 TABLET
----------------------------------------------------*/

@media screen and (min-width: 500px) and (max-width: 999px) {
    /*　画面サイズ 500pxから999pxまで適用　*/

    .sp {
        display: none;
    }

    /*------------------------
        header
    ------------------------*/

    #header .login_select {
        display: none;
    }

    #header #login {
        display: none;
    }

    #header_top .nav_sp {
        display: none;
    }

    #header_middle .cat_select {
        padding: 0 18px 0 26px;
        margin: 16px 12px 18px 7px;
    }

    #header_middle .header_search {
        max-width: 210px;
    }

    /*------------------------
        top
    ------------------------*/

    #top-page .item_list ul li {
        width: 32.333%;
        margin: 0 1.5% 20px 0;
    }

    #top-page .item_list ul li:nth-child(4n) {
        margin: 0 1% 20px 0;
    }

    #top-page .item_list ul li:nth-child(3n) {
        margin: 0 0 20px 0;
    }


}


/*----------------------------------------------------
 SP
----------------------------------------------------*/

@media screen and (max-width: 499px) {

    body {
        font-size: 13px;
    }

    .pc {
        display: none;
    }

    /*------------------------
        remodal
    ------------------------*/

    body .remodal {
        padding: 10px 10px 35px;
    }

    body .remodal-close {
        width: 30px;
        height: 30px;
        top: 18px;
        left: auto;
        right: 7px;
        z-index: 1;
    }

    body .remodal-close:before {
        line-height: 30px;
        width: 30px;
        background: #000;
        border-radius: 50%;
        color: #fff;
    }

    .remodal h2 {
        position: relative;
        margin: 0 -20px 1rem;
        padding: 1rem 2rem;
        background: #fff100;
    }

    .remodal h2:before,
    .remodal h2:after {
        position: absolute;
        content: '';
    }

    .remodal h2:before {
        bottom: -10px;
        left: 0;
        width: 0;
        height: 0;
        border-top: 10px solid #ccc100;
        border-left: 10px solid transparent;
    }

    .remodal h2:after {
        right: 0;
        bottom: -10px;
        width: 0;
        height: 0;
        border-top: 10px solid #ccc100;
        border-right: 10px solid transparent;
    }

    .remodal ul li {
        text-align: left;
        margin: 0 4% 20px 0 !important;
    }

    .remodal ul li:nth-child(2n) {
        margin: 0 0 20px !important;
    }

    body .remodal-confirm, body .remodal-cancel {
        min-width: 48%;
    }

    /*------------------------
        header
    ------------------------*/

    #header_top .logo {
        width: 43%;
        margin: 5px 0 0 0;
        padding: 0 0 0 6px;
    }

    #header_top .logo img {
        max-width: 100%;
    }

    #header_top .nav {
        display: none;
    }

    #header_middle .header_search {
        display: none;
    }

    #header_middle .cart_link {
        display: none;
    }

    #header_middle .login_status {
        text-align: right;
        margin: 9px 8px 0 0;
    }

    #header_middle .cat_select {
        display: none;
    }

    #header_middle .login_select {
        position: relative;
        float: left;
        font-weight: bold;
        background: url('/common/img/parts/login-con.png') no-repeat;
        background-size: 19px auto;
        padding: 0 25px 0 26px;
        margin: 16px 30px 18px 12px;
    }

    #header_middle .login_select::after {
        content: '';
        background: url('/common/img/parts/nav-bottom-arrow.png') no-repeat;
        background-size: 100% auto;
        width: 20px;
        height: 20px;
        position: absolute;
        right: 0;
        top: 0;
    }

    #header #login {
        display: none;
    }

    #header_top .nav_sp {
        float: right;
    }

    #header_top .nav_sp li {
        display: inline-block;
        margin: 0 2px 0 0;
        width: 33px;
        position: relative;
    }

    #header_top .nav_sp li .cart_on {
        position: absolute;
        color: #fff;
        background: #FFC107;
        width: 14px;
        height: 14px;
        text-align: center;
        font-size: .7em;
        line-height: 13px;
        border-radius: 50%;
        top: -5px;
        right: -3px;
    }

    #header_top .nav_sp li img {
        width: 100%;
    }

    #header_bottom {
        display: none;
    }

    #header #sp_menu {
        display: none;
        position: absolute;
        top: 0;
        width: 100%;
        z-index: 10000;
    }

    #header #sp_menu .close_area {
        background: #535353;
        text-align: right;
        padding: 10px 10px 3px 0;
    }

    #header #sp_menu .close_area img {
        width: 12px;
    }

    #header #sp_menu .main_link {
        margin: 0 0 10px;
    }

    #header #sp_menu .main_link li {
        display: inline-block;
        font-weight: bold;
        margin: 0 14px 0 0;
    }

    #header #sp_menu .main_link li:nth-child(1) {
        background: url('/common/img/parts/home-con.png') no-repeat;
        background-size: 14px auto;
        background-position: 0 3px;
        padding: 0 0 0 16px;
    }

    #header #sp_menu .main_link li:nth-child(2) {
        background: url('/common/img/parts/mail-con.png') no-repeat;
        background-size: 14px auto;
        background-position: 0 3px;
        padding: 0 0 0 16px;
    }

    #header #sp_menu .main_link li a {
        color: #333;
    }

    #header #sp_menu .inner {
        padding: 10px;
        background: #eeeeee;
    }

    #header #sp_menu .site_link > li a {
        position: relative;
        color: #333;
        display: block;
        background: #fff;
        border-bottom: 1px solid #eeeeee;
        padding: 7px 5px 7px 10px;
    }

    #header #sp_menu .site_link > li a::after {
        content: '';
        background: url('/common/img/parts/arrow-black-big-con.png') no-repeat;
        background-size: 100% auto;
        width: 11px;
        height: 11px;
        position: absolute;
        right: 6px;
        top: 11px;
    }

    #header #sp_menu .site_link li a.nav01 {
        background-image: url('/common/img/parts/nav01-con.png');
        background-repeat: no-repeat;
        background-size: 13px auto;
        background-position: 10px 10px;
        padding-left: 29px;
    }

    #header #sp_menu .site_link li a.nav02 {
        background-image: url('/common/img/parts/nav02-con.png');
        background-repeat: no-repeat;
        background-size: 13px auto;
        background-position: 10px 10px;
        padding-left: 29px;
    }

    #header #sp_menu .site_link li a.nav03 {
        background-image: url('/common/img/parts/nav03-con.png');
        background-repeat: no-repeat;
        background-size: 13px auto;
        background-position: 10px 10px;
        padding-left: 29px;
    }

    #header #sp_menu .site_link li a.nav04 {
        background-image: url('/common/img/parts/nav04-con.png');
        background-repeat: no-repeat;
        background-size: 13px auto;
        background-position: 10px 10px;
        padding-left: 29px;
    }

    #header #sp_menu .site_link li a.nav04::after {
        content: '';
        background: url('/common/img/parts/arrow-bottom.png') no-repeat;
        background-size: 100% auto;
        width: 15px;
        height: 15px;
        position: absolute;
        right: 5px;
        top: 9px;
    }

    #header #sp_menu .site_link li.active a.nav04::after {
        content: '';
        background: url('/common/img/parts/arrow-top.png') no-repeat;
        background-size: 100% auto;
        width: 15px;
        height: 15px;
        position: absolute;
        right: 5px;
        top: 9px;
    }

    #header #sp_menu .site_link li a.nav05 {
        background-image: url('/common/img/parts/nav05-con.png');
        background-repeat: no-repeat;
        background-size: 13px auto;
        background-position: 10px 10px;
        padding-left: 29px;
    }

    #header #sp_menu .site_link li a.nav05::after {
        content: '';
        background: url('/common/img/parts/arrow-bottom.png') no-repeat;
        background-size: 100% auto;
        width: 15px;
        height: 15px;
        position: absolute;
        right: 5px;
        top: 9px;
    }

    #header #sp_menu .site_link li.active a.nav05::after {
        content: '';
        background: url('/common/img/parts/arrow-top.png') no-repeat;
        background-size: 100% auto;
        width: 15px;
        height: 15px;
        position: absolute;
        right: 5px;
        top: 9px;
    }

    #header #sp_menu .site_link .menu_child {
        display: none;
        letter-spacing: -1em;
        background: #fff;
        border-bottom: 1px solid #eeeeee;
    }

    #header #sp_menu .site_link .menu_child  li {
        display: inline-block;
        width: 50%;
        box-sizing: border-box;
        letter-spacing: normal;
        white-space: normal;
    }

    #header #sp_menu .site_link .menu_child  li a {
        border: none;
    }

    #header #search_sp {
        background: #434343;
        padding: 10px;
        color: #fff;
    }

    #header #search_sp .cat_select {
        width: 40%;
        position: relative;
        float: left;
        font-weight: bold;
        background: url('/common/img/parts/search-plus-white-con.png') no-repeat;
        background-size: 15px auto;
        background-position: 0 2px;
        padding: 0 0 0 21px;
        margin: 2px 0 15px 0px;
    }

    #header #search_sp .selecter {
        width: 60%;
        float: left;
        padding: 0 0 0 10px;
        position: relative;
    }

    #header #search_sp .selecter select {
        color: #333;
        width: 100%;
        height: 26px;
        border-radius: 4px;
        padding: 2px 9px;
        font-weight: bold;
        font-size: .9em;
    }

    #header #search_sp .text_kwd {
        margin: 0 0 10px;
    }

    #header #search_sp .text_kwd input {
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 4px;
        height: 33px;
        padding: 0 0 0 11px;
        box-sizing: border-box;
        width: 100%;
        font-size: 16px;
    }

    #header #search_sp .text_kwd input::placeholder {
        color: #dad8d9;
    }

    #header #search_sp .bt button {
        background: #f39801;
        border-radius: 20px;
        color: #fff;
        font-weight: bold;
        font-size: .9em;
        height: 28px;
        width: 30%;
        margin: 0 35% 0;
        padding: 0 0 2px 0;
        border: none;
    }

    #header #search_sp .bt button span {
        background: url(/common/img/parts/search-con.png) no-repeat;
        background-position-y: 1px;
        padding: 0 0 0 19px;
    }

    /*------------------------
        main_col
    ------------------------*/

    #main_col {
        max-width: 100%;
        margin: 23px auto 0px;
    }

    #main_col #left_col {
        width: 100%;
        float: none;
    }

    /*------------------------
        side
    ------------------------*/
    #main_col #side_col {
        width: 100%;
        float: none;
    }

    #side_col .login_box {
        display: none;
    }

    #side_col .side_search {
        display: none;
    }

    #side_col .search_list .head {
        border-radius: 0;
        background-size: 24px auto;
        background-position: 7px 9px;
    }

    #side_col .search_list {
        border: none;
    }

    #side_col .search_list ul {
        margin: 0;
    }

    #side_col .search_list ul li {
        float: left;
        width: 50%;
        box-sizing: border-box;
    }

    #side_col .search_list ul li:nth-child(1n) {
        border-right: 1px solid #d2d2d2;
    }

    #side_col .search_list ul li:nth-child(2n) {
        border-right: none;
    }

    #side_col .search_list ul li:last-child {
        border-bottom: 1px solid #d2d2d2;
    }

    #side_col .rank_list {
        display: none;
    }

    #side_col .cat_list .head {
        border-radius: 0;
        background-size: 24px auto;
        background-position: 7px 9px;
    }

    #side_col .cat_list {
        border: none;
    }

    #side_col .cat_list ul {
        margin: 0;
        display: flex;
        flex-wrap: wrap;
    }

    #side_col .cat_list ul li {
        width: 33.3333%;
        box-sizing: border-box;
    }

    #side_col .cat_list ul li:nth-child(1n) {
        border-right: 1px solid #d2d2d2;
    }

    #side_col .cat_list ul li:nth-child(3n) {
        border-right: none;
    }

    #side_col .cat_list ul li:last-child {
        border-bottom: 1px solid #d2d2d2;
    }

    #side_col .cat_list ul li a::after {
        display: none;
    }

    #side_col .order_box {
        display: none;
    }

    #side_col .search_list ul li a::after {
        background: url('/common/img/parts/arrow-black-big-con.png') no-repeat;
        background-size: 11px auto;
        right: 4px;
    }

    #side_col .rank_follow_list .head::before {
        width: 22px;
        height: 22px;
        position: absolute;
        left: 7px;
        top: 5px;
    }

    #side_col .add_ranking_bt {
        margin: 1.5rem .7rem;
    }

    /*------------------------
        full menu
    ------------------------*/

    #panel-btn {
        width: 43px;
        height: 43px;
    }

    #full_menu_col .mypage_menu dl:nth-child(3) dd {
        width: calc(100% / 2);
    }

    #full_menu_col .mypage_menu dl:nth-child(4) dd:nth-child(4), #full_menu_col .mypage_menu dl:nth-child(4) dd:nth-child(5), #full_menu_col .mypage_menu dl:nth-child(4) dd:nth-child(6) {
        width: calc(100% / 2);
    }

    #full_menu_col .mypage_menu dl:nth-child(5) dd, #full_menu_col .mypage_menu dl:nth-child(6) dd {
        width: calc(100% / 2);
    }

    #full_menu_col .mypage_menu dl:nth-child(7) dd {
        width: calc(100% / 2);
    }

    /*------------------------
        footer
    ------------------------*/

    #footer {
        padding: 10px 0 0;
    }

    #footer .logo {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #ddd;
        padding: 0 0 10px;
    }

    #footer .logo img {
        width: 50%;
        max-width: 100%;
    }

    #footer .nav {
        margin: 0;

    }

    #footer .nav li {
        float: left;
        width: 50%;
        box-sizing: border-box;
        padding: 0;
    }

    #footer .nav li:nth-child(1),#footer .nav li:nth-child(2) {
        border-bottom: 1px solid #ddd;
    }

    #footer .nav li:nth-child(2) {
        border-right: none;
    }

    #footer .nav li a {
        position: relative;
        display: block;
        padding: 10px 10px 10px 10px;
    }

    #footer .nav li a::after {
        content: '';
        background: url('/common/img/parts/arrow-black-big-con.png') no-repeat;
        background-size: 11px auto;
        width: 13px;
        height: 13px;
        position: absolute;
        right: 4px;
        top: 15px;
    }

    #copy {
        padding: 12px 0;
    }


    /*------------------------
        top
    ------------------------*/

    #top-page .info_area {
        border-radius: 0;
        border-right: none;
        border-left: none;
    }

    #top-page .info_area .head {
        border-radius: 0;
        background-position: 4px 2px;
        padding: 10px 10px 10px 43px;
    }

    #top-page .info_area .news_area {
        margin: 10px;
    }

    #top-page .products_area h2 {
        padding: 5px 10px 5px 10px;
    }

    #top-page .products_area h2 span {
        top: 12px;
    }

    #top-page .pickup_area h2 {
        padding: 5px 10px 5px 10px;
    }

    #top-page .pickup_area h2 span {
        top: 12px;
    }

    #top-page .ranking_area h2 {
        padding: 5px 10px 5px 10px;
    }

    #top-page .ranking_area h2 span {
        top: 12px;
    }

    #top-page .cat_ranking_area h2 {
        padding: 5px 10px 5px 10px;
    }

    #top-page .cat_ranking_area h2 span {
        top: 12px;
    }

    #top-page .item_list ul li {
        width: 48%;
        margin: 0 1% 20px;
    }

    #top-page .item_list ul li:nth-child(4n) {
        margin: 0 1% 20px;
    }

    #top-page .ranking_area h3.blue {
        margin: 0 1% 13px;
    }

    #top-page .ranking_area h3.green {
        margin: 0 1% 13px;
    }

    #top-page .ranking_area h3.yellow {
        margin: 0 1% 13px;
    }

    #top-page .cat_ranking_area h3 {
        margin: 0 1% 13px;
    }

    #top-page .products_area ul li {
        margin: auto;
    }

    #top-page .products_area ul li:nth-child(4n) {
        margin: auto;
    }

    .modal {
        width: 302px;
        height: 359px;
    }

}

/*----------------------------------------------------
 商品属性関連
----------------------------------------------------*/
#page .item_list ul li .title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#left_col .item_list ul li .title,
#side_col .rank_list ul li .title {
    word-break: break-all;
}

#page .item_list .price .normal {
    font-weight: normal;
}

#page .item_list .title img.item_icon_attr {
    vertical-align: text-bottom;
    width: 30px;
}

#page .item_list .price img.item_icon_point,
#left_col .rank_list .price img.item_icon_point,
#side_col .rank_list .price img.item_icon_point {
    vertical-align: middle;
    width: 36px;
}

/*----------------------------------------------------
 PAGE-TOP
----------------------------------------------------*/
#page-top {
    position: fixed;
    z-index: 999;
    bottom: 20px;
    right: 20px;
    font-size: 50px;
}
#page-top a {
    background: #000;
    text-decoration: none;
    color: #fff;
    padding: 0px 15px 5px 15px;
    text-align: center;
    display: block;
    -moz-opacity: 0.7;
    opacity: 0.7;
    font-weight: bold;
}
#page-top a:hover {
    text-decoration: none;
    background: #999;
    color: #fff;
}
