@charset "UTF-8";
/* ----------------------------------------------------------

 * https://osakadou.cool/sale/
 * style.css
 * updated --- 2019/04/15

 01:base & reset
 02:common
 03:content_overview
 04:content_detail
 05:other
 06:end

@media screen and (min-width: 769px)

------------------------------------------------------------*/

/* ====================================
 01:base & reset
/* ====================================*/

* {
    margin: 0;
    padding: 0;
    line-height: 1.4;
    list-style: none;
}

html {
    font-size: 62.5%;
    /*1remが10pxになるように調整（16px * 0.625 = 10px）*/
}

body {
    font-size: 1.6rem;
    /*1.6rem = 16px*/
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
}

/* ====================================
 02:common
/* ====================================*/

#clearance_sale {
    padding: 20px 0;
    background-color: #fff;
    text-shadow: none;
    overflow: hidden;
}

#clearance_sale a {
    font-weight: normal !important;
    text-decoration: underline;
}

#clearance_sale .content_inner {
    padding-bottom: 1em;
}

#clearance_sale .text_thanks {
    display: none;
    padding: 0 0.75em;
}

#clearance_sale h2 {
    padding: 0 0.75em;
    margin: 0 auto;
    text-align: center;
}

#clearance_sale h2 img {
    width: 100%;
}

.category_detial h3 {
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    margin: 1em auto 0.3em;
    padding: 0.65em;
    text-align: center;
}

@media screen and (min-width: 769px) {
    /*769px以上のデバイスでは以下を読み込む*/
    #clearance_sale {
        padding: 0;
    }

    #clearance_sale h2 {
        padding: 0;
        max-width: 980px;
    }

    .category_detial h3 {
        margin: 1em auto 1.5em;
    }
}

/* ====================================
 03:content_overview
/* ====================================*/

.overview {
    padding: 0.75em;
}

.catch {
    text-align: center;
}

.catch p.season {
    font-size: 3.2rem;
    font-weight: bold;
    line-height: 1;
    margin: 0 0 0.15em;
}

.catch p.rate {
    font-size: 4.2rem;
    font-weight: bold;
    padding: 0em 0.3em;
    border-top: 4px solid;
    border-bottom: 4px solid;
    display: block;
}

.catch p.period {
    font-size: 1.6rem;
    background-color: #ffe91d;
    padding: 0.25em 1em;
    margin: 1em 0;
    border-radius: 20px;
    display: inline-block;
    line-height: 1.2;
}

.catch p.text {
    text-align: left;
    font-size: 1.4rem;
    line-height: 1.8;
    font-weight: bold;
}

.catch p.text br {
    display: none;
}

.catch ul.annotation {
    margin: 0.5em 0 0 0;
    padding: 0;
}

.catch ul.annotation li {
    text-align: left;
    font-size: 1.2rem;
    text-indent: -1.2rem;
    padding-left: 1.2em;
    line-height: 1.6;
    margin-bottom: 0.5em;
}

@media screen and (min-width: 769px) {
    /*769px以上のデバイスでは以下を読み込む*/
    .overview {
        padding: 1.5em 0 2em;
        width: 650px;
        margin: 0 auto;
    }

    .catch p.season {
        line-height: 1.3;
        margin: 0;
    }

    .catch p.rate {
        font-size: 5em;
        line-height: 1.3;
        padding: 0 0.3em;
    }

    .catch p.period {
        font-size: 1.2em;
        padding: 0.4em 0.8em;
        margin: 0.75em 0 1em;
        font-weight: bold;
    }

    .catch p.text {
        text-align: center;
        font-size: 1.6rem;
    }

    .catch p.text br {
        display: block;
    }

    .catch ul.annotation {
        margin: 1.25em auto 0;
        width: 610px;
    }

    .catch ul.annotation li {
        font-size: 1.3rem;
        margin-bottom: 0.25em;
    }
}

@media screen and (max-width: 320px) {
    /*320px以下のデバイスでは以下を読み込む*/
    .catch p.season {
        font-size: 2.8rem;
    }
    .catch p.rate {
        font-size: 3.6rem;
    }
    .catch p.period {
        padding: 0.25em 1em;
        margin: 0.652em 0;
        line-height: 1.2;
        font-size: 1.4rem;
    }
}

/* ====================================
 04:content_detail
/* ====================================*/

/* ---------------------------
 * navi_category
/* ---------------------------*/

ul#navi_category {
    display: flex;
    flex-direction: column;
    padding: 0 0.75em;
    overflow: hidden;
}

ul#navi_category li {
    text-align: left;
    background-color: #f5f5f5;
    padding: 0.75em 0.5em 0.75em 3em;
    margin-bottom: 0.5em;
    border-radius: 4px;
    position: relative;
    line-height: 1.6;
    list-style: none;
}

ul#navi_category li:before {
    content: "";
    background: url(/camp/img_camp/sale/arrow.png) center;
    color: #fff;
    background-color: #565656;
    width: 18px;
    height: 18px;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    left: 15px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

ul#navi_category li a {
    font-size: 1.4rem;
    text-decoration: none;
    color: #333333;
    font-weight: bold !important;
    display: block;
}

@media screen and (min-width: 769px) {
    /*320px以下のデバイスでは以下を読み込む*/

    ul#navi_category {
        flex-direction: unset;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 0;
        max-width: 900px;
        margin: 0 auto;
    }
    ul#navi_category::after {
        content: "";
        width: calc(100% / 3 - 0.45em);
        display: block;
    }
    ul#navi_category li {
        width: calc(100% / 3 - 0.45em);
        float: unset;
        margin-right: 0;
    }
    /*カテゴリーが3の場合*/
    .list_number03#navi_category {
        display: flex;
    }

    .list_number03 li {
        width: 100%;
        float: left;
        margin-right: 0.45em;
    }
    .list_number03 li:nth-child(3n) {
        margin-right: 0;
    }
    /*カテゴリーが2 or 4の場合*/
    .list_number02#navi_category,
    .list_number04#navi_category {
        width: auto;
    }

    .list_number02 li,
    .list_number04 li {
        float: left;
        width: 47.35%;
        margin-right: 0.45em;
    }

    .list_number02 li:nth-child(even),
    .list_number04 li:nth-child(even) {
        margin-right: 0;
    }
    /*カテゴリーが5～12の場合*/
    .list_number05#navi_category,
    .list_number06#navi_category,
    .list_number07#navi_category,
    .list_number08#navi_category,
    .list_number09#navi_category,
    .list_number10#navi_category,
    .list_number11#navi_category,
    .list_number12#navi_category {
        width: auto;
    }

    .list_number05 li,
    .list_number06 li,
    .list_number07 li,
    .list_number08 li,
    .list_number09 li,
    .list_number10 li,
    .list_number11 li,
    .list_number12 li {
        float: left;
        width: 32.8%;
        margin-right: 0.45em;
    }

    .list_number05 li:nth-child(3n),
    .list_number06 li:nth-child(3n),
    .list_number07 li:nth-child(3n),
    .list_number08 li:nth-child(3n),
    .list_number09 li:nth-child(3n),
    .list_number10 li:nth-child(3n),
    .list_number11 li:nth-child(3n),
    .list_number12 li:nth-child(3n) {
        margin-right: 0;
    }
}

/* ---------------------------
 * category_detial
/* ---------------------------*/

.grid-wrapper {
    width: 100%;
}

.grid-wrapper.fixed {
    width: 100% !important;
}

ul.itemLists li {
    border-top: 4px solid;
    width: 100%;
}

.itemInfo_inner {
    padding: 0.75em 0.5em;
    clear: both;
}

p.itemCatch {
    font-size: 1.4rem;
    font-weight: bold;
    padding: 0.5em 0.75em;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    background-color: #f5f5f5;
}

.itemInfo_left {
    float: left;
    width: 35%;
    padding-right: 0.5em;
}

.itemPhoto img {
    width: 100%;
}

p.itemPoint {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    color: #fff;
    padding: 0.15em 0.15em 0;
}

p.itemEvaluation {
    font-size: 1.2rem;
    text-align: center;
    line-height: 1;
    margin-top: 0.5em;
}

p.itemEvaluation img.ratingStar {
    vertical-align: top;
}

.itemInfo_right {
    overflow: hidden;
}

p.itemInfo_rightInner {
    font-size: 1.4rem;
    line-height: 1.6;
}

.itemInfo_detail {
    margin-top: 0.75em;
    text-align: right;
}

p.itemPrice {
    font-size: 1.2rem;
    margin-top: 0.15em;
}

p.itemDiscount {
    border: 1px solid #eb0a00;
    color: #eb0a00;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 0.1em 0.25em;
    display: inline-block;
}

p.itemSalePrice {
    font-size: 1.6rem;
    color: #eb0a00;
    font-weight: bold;
    padding-top: 0.5em;
}

p.itemExpirationDate {
    font-size: 1.2rem;
    font-weight: bold;
}

@media screen and (min-width: 769px) {
    /*769px以上のデバイスでは以下を読み込む*/
    .grid {
        padding: 0 50px;
        margin-bottom: 0px;
    }

    .grid-wrapper {
        margin: 0 auto;
    }

    ul.itemLists li {
        font-size: 1em;
        width: 12em;
        vertical-align: top;
        margin: 0 1em 1.5em;
        position: relative;
        display: inline-block;
        min-height: 385px;
    }

    .itemInfo_inner {
        padding: 0;
    }

    .itemInfo_left {
        float: none;
        width: auto;
        padding-right: 0;
    }

    .itemPhoto img {
        height: auto;
        margin-bottom: 0;
    }

    p.itemPoint {
        font-size: 1.4rem;
        padding: 0.3em 0;
        position: absolute;
        top: -37px;
        width: 191px;
        border: 1px solid #fff;
        border-radius: 4px;
    }

    p.itemPoint:after {
        content: "▼";
        position: absolute;
        bottom: -10px;
        right: 0;
        left: 0;
        font-size: 12px;
    }

    p.itemPoint.bgColorRed:after {
        color: #eb0a00;
    }

    p.itemPoint.bgColorOrange:after {
        color: #ff8d00;
    }

    p.itemPoint.bgColorBlue:after {
        color: #2700ff;
    }

    p.itemPoint.bgColorGreen:after {
        color: #00de1b;
    }

    p.itemPoint.bgColorAqua:after {
        color: #00cbec;
    }

    p.itemPoint.bgColorPink:after {
        color: #ff008e;
    }

    p.itemPoint.bgColorPurple {
        color: #e300ff;
    }

    p.itemEvaluation img.ratingStar {
        vertical-align: baseline;
        margin-bottom: 0;
    }

    .itemInfo_right {
        margin-top: 5px;
    }

    p.itemInfo_rightInner {
        line-height: 1;
    }

    a.itemName {
        font-size: 1.4rem;
    }

    .itemInfo_detail {
        margin-top: 0.45em;
    }

    p.itemPrice {
        font-size: 1.4rem;
        margin-top: 0.15em;
    }
}

/* ---------------------------
 * icon flag
/* ---------------------------*/

.icon {
    color: #fff;
    font-size: 10px;
    padding: 0 4px;
    font-weight: bold;
    margin-bottom: 2px;
    display: inline-block;
    text-align: center;
}

.icon.icon-flag01 {
    /*入荷待ち*/
    background-color: #ff7200;
}

.icon.icon-flag03 {
    /*入荷未定*/
    background-color: #2700ff;
}

.icon.icon-flag04 {
    /*取り扱い終了*/
    background-color: #eb0000;
}

.icon.icon-flag05 {
    /*入荷次第発送*/
    background-color: #1bb53c;
}

.icon.icon-flag06 {
    /*取扱廃止*/
    background-color: #909090;
}

/* ---------------------------
 * Speech balloon
/* ---------------------------*/

.bgColorRed {
    background: #eb0a00;
}

.bgColorOrange {
    background: #ff8d00;
}

.bgColorBlue {
    background: #2700ff;
}

.bgColorGreen {
    background: #00de1b;
}

.bgColorAqua {
    background: #00cbec;
}

.bgColorPink {
    background: #ff008e;
}

.bgColorPurple {
    background: #e300ff;
}

/* ====================================
 05:other
/* ====================================*/

@media screen and (min-width: 769px) {
    /*769px以上のデバイスでは以下を読み込む*/
    #topHeader .headMenuList > li > a,
    #topHeader .headMenuList li dt {
        padding: 8px 15px 8px 9px;
    }

    #breadcrumbs {
        line-height: 160%;
        background: url(/img/home.gif) no-repeat left top;
        font-size: 12px;
    }
}

/* ---------------------------
 * goToHead(追従ボタン)
/* ---------------------------*/

#goToHead {
    display: none;
    position: fixed;
    bottom: 6em;
    right: 1em;
    -webkit-transition: all 0.1s linear;
    transition: all 0.1s linear;
    z-index: 1;
    text-align: center;
}

#goToHead a {
    color: #fff;
    text-decoration: none;
    background-color: #85878f;
    padding: 6px 7px 9px;
    border-radius: 100px;
    display: block;
    line-height: 1;
    font-size: 1.2rem;
    border: 4px solid #dde1ee;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.25);
}

.ui-footer .ui-title a {
    font-size: 12px;
}

@media screen and (min-width: 769px) {
    /*769px以上のデバイスでは以下を読み込む*/
    #footer .footerBottom,
    #footer .footerBottom a {
        font-size: 12px;
        color: #fff;
    }

    #goToHead {
        bottom: 26em;
    }
}

/* ====================================
 06:end
/* ====================================*/

/* ---------------------------
 * セール終了（全体）
/* ---------------------------*/
#flashMessage,
#authMessage {
    background-color: #ea2a2a;
    margin: 10px;
    font-size: 1.6rem;
    font-weight: normal;
    border-radius: 4px;
    color: #fff;
}

#clearance_sale.js-end .text_thanks {
    display: block;
    padding: 0 0.75em;
}

#clearance_sale.js-end .text_thanks p {
    border: 4px solid #db0000;
    color: #db0000;
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.6;
    padding: 0.75em;
    text-align: center;
}

@media screen and (min-width: 769px) {
    /*769px以上のデバイスでは以下を読み込む*/
    #flashMessage,
    #authMessage {
        width: 980px;
        margin: 0 auto 20px;
    }

    #clearance_sale.js-end .text_thanks {
        max-width: 980px;
        margin: 20px auto 30px;
        padding: 0;
    }

    #clearance_sale.js-end .text_thanks p {
        border: 5px solid #db0000;
        padding: 1em 0.75em;
        font-size: 2rem;
    }
    #clearance_sale.js-end .text_thanks p br {
        display: none;
    }
}

@media screen and (max-width: 320px) {
    /*320px以下のデバイスでは以下を読み込む*/
    #clearance_sale.js-end .text_thanks p {
        font-size: 1.2rem;
    }
}

/* ---------------------------
 * セール終了（商品単体）
/* ---------------------------*/

ul.itemLists li.js-borderColor.js-overItems {
    border-color: #555;
}

ul.itemLists li.js-borderColor.js-overItems a {
    color: #999;
    text-decoration: none !important;
}

ul.itemLists li.js-overItems .itemInfo_detail {
    margin-top: 0;
}

ul.itemLists li.js-overItems .itemPhoto {
    position: relative;
    width: 100%;
    text-align: center;
}

ul.itemLists li.js-overItems .itemPhoto div {
    background-color: #000;
}

ul.itemLists li.js-overItems .itemPhoto:before {
    content: "セール終了";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 100%;
    color: #eb0000;
    font-size: 1.8rem;
    font-weight: bold;
    text-shadow: 1px 1px 3px #000;
}

ul.itemLists li.js-overItems .itemPhoto div img {
    width: 100%;
    opacity: 0.3;
}

ul.itemLists li.js-overItems p.itemDiscount,
ul.itemLists li.js-overItems p.itemExpirationDate,
ul.itemLists li.js-overItems p.itemPrice {
    display: none;
}

ul.itemLists li.js-overItems p.itemPrice strike {
    text-decoration: none;
}

@media screen and (min-width: 769px) {
    /*769px以上のデバイスでは以下を読み込む*/
    ul.itemLists li.js-overItems .itemPhoto:before {
        width: 68%;
        height: 30%;
        border-top: 3px solid;
        border-bottom: 3px solid;
        font-size: 2rem;
        line-height: 2;
    }
}

@media screen and (max-width: 320px) {
    /*320px以下のデバイスでは以下を読み込む*/
    ul.itemLists li.js-overItems .itemPhoto:before {
        font-size: 1.6rem;
    }

    ul.itemLists li.js-overItems p.itemSalePrice {
        font-size: 1.4rem;
    }
}
