/*****************************************************

    全ての要素をリセット
    各ブラウザの表示を統一するための設定です

*****************************************************/

html {
    overflow-y: scroll;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
    margin: 0;
    padding: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
    font-style: normal;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    text-align: left;
    font-weight: normal;
}

img,
abbr,
acronym,
fieldset {
    border: 0;
}

li {
    list-style-type: none;
}

img {
    vertical-align: middle;
}

.line {
    font-size: 1px;
    line-height: 1px;
}




/*--- default */

body {
    background: #fff;
    color: #333;
    font-size: 15px;
    font-family: "Lucida Sans Unicode", "Lucida Grande", Arial, Helvetica, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", sans-serif;
    line-height: 1.4;
    text-align: center;
    position: relative;
    border-top: 5px solid #000;
}

td,
th {
    font-size: 15px;
}

table {
    border-collapse: collapse;
}

pre {
    font-size: 15px;
    font-family: "Lucida Sans Unicode", "Lucida Grande", Arial, Helvetica, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", sans-serif;
    line-height: 1.4;
}




/*****************************************************

    基本設定、リンクカラーなど

*****************************************************/

#wrap,
#makebanner {
    width: 100%;
}

.container {
    width: 94%;
    margin-left: auto;
    margin-right: auto;
    max-width: 1300px;
}

a:link,
a:visited,
a:active {
    color: #333;
    text-decoration: none;
}

a:hover {
    color: #666;
    text-decoration: none;
}

.clear:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}

* html .clear {
    zoom: 1;
}




/* IE6 */

*:first-child+html .clear {
    zoom: 1;
}




/* IE7 */

a:hover img,
.btn:hover,
#M_basketClosedBox a:hover,
.soldout:not(:hover) {
    filter: alpha(opacity=70);
    -moz-opacity: 0.7;
    opacity: 0.7;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.btn {
    display: inline-block;
    margin: 16px auto;
    background: #000;
    color: #fff!important;
    padding: 14px 32px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
}

.btn-gray {
    background: #888;
}




/*****************************************************

    ヘッダ #header

*****************************************************/

#header {
    position: relative;
}

.shop-logo {
    float: left;
    margin: 12px 0;
}

.header-nav {
    position: absolute;
    right: 0;
    top: 16px;
}

.header-nav li,
.header-nav li li:first-child {
    display: inline-block;
    vertical-align: middle;
    margin: 0 6px;
}

.header-nav li:first-child {
    margin: 0;
}

.header-nav li li {
    font-size: 13px;
}

.header-nav .M_headBasket {
    border: none;
    background: none;
    float: none;
    padding: 0;
    margin: 0;
    width: auto;
}

.header-nav #M_headBasketSwitch {
    float: none;
    width: auto;
    height: auto;
}

.header-nav #M_basketTemp1 #M_basketClosedBox {
    background: none;
    position: relative;
    text-indent: inherit;
    width: auto;
    height: auto;
}

.header-nav #M_basketTemp1 #M_basketClosedBox a {
    color: #fff;
    text-align: center;
    text-decoration: none;
    height: auto;
    width: auto;
    padding: 4px 20px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    background: #000;
}

.header-nav #M_headBasketIn {
    display: none;
}

.header-nav #M_basketOpenedBox {
    top: 31px;
    background: #ddd;
    border: none;
}

.header-nav .M_basketMarginBox {
    text-align: center;
}

#MakeShopTopSearchInput {
    padding: 3px 6px;
    border: 1px solid #ccc;
    width: 100px;
}

#MakeShopTopSearchButton {
    margin: 0 0 0 4px;
    background: #000 url("/images/original_design_default/samplesource/9/search-icon.png") no-repeat center center;
    text-indent: -9999em;
    width: 28px;
    height: 22px;
    padding: 0;
    text-align: inherit;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    display: inline-block;
}

.global-nav {
    text-align: left;
    float: left;
    padding: 80px 0 0 80px;
}

.global-nav li {
    display: inline-block;
    font-size: 19px;
}





/*▼▼▼上部メニュー設定　久末編集▼▼▼*/

.global-nav li+li {
    border-left: 1px solid #ccc;
}

.global-nav li a {
    display: block;
    padding: 5px 15px;
    text-align: center;
    text-decoration: none;
}




/*.global-nav li a:hover {
    background: #EEE;
}*/

.global-nav li.active a {
    background: #333;
}




/*▲▲▲上部メニュー設定　久末編集▲▲▲*/


/*▼▼▼PDFボタン設定　久末編集▼▼▼*/

.btn_pdf {
    position: relative;
    display: inline-block;
    padding: 0.4em 1em 0.25em 1em;
    text-decoration: none;
    color: #fff !important;
    background: #fd6368;
    /*背景色*/
    border-bottom: solid 2px #dc473a;
    /*少し濃い目の色に*/
    border-radius: 5px;
    /*角の丸み*/
    box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.2), 0 2px 2px rgba(0, 0, 0, 0.19);
    font-weight: bold;
    margin-bottom: 10px;
}




/*▲▲▲PDFボタン設定　久末編集▲▲▲*/

.index-slider .bx-wrapper {
    margin-bottom: 16px;
}

.index-slider .bx-wrapper .bx-pager {
    bottom: 30px;
}

.global-nav #M_ctgList2 {
    display: inline;
}

.global-nav #M_ctgList2 li {
    margin: 0;
    padding: 0;
    background: none;
}

.global-nav #M_ctgList2 a:hover {
    text-decoration: none;
}

.global-nav #M_ctgList2 {
    display: none;
    position: absolute;
    left: 0;
    top: 30px;
    border: 1px solid #ccc;
    background: #fff;
    z-index: 100;
    width: 220px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
}

.global-nav .head-category {
    position: relative;
}

.global-nav .head-category:hover #M_ctgList2,
.global-nav .head-category:hover #M_ctgList2 li {
    display: block;
}

.global-nav .head-category:hover #M_ctgList2 li a {
    display: block;
    font-size: 15px;
    border-bottom: 1px solid #ccc;
    padding: 5px 10px;
}

.global-nav .head-category:hover #M_ctgList2 li:last-child a {
    border-bottom: none;
}

.global-nav .head-category:hover #M_ctgList2 li a:hover {
    background: #eee;
}

.global-nav #M_ctgList2 .M_layer2 {
    display: none;
}




/*****************************************************

    common

*****************************************************/

.item-list .lims,
.item-list.itemBox,
.category-list-inner {
    padding: 16px;
}

.item-list img {
    margin-bottom: 16px;
    /*  border-radius:5px; */
    /*    -webkit-border-radius:5px; */
    /*    -moz-border-radius:5px; */
}

.item-list a {
    font-size: 18px;
}

#makebanner td[width="150"],
#makebanner td[width="10"] {
    display: none;
}

#makebanner td[width="640"],
#makebanner td[width="640"] table {
    width: 100%;
}

#makebanner img[src$="helptitle.gif"],
#makebanner img[src$="companytitle.gif"],
#makebanner img[src$="baskettitle.gif"],
#makebanner img[src$="membertitle.gif"],
#makebanner img[src$="memberqtitle.gif"],
#makebanner img[src$="pointtitle.gif"] {
    display: none;
}

.inner-contents {
    width: 60%;
    margin: 0 auto;
}




/*****************************************************

    index

*****************************************************/

.main-contents h2 {
    text-align: center;
    margin: 48px auto 25px auto;
font-size: 18px;
}

.section {
    overflow: hidden;
}

.section table {
    width: 100%;
}

.index-news {
    text-align: center;
}

.index-news table table td {
    padding: 6px;
}

.index-news table table td:first-child {
    text-align: right;
    width: 35%;
}

.index-news table table td:last-child {
    text-align: left;
}

.index-recent #recent td.itemBox {
    width: 25%;
}

.index-recent .line {
    display: none;
}

.index-rank li {
    float: left;
    width: 20%;
    padding: 16px 0;
    position: relative;
}

.rank-number {
    position: absolute;
    left: 30px;
    top: 20px;
    background: #000;
    color: #fff;
    line-height: 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    font-weight: bold;
    z-index: 1000;
    font-size: 17px;
}

.rank-img img {
    max-width: 180px;
    width: 180px!important;
}

.itemlist li {
    list-style-type: disc;
    text-align: left;
    margin: 0 0 0 37%;
}

.itemlist li a {
    color: #3235b3;
}


.itemlist li:last-child {
    margin-bottom: 2em;
}

.itemlabel {
    background: #ffd9d9;
    color: #000000;
    padding: 10px;
    display: block;
    margin: 0;
    border: 1px solid #ffffff;
    width: 25em;
    margin: 0 31%;
}





/*****************************************************

    category

*****************************************************/

.list-sort {
    text-align: center;
    margin: 8px 0 32px;
}

.list-sort li {
    display: inline;
    margin: 0 4px;
}

.category-list li {
    width: 25%;
    float: left;
    text-align: center;
}

.sub-category table {
    margin-bottom: 32px;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}

.sub-category table td {
    padding: 8px 0;
}

.sub-category table table {
    border: none;
    margin-bottom: 0;
}

.sub-category table td td {
    paddnig: 0;
}

.sub-category .line,
.item-list .line {
    display: none;
}




/* pager */

#category ul.M_pager li a,
#category ul.M_pager li.active {
    display: inline-block;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    padding: 0;
    border: none;
    background: #D9D9D9;
    line-height: 28px;
    color: #999;
    font-size: 14px;
    margin: 0 3px;
}

#category ul.M_pager li.active,
#category ul.M_pager li a:hover {
    background: #000;
    color: #fff;
}

#category ul.M_pager li.prev a,
#category ul.M_pager li.next a {
    background: none;
    width: auto;
    height: auto;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    color: #333;
}

#category ul.M_pager li.prev a:hover,
#category ul.M_pager li.next a:hover {
    color: #888;
    text-decoration: none;
}




/*****************************************************

    search

*****************************************************/

.search-result {
    margin-bottom: 8px;
    text-align: left;
}

.search-result font {
    color: #333;
    margin-right: 8px;
}

.item-search {
    border: 1px solid #ccc;
    background: #eee;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    padding: 16px;
    margin-bottom: 32px;
}

.item-search td {
    padding: 8px;
}

.item-search .btn-search {
    padding: 4px 16px;
}




/*****************************************************

    detail

*****************************************************/

#detail {
    margin-top: 64px;
}

#detail h2 {
text-align: center;
    margin-top: 16px;
}



#detail h2:before{
content: '';
    display: inline-block;
    background-image: -webkit-linear-gradient(left, #eee, #0b337d, #eee);
    background-image: -moz-linear-gradient(left, #eee, #0b337d, #eee);
    background-image: -ms-linear-gradient(left, #eee, #0b337d, #eee);
    background-image: -o-linear-gradient(left, #eee, #0b337d, #eee);
    width: 100%;
    height: 1px;
    margin-bottom: 8px;
}



#detail h2:after{
    content: '';
    display: inline-block;
    background-image: -webkit-linear-gradient(left, #eee, #0b337d, #eee);
    background-image: -moz-linear-gradient(left, #eee, #0b337d, #eee);
    background-image: -ms-linear-gradient(left, #eee, #0b337d, #eee);
    background-image: -o-linear-gradient(left, #eee, #0b337d, #eee);
    width: 100%;
    height: 1px;
    margin-bottom: 8px;
margin-top: 6px;
}
#M_topicPathWrap {
    margin-bottom: 16px;
}

.item-wrap {
    margin-bottom: 96px;
}

.item-img {
    float: left;
    width: 50%;
    min-width: 400px;
}

.item-detail {
    float: right;
    width: 50%;
}

.item-detail-text {
    text-align: left;
    font-size: 15px;
    line-height: 1.6;
}

.item-detail-info {
    margin-top: 24px;
}

#M_usualValue td,
.item-detail-info td {
    font-size: 18px!important;
    width: auto;
}

#M_usualValue td {
    padding-bottom: 8px;
}

#M_usualValue font {
    color: #333;
}

.m_price {
    font-family: "Lucida Sans Unicode", "Lucida Grande", Arial, Helvetica, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", sans-serif;
    font-size: 18px!important;
}

.item-detail-info table table td:first-child {
    width: 3em;
}

.item-detail-info font {
    color: #cc0000;
}

.item-detail-info select {
    margin: 8px 0;
    padding: 4px;
    font-family: "Lucida Sans Unicode", "Lucida Grande", Arial, Helvetica, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", sans-serif;
    border: 1px solid #ccc;
    font-size: 16px;
}

input[name="amount"],
input[name="brand_name_option_amount"] {
    padding: 4px 6px;
    width: 60px;
    border: 1px solid #ccc;
    font-size: 18px;
}

img[src$="basket_up.gif"],
img[src$="basket_down.gif"] {
    display: none;
}

.M_inventory {
    margin-top: 24px;
}

.M_inventory * {
    font-size: 15px!important;
}

.item-basket-btn {
    margin: 24px 0 16px;
}

.item-basket-btn a {
    width: 70%;
    font-size: 18px;
    padding: 18px 0;
}

.item-basket-btn a:hover {
    background: #666;
}

.soldout {
    background: #ddd;
    color: #666!important;
    width: 70%;
    font-size: 18px;
    padding: 18px 0;
    margin: 0 auto;
    cursor: default;
}


.item-sns li {
    display: inline;
    vertical-align: middle;
}

.item-sns iframe {
    height: 20px!important;
    ;
}

.detail-recent h3 {
    text-align: center;
    margin: 16px auto 64px;
    font-size: 25px;
}





/*****************************************************

    basket

*****************************************************/

.basket-wrap {
    margin-bottom: 160px;
}

.basket {
    border-top: 1px solid #ccc;
    margin-bottom: 8px;
}

.basket th,
.basket td {
    border-bottom: 1px solid #ccc;
    padding: 8px;
    text-align: center;
}

.basket td table td {
    padding: 0;
    border: none;
}

.basket .basket-total {
    background: #ddd;
    text-align: right;
    padding: 12px 16px;
    font-size: 18px;
}

.btn-small {
    background: #888;
    font-size: 13px;
    padding: 4px 8px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
}

.basket-option {
    margin-top: 4px;
}

.quantity-wrap,
.quantityWrap {
    display: table;
    margin: 0 auto;
}

.basket-quantity {
    width: 20px!important;
    font-size: 18px;
}

.basket-quantity,
.basket-amend,
.quantityInput,
.quantityAmend {
    display: table-cell;
    vertical-align: middle;
    padding: 0 2px;
}

.basket-empty {
    margin: 24px 0;
}

.btn-wrap-back {
    float: left;
}

.btn-wrap-order {
    float: right;
}

.btn-wrap-back .btn {
    background: #888;
}

.basketQunantity {
    display: none;
}




/* Amazonボタン */

.amazonButton {
    width: 230px;
    margin-left: 8px;
}




/*****************************************************

    news

*****************************************************/

.news-head {
    font-size: 18px;
    margin-bottom: 32px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 16px;
}

.news-head .date {
    margin-right: 8px;
    font-size: 15px;
}

.news-contents {
    border-bottom: 1px solid #ccc;
    text-align: left;
    padding-bottom: 60px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.news-list table tr:first-child {
    display: none;
}

.news-list table .lims {
    padding: 12px 8px;
    border-bottom: 1px solid #ccc;
}




/*****************************************************

    contract

*****************************************************/

.contract {
    overflow: auto;
    box-sizing: border-box;
    border: 1px solid #ccc;
    width: 100%;
    height: 280px;
    margin-bottom: 24px;
    padding: 16px;
}

.contract pre {
    text-align: left;
    white-space: -moz-pre-wrap;
    white-space: -pre-wrap;
    white-space: -o-pre-wrap;
    white-space: pre-wrap;
    word-wrap: break-word;
}




/*****************************************************

    ordercontract

*****************************************************/

.ordercontract-list th,
.ordercontract-list td {
    padding: 16px 8px;
    border-bottom: 1px solid #ccc;
}

.ordercontract-list th {
    white-space: nowrap;
}




/*****************************************************

    lostpass

*****************************************************/

.lostpass-table {
    margin: 32px auto 16px;
    width: 500px!important;
    border-top: 1px solid #ccc;
}

.lostpass-table th,
.lostpass-table td {
    padding: 16px 8px;
    border-bottom: 1px solid #ccc;
    text-align: left;
}

.lostpass-table input {
    border: 1px solid #ccc;
    padding: 3px 6px;
    width: 250px;
}




/*****************************************************

    point

*****************************************************/

.point-data {
    text-align: center;
    font-size: 17px;
    margin-bottom: 16px;
}

.point-data strong {
    font-size: 28px;
    margin-left: 8px;
}

.point-data strong span {
    font-size: 17px;
    margin-left: 4px;
}

.point-date {
    text-align: right;
    font-size: 13px;
}

.point-history {
    margin-top: 32px;
}

.point-history tr:first-child td {
    padding: 4px 8px;
}

.point-history td {
    padding: 16px 8px;
    border-bottom: 1px solid #ccc;
    text-align: center;
}




/*****************************************************

    footer

*****************************************************/

#footer {
    margin-top: 160px;
}

.footer-guide,
.footer-nav {
    padding: 24px 0;
    text-align: left;
}

.footer-guide {
    border-top: 1px solid #ccc;
    color: #666;
    background: #eee;
}

.footer-guide-area,
.footer-nav-area {
    float: left;
    width: 50%;
    box-sizing: border-box;
    padding: 16px;
    font-size: 13px;
}

.footer-guide-title {
    margin-bottom: 24px;
    font-weight: bold;
    font-size: 15px;
}

.footer-guide-list li {
    margin-bottom: 16px;
}

.footer-guide-list h6 {
    font-weight: bold;
    margin-bottom: 8px;
}

.page-top {
    position: absolute;
    left: 50%;
    top: -26px;
    display: block;
    width: 50px;
    height: 32px;
    background: #333 url("/images/original_design_default/samplesource/9/pagetop.png") no-repeat center center;
    text-indent: -9999em;
    margin-left: -16px;
}

.footer-nav {
    background: #333;
    color: #777;
    font-size: 13px;
    position: relative;
}

.footer-nav a {
    color: #777;
}

.footer-nav a:hover {
    color: #eee;
}

.footer-nav-area:first-child {
    width: 40%;
}

.footer-nav-area:last-child {
    width: 60%;
    padding-left: 48px;
    text-align: right;
}

.footer-shop-name {
    font-weight: bold;
    margin-bottom: 4px;
    font-size: 16px;
}

.footer-nav-list {
    text-align: right;
}

.footer-nav-list li {
    display: inline;
    padding: 0 8px;
}

.copyright {
    border-top: 1px solid #666;
    padding-top: 16px;
    margin-top: 8px;
}

address {
    text-align: center;
    color: #eee;
    font-size: 11px;
}




/*****************************************************

    会員移管

*****************************************************/

#M_shopMove {
    width: 60%;
}

#M_shopMove table {
    width: 60% !important;
}

#M_shopMove table th {
    font-size: 14px !important;
    width: 150px !important;
}

form[action="idinfo.html"] font.woong {
    display: block;
    text-align: center;
}

form[action="idinfo.html"] textarea {
    width: 60%;
    height: 200px;
    margin: 0 auto 48px;
    font-family: "Lucida Sans Unicode", "Lucida Grande", Arial, Helvetica, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", sans-serif;
    font-size: 13px;
    padding: 16px 24px;
    box-sizing: border-box;
}




/*****************************************************

    メニュー一覧

*****************************************************/

.menu1 {
    float: left;
}

.menu2 {
    float: right;
}


label {
    background: #ffffff;
    color: #000000;

    padding: 10px;
    display: block;
    margin: 0;
    border: 1px solid #ffffff;
}

label:hover,
.itemlabel>a:hover {
    color: #ff0000;
    cursor: pointer;
}




input[type="checkbox"].on-off {
    display: none;
}

.menu ul {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    margin: 0;
    padding: 0;
    list-style: none;
}



.menu li {
    padding: 5px;
    margin-bottom：100px;
}





input[type="checkbox"].on-off+ul {
    height: 0;
    overflow: hidden;
}


input[type="checkbox"].on-off:checked+ul {
    height: auto;
}





.menu1 ul {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom： 100px;
}



.menu1 li {
    padding: 5px;
    margin-bottom： 100px;
}








/*****************************************************

    キャンペーン一覧

*****************************************************/

.cam {

    float: right;
}

ul.example li {
    margin-bottom: 10px;
}

.li1 {

    margin-bottom： 100px;
}

.kotei {
    display: block;
}




.kotei2 {
    position: fixed;
    left: 0px;
    bottom: 20px;
    font-size: 13px;

    color: #FFF;
}

.kotei3 {
    position: fixed;
    left: 130px;
    bottom: 20px;
    font-size: 13px;

    color: #FFF;
}

.kotei4 {
    position: fixed;
    left: 260px;
    bottom: 20px;
    font-size: 13px;

    color: #FFF;

    padding: 0px;
}

.kotei5 {
    position: fixed;
    left: 390px;
    bottom: 20px;
    font-size: 13px;

    color: #FFF;

    padding: 0px;
}

.kotei6 {
    position: fixed;
    left: 520px;
    bottom: 20px;
    font-size: 13px;

    color: #FFF;

    padding: 0px;
}

.kotei7 {
    position: fixed;
    left: 650px;
    bottom: 20px;
    font-size: 13px;

    color: #FFF;

    padding: 0px;
}

.kotei8 {
    position: fixed;
    left: 780px;
    bottom: 20px;
    font-size: 13px;

    color: #FFF;

    padding: 0px;
}

.kotei9 {
    position: fixed;
    left: 910px;
    bottom: 20px;
    font-size: 13px;

    color: #FFF;

    padding: 0px;
}




/*****************************************************

    TOPに戻る

*****************************************************/

.toTop {
    position: fixed;
    right: 0px;
    bottom: 20px;

    margin-top: 0px;
    display: inline-block;
    background: #ccc;
    padding: 15px;
    color: #fff;
    cursor: pointer;
}





/*****************************************************

   商品詳細アコーディオン

*****************************************************/

#acMenu dt {
    display: block;

    cursor: pointer;
}

#acMenu dd {






    display: none;
}

#acMenu dt:hover {
    color: #ff0000;
}





/*****************************************************

   上級生　期間キャンペン

*****************************************************/

.xday-after {
    display: none;
}




/*****************************************************

サイドスティキーバナー

*****************************************************/

.sticky_leftbt {
    left: 0;
    position: fixed!important;
    top: 50px;
    height: 520px;
    width: 51px;
    margin-left: -7px;
    z-index: 9999;
}




/*****************************************************

TOPページ WhatNews

*****************************************************/

section.info.column.bottommargin {
    width: 100%;
}

#top-informationArea .inner {
    height: 280px;
    overflow-y: scroll;
    overflow-x: hidden;
    border-bottom: solid 1px #ccc;
}

div#top-informationArea {
    width: 940px;
    margin: auto;
}

.info dl {
    clear: both;
    border-bottom: dotted 1px #ccc;
    margin-right: 10px;
    padding: 5px 0px;
}

.info dt {
    float: left;
    width: 7em;
}

.info dd {
    padding-left: 8em;
    text-align: left;
}

.info dd a {
    color: #c7375e !important;
}




/************************
　　　フッター
*************************/

.footer-guide-title2 {
    font-size: 17px;
    margin: 15px 0 5px 0;
}

.footer-guide-title3 {
    font-size: 28px;
    margin: 0px 0 5px 0;
    color: rgba(254, 34, 0, 0.79);
}

.footer-guide-area p a {
    line-height: 2em;
    margin-left: 15px;
}


#detail .item-img {
    float: none;
    width: 600px;
}

#detail .item-detail {
    float: none;
    width: 800px;
}




/************************
　　　追加
*************************/

#recommend div.title,
#history div.title,
#ranking div.title {
    width: 100%;
    background-color: #424242!important;
    padding: 5px 0;
    margin-bottom: 10px;
}

.item-detail-text p,
.item-detail-text h2,
.item-detail-text h3,
.item-detail-text h4 {
    margin-bottom: 1rem;
    font-family: 'Lucida Grande', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, sans-serif !important;
}

#detail p {
    padding-left: 10px;
}

.sticky_leftbt.sp-kesu {
    display: none;
}



h1.title_h1 {
    color: #003367;
    margin: 23px 0 50px 0;
    text-align: center;
    height: 24px;
    line-height: 1.1em;
    padding-bottom: 10px;
    font-size: 20px;
    position: relative;
}

h1.title_h1:before {
    content: '';
    position: absolute;
    bottom: -15px;
    display: inline-block;
    width: 60px;
    height: 4px;
    left: 50%;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #013366;
    border-radius: 2px;
}

h3 {
    position: relative;
    color: #003367;
    font-size: 17px;
}

h3:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 4px;
    background: -webkit-repeating-linear-gradient(-45deg, #003367, #003367 2px, #fff 2px, #fff 4px);
    background: repeating-linear-gradient(-45deg, #003367, #003367 2px, #fff 2px, #fff 4px);
}

h4 {
    color: #013366;
    border-bottom: 1px dotted;
    margin-bottom: 20px!important;
}

.red {
    color: #cc0108;
}

.item-detail-text p a {
    color: #2489bb;
}

p.midasi {
    position: relative;
    padding: 0.5em;
    background: #ea4f4f;
    color: white;
    margin: 20px 0 15px 0;
}

.item-basket-btn a {
    background: #6daf44;
}

.box28 {
    position: relative;
    margin: 2em 0;
    padding: 25px 10px 7px;
    border: solid 2px #FFC107;
}

.box28 .box-title {
    position: absolute;
    display: inline-block;
    top: -2px;
    left: -2px;
    padding: 0 9px;
    height: 25px;
    line-height: 25px;
    vertical-align: middle;
    font-size: 17px;
    background: #FFC107;
    color: #ffffff;
    font-weight: bold;
}

.box28 p {
    margin: 0;
    padding: 0;
    margin-bottom: 10px;
}

#detail p.c-copy {
    font-size: 2rem;
    position: relative;
    display: block;
    margin-top: 2em;
    margin-bottom: 2em;
    text-align: center;
}

#detail p.c-copy:before {
    content: '';
    position: absolute;
    bottom: -15px;
    display: inline-block;
    width: 60px;
    height: 5px;
    left: 50%;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: black;
    border-radius: 2px;
}

img.thumbnail {
    border: 1px solid #c5c5c5;
}

img.waku {
    border: 1px solid #d2cece;
    margin: 15px 0;
}

.index-slider {
    max-width: 980px;
    margin: auto;
}

.index-slider li img {
    width: 100%;
    height: auto;
}

.item-detail-text a {
    text-decoration: underline;
    color: #307dc1;
}

.btn-basket {
    text-align: center;
}

a.btn.btn-basket {
    width: 100%;
}

.item-basket-btn a {
    background: #6daf44;
}

.btn-wrap-order a.btn,
.nextBtnWrapInner input[type="button"],
.nextBtnWrap input[type="button"],
a.responsiveDesignOrderButton {
    background: #6daf44 !important;
}

.global-nav #M_ctgList2 {
    width: 500px;
}

.global-nav #M_ctgList2 li a {
    text-align: left;
    heght: 20px;
}

.global-nav .head-category:hover #M_ctgList2 li a {
    padding: 13px;
}

ul.M_layer1 {
    border-top: 1px slid #333;
}



ol,
ul.square,
ul.circle,
ul.disc,
ul {
    margin-bottom: 20px;
}

ol,
ul.square,
ul.circle,
ul.disc,
ul {
    margin-left: 30px;
}

ul li {
    line-height: 1.5rem;
    display: block;
    list-style-type: disc!important;
}

.bx-viewport ul {
    margin-left: 0;
}


.column-last {
    margin-right: 0!important;
}

.column {
    position: relative;
    margin: 0 4% 30px 0;
    float: left;
}

.column-1-2 {
    width: 48%;
}

.column-2-3 {
    width: 65.33%;
}

.column-1-3 {
    width: 30.66%
}

td.M_original-price {
    display: none;
}

#detail .item-img {
    float: none;
    width: 800px;
}



.item-detail-text li:before {
content: "\f054";
font-family: "Font Awesome 5 Free";
font-weight: 900;
padding-right: 8px;
}

.item-detail-text li {
    line-height: 1.5rem;
}

.su-note-shell {
    padding: 10px;
}

.su-note {
    margin: 30px 0;
}

img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}


/* ----------------------------------------------------------------
    Basic Layout Styles
-----------------------------------------------------------------*/

.tright {
    text-align: right !important;
}

.tleft {
    text-align: left !important;
}

.fright {
    float: right !important;
}

.fleft {
    float: left !important;
}

.emptydiv {
    display: block !important;
    position: relative !important;
}

.allmargin {
    margin: 30px !important;
}

.leftmargin {
    margin-left: 30px !important;
}

.rightmargin {
    margin-right: 30px !important;
}

.topmargin {
    margin-top: 30px !important;
}

.bottommargin {
    margin-bottom: 30px !important;
}

.nomargin {
    margin: 0 !important;
}

.noleftmargin {
    margin-left: 0 !important;
}

.norightmargin {
    margin-right: 0 !important;
}

.notopmargin {
    margin-top: 0 !important;
}

.nobottommargin {
    margin-bottom: 0 !important;
}

.allpadding {
    padding: 30px !important;
}

.leftpadding {
    padding-left: 30px !important;
}

.rightpadding {
    padding-right: 30px !important;
}

.toppadding {
    padding-top: 30px !important;
}

.bottompadding {
    padding-bottom: 30px !important;
}

.nopadding {
    padding: 0 !important;
}

.noleftpadding {
    padding-left: 0 !important;
}

.norightpadding {
    padding-right: 0 !important;
}

.notoppadding {
    padding-top: 0 !important;
}

.noborder {
    border: none !important;
}

.noleftborder {
    border-left: none !important;
}

.norightborder {
    border-right: none !important;
}

.notopborder {
    border-top: none !important;
}

.nobottomborder {
    border-bottom: none !important;
}

.nopadding {
    padding: 0 !important;
}

.noleftpadding {
    padding-left: 0 !important;
}

.norightpadding {
    padding-right: 0 !important;
}

.notoppadding {
    padding-top: 0 !important;
}

.nobottompadding {
    padding-bottom: 0 !important;
}

.noabsolute {
    position: relative !important;
}

.noborder {
    border: none !important;
}

.hidden {
    display: none !important;
}

.nothidden {
    display: block !important;
}

.center {
    text-align: center !important;
}

.divcenter {
    position: relative !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

#wrapper {
    width: 980px;
}



/* ----------------------------------------------------------------
    Basic Layout Styles
-----------------------------------------------------------------*/

blockquote {
    position: relative;
    margin: 2em 0;
    padding: 1.2em;
    font-size: .9em;
    border: 1px solid #CCC;
    border-radius: 6px;
}

blockquote:before,
blockquote:after {
    position: absolute;
    top: 0;
    font-size: 4em;
    opacity: .1;
    content: '“';
}

.blockquote:before {
    top: 15px;
    left: 20px;
}

.blockquote:after {
    bottom: 15px;
    right: 20px;
    transform: rotateY(180deg);
}

.su-button {
    display: inline-block;
    background-color: #f86b35;
    color: #fff !important;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: bold;
    height: 33px;
    line-height: 33px;
    padding: 0px 20px;
    text-align: center;
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.251);
    text-transform: uppercase;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.196);
    -moz-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.196);
    -webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.196);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.su-button {
    font-size: 15px !important;
    padding: 10px 40px !important;
    margin-bottom: 20px;
    border-radius: 0px !important;
}

.su-button:hover,
.simple-button:hover,
.btn_pdf:hover,
.btn:hover,
.post-link:hover,
.su-button:focus {
    box-shadow: 0 13px 20px -3px rgba(0, 0, 0, .24);
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

a.btn_pdf {
    text-decoration: none;
}

.su-spoiler.su-spoiler-style-1 {
    margin-left: 30px;
}

.su-spoiler-style-1 {
    border-bottom: 1px dotted #E5E5E5;
    margin-bottom: 10px;
    padding: 0px 0px 10px;
}

h1,
h2,
h3,
h4,
h5,
h6,
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
.su-service-title,
.su-tabs .su-tabs-nav span,
.su-tabs .pane-title,
.su_au_name,
.heading-wrapper h6,
.su-spoiler-title {
    color: #003367;
}

.su-spoiler-style-1 .su-spoiler-content {
    padding: 15px 0 10px;
    display: none;
}

.su-spoiler-title .spoiler-button {
    display: block;
    float: left;
    margin-right: 10px;
    font-size: 10px;
}

.su-spoiler-title {
    cursor: pointer;
}


.item-detail-text table {
    background-color: #eeeeee;
    border-collapse: collapse;
    border-spacing: 0;
    padding: 0;
    margin-bottom: 18px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    width: 100%;
}

.item-detail-text th {
    background: #013366;
    border: solid 1px #D5D5D5;
    text-shadow: none;
    color: #fff;
    text-align: center;
    font-size: 13px;
}

.item-detail-text td {
    padding: 5px;
    font-size: 11px;
    border: 1px solid #aeadad;
}


.item-detail-text .nonBorder table {
    background-color: unset;
    border-collapse: collapse;
    border-spacing: 0;
    padding: 0;
    margin-bottom: 18px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    width: 100%;
}

.item-detail-text .nonBorder th {
    background: unset;
    border: unset;
    text-shadow: none;
    color: #fff;
    text-align: center;
    font-size: 13px;
}

.item-detail-text .nonBorder td {
    padding: 5px;
    font-size: 11px;
    border: unset;
    background: #fff;
}


.item-detail-text table.table-hover {
    background-color: #fff;
}.wp-caption {
    background: #fff;
    color: #999;
    max-width: 96%;
    padding: 7px 3px 0px;
    text-align: center;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}.aligncenter, div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}
/* Columns */
.column-1-2 { width: 48% }
.column-1-3 { width: 30.66% }
.column-2-3 { width: 65.33% }
.column-1-4 { width: 22% }
.column-3-4 { width: 74% }
.column-1-5 { width: 16.8% }
.column-2-5 { width: 37.6% }
.column-3-5 { width: 58.4% }
.column-4-5 { width: 67.2% }
.column-1-6 { width: 13.33% }
.column-5-6 { width: 82.67% }
