﻿
/*----------------------------------------
    全体
----------------------------------------*/
html {
    background-color: #f5f2e7;
    margin: 0;
    padding: 0;
}

body {
    line-height: 1.2;
    font-family: 'メイリオ',Meiryo,'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ ゴシック',sans-serif;
    font-size: 14px;
    color: #000;
    -webkit-text-size-adjust: 100%;
    background-color: #f5f2e7;
}

div#login_footer {
    text-align: center;
}

a {
    color: #00b09f;
    text-decoration: underline;
}

    a:hover {
        color: #2bd2c2;
    }

.bold {
    font-weight: bold;
}

.point {
    color: #ff9f00;
}

.attention {
    color: #db0d24;
    font-weight: bold;
}

.text-sm {
    font-size: 12px;
}

.text-lg {
    font-size: 24px;
}

/* 基本の画像セット */
img {
    vertical-align: bottom;
}

.op:hover img {
    filter: alpha(opacity=60);
    -moz-opacity: 0.60;
    opacity: 0.60;
    -webkit-transition: opacity 0.1s ease-out;
    -moz-transition: opacity 0.1s ease-out;
    -ms-transition: opacity 0.1s ease-out;
    transition: opacity 0.1s ease-out;
    background: #FFF;
}


/* 基本のボタンセット */
/* 白に茶枠 */
.btn {
    background-color: #fff;
    border: 1px solid #b9a486;
    border-radius: 5px;
    display: inline-block;
    line-height: 1.42857;
    margin-bottom: 0;
    padding: 6px 12px;
    text-align: center;
    color: #000;
    vertical-align: middle;
    white-space: nowrap;
    text-decoration: none;
    position: relative;
    *display: inline;
    *zoom: 1;
}

a:hover .btn {
    color: #a6937c;
}
/* 青緑：リンクないときはグレー */
.btn-gr {
    background-color: #e6e6e6;
    border: 1px solid #e6e6e6;
    color: #fff;
}
/* 青緑 */
a .btn-gr {
    background-color: #00b09f;
    border: 1px solid #00b09f;
}

a:hover .btn-gr {
    background-color: #2bd2c2;
    border: 1px solid #2bd2c2;
    color: #fff;
}
/* 白 */
.btn-wt {
    border: 1px solid #fff;
}
/* 茶色 */
.btn-br {
    background-color: #d1c0a5;
    border: 1px solid #d1c0a5;
}

a:hover .btn-br {
    background-color: #e3d1b4;
    border: 1px solid #e3d1b4;
    color: #000;
}
/* 濃い茶色 */
.btn-dbr {
    background-color: #7e6b5a;
    border: 1px solid #7e6b5a;
    color: #fff;
}

a:hover .btn-dbr {
    background-color: #967f6b;
    border: 1px solid #967f6b;
    color: #fff;
}
/* 淡い茶色 */
.btn-pbr {
    background-color: #e5dcce;
    border: 1px solid #e5dcce;
}

a:hover .btn-pbr {
    background-color: #efe9e0;
    border: 1px solid #efe9e0;
    color: #000;
}
/* クリックで1px下げる */
a:active .btn {
    top: 1px;
}

/* ラベル */
.label {
    background-color: #fff;
    color: #7e6b5a;
    font-size: 12px;
    border-radius: 4px;
    min-width: 20px;
    display: inline-block;
    text-align: center;
    padding: 2px 10px;
    margin: 0 2px 0 0;
    *display: inline;
    *zoom: 1;
}
/* ラベルカラーバリエーション */
/* 緑（注文番号用） */
.label-1 {
    background-color: #005e15;
    color: #fff;
}
/* 赤（セール用） */
.label-2 {
    background-color: #ca2337;
    color: #fff;
}


/*----------------------------------------
    layout
----------------------------------------*/

.left {
    float: left;
}

.right {
    float: right;
}

/* 最小幅は960px(両サイド10pxマージン含む)上下は10pxマージン*/
#header,
footer,
#main {
    margin: 10px;
    width: 940px;
}

/* 960px以上のウインドウ幅で全幅表示(両サイド1％マージン含む)上下は10pxマージン */
@media (min-width: 960px) {
    #header,
    footer,
    #main {
        margin: 10px 0px;
        width: 98%;
        margin-left: 1%;
    }
}

/*----------------------------------------
    表組
----------------------------------------*/
.table {
    width: 100%;
    background-color: #fff;
    border-spacing: 0;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    /*box-shadow: 0 1px 1px #d3bfa4;*/
    border-collapse: separate;
}

    .table th,
    .table td {
        border: 1px solid #d1c0a5;
        padding: 5px;
    }

    .table tbody th {
        text-align: center;
        vertical-align: middle;
    }

    .table tfoot td {
        line-height: 35px;
    }

/* 商品名欄以外に幅指定 */
/* 曜日別 */
.width-xs {
    width: 30px;
}
/* イチオシ・食べ方・自動注文・マイ冷蔵庫 */
.width-s {
    width: 50px;
}
/* 週合計 */
.width-m {
    width: 70px;
}
/* 評価 */
.width-l {
    width: 100px
}

/* 背景の色 */
/* 濃い茶色に白字 */
.table th {
    background-color: #7e6b5a;
    color: #fff;
    font-weight: normal;
}
/* 茶色に白字 */
.bg-br th {
    background-color: #b9a486;
}
    /* 淡い茶色に黒字 */
    .bg-br th.bg-pbr {
        background-color: #e5dcce;
        color: #000;
    }
/* 奇数行は色付 */
tr:nth-child(odd) {
    background-color: #faf8f3;
}

/* コピーライト */
.copy_right {
    color: #a6937c;
}


/* 左上角丸 最初の行の最初のセル */
.table tr:first-child th:first-child,
.table tr:first-child td:first-child {
    -webkit-border-radius: 10px 0 0 0;
    -moz-border-radius: 10px 0 0 0;
    -o-border-radius: 10px 0 0 0;
    border-radius: 10px 0 0 0;
}

/* 右上角丸 最初の行の最後のセル */
.table tr:first-child th:last-child,
.table tr:first-child td:last-child {
    -webkit-border-radius: 0 10px 0 0;
    -moz-border-radius: 0 10px 0 0;
    -o-border-radius: 0 10px 0 0;
    border-radius: 0 10px 0 0;
}

/* 左下角丸 最後の行の最初のセル */
.table tr:last-child th:first-child,
.table tr:last-child td:first-child {
    -webkit-border-radius: 0 0 0 10px;
    -moz-border-radius: 0 0 0 10px;
    -o-border-radius: 0 0 0 10px;
    border-radius: 0 0 0 10px;
}

/* 右下角丸 最後の行の最後のセル */
.table tr:last-child th:last-child,
.table tr:last-child td:last-child {
    -webkit-border-radius: 0 0 10px 0;
    -moz-border-radius: 0 0 10px 0;
    -o-border-radius: 0 0 10px 0;
    border-radius: 0 0 10px 0;
}

/* 左上角丸 thead内 最初の行の最初のセル */
.table thead tr:first-child th:first-child,
.table thead tr:first-child td:first-child {
    -webkit-border-radius: 10px 0 0 0;
    -moz-border-radius: 10px 0 0 0;
    -o-border-radius: 10px 0 0 0;
    border-radius: 10px 0 0 0;
}

/* 右上角丸 thead内 最初の行の最後のセル */
.table thead tr:first-child th:last-child,
.table thead tr:first-child td:last-child {
    -webkit-border-radius: 0 10px 0 0;
    -moz-border-radius: 0 10px 0 0;
    -o-border-radius: 0 10px 0 0;
    border-radius: 0 10px 0 0;
}

/* 角丸なし thaedの後のtbody 最初の行の最初のセル
   角丸なし thaedの後のtbody 最初の行の最後のセル */
.table thead + tbody tr:first-child th:first-child,
.table thead + tbody tr:first-child td:first-child,
.table thead + tbody tr:first-child th:last-child,
.table thead + tbody tr:first-child td:last-child {
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -o-border-radius: 0px;
    border-radius: 0px;
}

/* 左下角丸 thaedの後のtbody 最後の行の最初のセル */
.table thead + tbody tr:last-child th:first-child,
.table thead + tbody tr:last-child td:first-child {
    -webkit-border-radius: 0 0 0 10px;
    -moz-border-radius: 0 0 0 10px;
    -o-border-radius: 0 0 0 10px;
    border-radius: 0 0 0 10px;
}

/* 右下角丸 thaedの後のtbody 最後の行の最後のセル */
.table thead + tbody tr:last-child th:last-child,
.table thead + tbody tr:last-child td:last-child {
    -webkit-border-radius: 0 0 10px 0;
    -moz-border-radius: 0 0 10px 0;
    -o-border-radius: 0 0 10px 0;
    border-radius: 0 0 10px 0;
}

/* ログイン */
#login_main {
    width: 50%;
    margin: auto;
    text-align: center;
}

#login_logo {
    padding: 30px 0;
}

#login_form {
    text-align: left;
    padding-left: 20%;
}

    #login_form p {
        line-height: 2.5em;
    }

    #login_form #LoginCode, #login_form #Password {
        height: 30px;
        width: 500px;
        font-size: 150%;
    }

    #login_form #login_checkbox {
        padding: 10px 0;
    }

#login_buton input {
    padding: 2px 20px;
}

#login_msg {
    padding: 30px 0;
}

.align_right {
    text-align: right;
}




/* */

.logo_img {
    width: 230px;
    float: left;
}

.site_controller {
    margin-left: 230px;
}

.site_info {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    vertical-align: middle;
}

    .site_info div {
        padding: 10px 0;
    }

    .site_info span {
        margin-right: 10px;
    }

.back_white {
    margin-right: 250px;
    background-color: #FFF;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -o-border-radius: 4px;
    padding: 5px;
}

.button_list {
    float: right;
    width: 250px;
    text-align: center;
}

.btn_controller {
    padding: 5px 0;
}


/* ページャーのボタン化 */
.pager_div {
    text-align: right;
    padding: 5px 0;
    margin: 3px 0;
    line-height: 35px;
}

.page_title {
    float: left;
    vertical-align: middle;
}

.sort_ltem_list {
    position: relative;
    float: left;
    /*top:8px;*/
}

.pager-btn_wrapper {
    position: relative;
    display: inline-block;
    *display: inline;
    *zoom: 1;
}

.pager-btn {
    position: relative;
    width: 100%;
}

    .pager-btn a {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        text-indent: -999px;
    }

    .pager-btn span {
        color: #000;
    }

.active span {
    color: #fff;
}

.pager_margin {
    margin-right: 5px;
}



/* リンクをボタンとするための設定 */
.btn_link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-indent: -999px;
}

.btn_normal_link {
    background-color: #fff;
    border: 1px solid #b9a486;
}

.btn-gr_link {
    background-color: #00b09f;
    border: 1px solid #00b09f;
}

.btn-br_link {
    padding: 15px 5px;
    background-color: #d1c0a5;
    border: 1px solid #d1c0a5;
}

.btn-dbr_link {
    padding: 15px 5px;
    background-color: #7e6b5a;
    border: 1px solid #7e6b5a;
    color: #fff;
}

.btn-pbr_link {
    background-color: #e5dcce;
    border: 1px solid #e5dcce;
}

/**/
.clearfix:after {
    content: ".";
    display: block;
    clear: both;
    height: 0;
    visibility: hidden;
}

.clearfix {
    min-height: 1px;
}

* html .clearfix {
    height: 1px;
    /*¥*/ /*/
    height: auto;
    overflow: hidden;
    /**/
}

.both {
    clear: both;
}

.site_note {
    margin: 5px;
}

.summary_note_title {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    -webkit-border-radius: 5px 0 0 5px;
    -moz-border-radius: 5px 0 0 5px;
    -o-border-radius: 5px 0 0 5px;
    border-radius: 5px 0 0 5px;
    background-color: #ca2337;
    padding: 5px;
}

    .summary_note_title span {
        color: #fff;
        font-weight: bold;
    }


.summary_note {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    background-color: #FFF;
    -webkit-border-radius: 0 5px 5px 0;
    -moz-border-radius: 0 5px 5px 0;
    -o-border-radius: 0 5px 5px 0;
    border-radius: 0 5px 5px 0;
    padding: 5px;
}


/* 画像サイズ設定用(商品詳細画面で使用) */
.ImgMaxSize_30_Square {
    max-width: 30px;
    max-height: 30px;
}

.ImgMaxSize_45_Square {
    max-width: 45px;
    max-height: 45px;
}

.ImgMaxSize_150_Square {
    max-width: 150px;
    max-height: 150px;
}

.ImgExpansionWidth {
    object-fit: contain;
    width: 100%;
}