html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    border: 0;
    font-size: 100%;
    margin: 0;
    padding: 0;
    vertical-align: baseline;
}
html {
    line-height: 1;
}
ol,
ul {
    list-style: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
caption,
th,
td {
    font-weight: normal;
    text-align: left;
    vertical-align: middle;
}
q,
blockquote {
    quotes: none;
}
q:before,
q:after,
blockquote:before,
blockquote:after {
    content: "";
    content: none;
}
a img {
    border: none;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary {
    display: block;
}

/* common */
.truncate {
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

* {
    /*-webkit-box-sizing: border-box;*/
    /*-moz-box-sizing: border-box;*/
    /*box-sizing: border-box;*/
    -webkit-font-smoothing: antialiased;
}

html {
    height: 100%;
    width: 100%;
}

body {
    background-color: #fffaf0;
    font-family: Arial, Helvetica, "ヒラギノ角ゴ Pro W3",
        "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", sans-serif;
}

a {
    color: #000;
    display: block;
    -webkit-font-smoothing: antialiased;
    text-decoration: none;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
a:hover {
    opacity: 0.6;
}

li.content,
#terms {
    height: 300px;
    margin: 0 auto 80px;
    width: 840px;
    *zoom: 1;
}

/* header
-------------------------------------------------------------- */
.header_container {
    background-color: #fff;
    padding: 100px 0 60px;
    width: 100%;
}

.header_container #header {
    background-color: #fff;
    margin: 0 auto;
    text-align: center;
    width: 960px;
}

.header_container #header nav {
    margin: 80px auto 0;
    overflow: hidden;
    text-align: center;
}

.header_container #header nav a {
    font-size: 13px;
}

a#logo {
    display: block;
}

a#logo img {
    margin: 0 auto;
    max-width: 980px;
}

h1 a#logo {
    font-size: 37px;
    width: auto;
    word-wrap: break-word;
}

#i18 {
    left: 10px;
    position: fixed;
    top: 10px;
}

/* navigation
-------------------------------------------------------------- */
#navigation {
    margin: 30px auto 100px;
    width: 180px;
}

.nav-link {
    color: #333;
    float: left;
    -webkit-font-smoothing: antialiased;
    margin-right: 10px;
    text-decoration: none;
}
.nav-link:last-child {
    margin-right: 0;
}

/* item_list
-------------------------------------------------------------- */

ul#item_list {
    padding-top: 90px;
}

/* item display
-------------------------------------------------------------- */
.item-container {
    float: left;
    height: 300px;
    margin-bottom: 80px;
    position: relative;
    width: 100%;
}

.item-container a img {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}

@-webkit-keyframes hoverSpread {
    0% {
        -webkit-transform: scale(1);
    }
    100% {
        -webkit-transform: scale(1.05);
    }
}

.item-container a:hover {
    opacity: 1;
}

.item-container a img:hover {
    -webkit-animation-name: hoverSpread;
    -moz-animation-name: hoverSpread;
    -o-animation-name: hoverSpread;
    opacity: 1;
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.item-container a.item-img {
    display: inline-block;
    line-height: 300px;
    text-align: center;
    width: 300px;
}

.item-container a.item-img img {
    max-height: 300px;
    max-width: 300px;
    vertical-align: middle;
}

.item-detail {
    float: right;
    -webkit-font-smoothing: antialiased;
    width: 460px;
}
.item-detail .item-detail__link:hover {
    opacity: 1;
}

.item-detail .item-detail__title {
    color: #4d4d4d;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 25px;
    overflow: hidden;
    word-wrap: break-word;
}
.item-detail .item-detail__price {
    color: #4d4d4d;
    display: inline-block;
    font-size: 14px;
    margin-bottom: 25px;
    text-align: left;
}
.item-detail.item-detailSoldout .item-detail__price,
.item-detail.item-detailSoldout .item-detail__discountPrice {
    text-decoration: line-through;
}
.item-detail .item-detail__soldout {
    color: #ff7c8e;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    margin-left: 10px;
    vertical-align: middle;
}
.item-detail .item-detail__comingSoon {
    color: #11beae;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    margin-left: 10px;
    vertical-align: middle;
}
.item-detail .item-detail__description {
    -webkit-box-orient: vertical;
    clear: both;
    color: #4d4d4d;
    display: -webkit-box;
    font-size: 12px;
    height: 160px;
    -webkit-line-clamp: 8;
    line-height: 20px;
    margin: 10px 0 0;
    overflow: hidden;
    word-wrap: break-word;
}
.item-detail .item-detail__discountPrice {
    display: inline-block;
}
.item-detail .item-detail__discountPriceRatio {
    border: 1px solid #e75c5c;
    color: #e75c5c;
    display: inline-block;
    font-size: 12px;
    font-weight: bold;
    line-height: 18px;
    margin: 0 10px 0 0;
    padding: 0 5px;
}
.item-detail .item-detail__discountPriceCalcPrice {
    color: #e75c5c;
    font-size: 14px;
    font-weight: bold;
    line-height: 20px;
    margin: 0;
    white-space: nowrap;
}

.item-detail .item-detail__button {
    border: none;
    bottom: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #000;
    cursor: pointer;
    display: block;
    font-size: 12px;
    -webkit-font-smoothing: antialiased;
    height: 25px;
    letter-spacing: 2px;
    padding: 7px 0;
    position: absolute;
    right: 0;
    text-align: center;
    text-decoration: none;
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    width: 460px;
}
.item-detail .item-detail__button:hover {
    opacity: 0.8;
}

.item-detail .item-detail__button--buy {
    background-color: #fcee51;
}

.item-detail .item-detail__button--soldout {
    background-color: #ccc;
}

.item-thumb {
    border-bottom: 1px solid #eee;
    border-right: 1px solid #eee;
    cursor: pointer;
    float: left;
    height: 300px;
    padding: 10px;
    position: relative;
    text-align: center;
    -webkit-transition-duration: 0.1s;
    -moz-transition-duration: 0.1s;
    -o-transition-duration: 0.1s;
    transition-duration: 0.1s;
    -webkit-transition-property: background;
    -moz-transition-property: background;
    -o-transition-property: background;
    transition-property: background;
    -webkit-transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    width: 289px;
}
.item-thumb:hover {
    background-color: #e41f11;
}
.item-thumb img {
    height: 280px;
    max-width: 289px !important;
    width: auto;
}
.item-thumb:hover .item-meta {
    background: #e41f11;
    color: #fff;
    visibility: visible;
}
.item-thumb .item-meta {
    cursor: pointer;
    height: 80px;
    margin-left: -10px;
    margin-top: 105px;
    overflow: hidden;
    position: absolute;
    top: 0;
    -webkit-transition-duration: 0.1s;
    -moz-transition-duration: 0.1s;
    -o-transition-duration: 0.1s;
    transition-duration: 0.1s;
    -webkit-transition-property: background;
    -moz-transition-property: background;
    -o-transition-property: background;
    transition-property: background;
    -webkit-transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    visibility: hidden;
    width: 100%;
    z-index: 5;
    *zoom: 1;
}
.item-thumb .item-meta .item-name,
.item-thumb .item-meta .item-price {
    font-size: 15px;
    line-height: 30px;
    position: relative;
    text-align: center;
}
.item-thumb .item-meta .item-name {
    font-weight: bold;
    margin-top: 10px;
}

/* item page
-------------------------------------------------------------- */
.item-page {
    margin: 0 auto;
    position: relative;
    width: 980px;
}

.item-images-container {
    float: left;
    margin-bottom: 100px;
    width: 50%;
}
.item-images-container .item-big-img {
    height: auto;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    width: 400px;
}
.item-images-container .item-big-img img {
    border: 1px solid #eee;
    width: 100%;
}
.item-images-container .item-small-img {
    height: 50px;
    margin: 10px auto;
    overflow: hidden;
    width: 400px;
}
.item-images-container .item-small-img ul li {
    float: left;
    height: 50px;
    margin-right: 10px;
    width: 50px;
}
.item-images-container .item-small-img ul li img {
    border: 1px solid #eee;
    height: 50px;
    width: 50px;
}

.item-detail-container {
    float: right;
    width: 50%;
}

.item-page-detail {
    position: relative;
}
.item-page-detail h2 {
    font-size: 2em;
    line-height: 2em;
}
.item-page-detail p {
    font-size: 1em;
    line-height: 1.5em;
    margin-bottom: 1em;
}

.price {
    font-size: 1.5em;
    font-size: #b6b6b6;
    line-height: 2em;
}

.notice p {
    color: #b6b6b6;
    font-size: 0.8em;
    line-height: 1em;
    margin-bottom: 0;
    margin-top: 10px;
}

.buy-action .buy-button {
    bottom: 0;
}

/* about
-------------------------------------------------------------- */

.main {
    background: #fff;
    height: auto;
    margin: 0 auto;
    width: 960px;
}

.main #about {
    color: #666;
    margin: 90px auto 95px;
    padding: 140px 0 110px;
    width: 650px;
}

.main #about h2 {
    color: #000;
    font-family: "Helvetica Neue", sans-serif;
    font-size: 30px;
    letter-spacing: 3px;
    margin-bottom: 45px;
    text-align: left;
    text-transform: capitalize;
}

.main #about h3 {
    font-size: 20px;
}

.main #about p {
    font-size: 14px;
    line-height: 2em;
}

.main #about .social {
    margin: 40px 0 0;
    text-align: center;
    width: 100%;
}
.main #about .social > ul {
    display: inline-block;
}
.main #about .social ul li {
    float: left;
    margin-right: 15px;
}
.main #about .social ul li:last-child {
    margin-right: 0;
}

.shop-img {
    height: 300px;
    overflow: hidden;
    text-align: center;
    *zoom: 1;
}
.shop-img img {
    width: 100%;
}

.shop-info-detail {
    float: right;
    -webkit-font-smoothing: antialiased;
    margin-top: 50px;
    overflow: hidden;
    text-align: left;
    width: 500px;
    *zoom: 1;
}
.shop-info-detail h2 {
    font-size: 20px;
    font-weight: bold;
    line-height: 25px;
    margin-bottom: 20px;
}
.shop-info-detail p {
    line-height: 20px;
    margin-bottom: 20px;
}

.shop-links {
    border-top: 1px solid #ddd;
    padding: 10px;
}

.web,
.email,
.address,
.shop-address {
    float: left;
    font-size: 1em;
    line-height: 1.5em;
    margin-right: 10px;
}

/* inquiry: お問い合わせ
-------------------------------------------------------------- */

.main .inquirySection {
    color: #666;
    margin: 90px auto 95px;
    padding: 140px 0 110px;
    width: 650px;
}
.inquirySection h1 {
    color: #1a1a1a;
    font-size: 30px;
    letter-spacing: 3px;
    line-height: 26px;
    margin: 0 0 10px;
    text-align: left;
    text-transform: capitalize;
}
.inquirySection p {
    color: #000;
    font-family: "小塚ゴシック Pr6N", sans-serif;
    font-size: 13px;
    line-height: 13px;
    text-align: left;
}
.inquirySection form {
    margin-top: 30px;
}
.inquirySection dl {
    text-align: left;
    width: 100%;
}
.inquirySection dl dt {
    color: #000;
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 10px;
}
.inquirySection dl dt span {
    color: #fb7c8a;
    font-size: 11px;
    line-height: 11px;
    margin-left: 5px;
    vertical-align: baseline;
}
.inquirySection dl dd {
    margin-bottom: 20px;
}
.inquirySection dl dd input {
    border: 1px solid #c4c4c4;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    padding: 10px;
    width: 100%;
}
.inquirySection dl dd textarea {
    border: 1px solid #c4c4c4;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    height: 135px;
    padding: 10px;
    width: 100%;
}
@-moz-document url-prefix() {
    .inquirySection dl dd textarea {
        font-size: 11px;
    }
}
.inquirySection .control-panel input#buttonLeave {
    background-color: #fcee51;
    border: none;
    color: #000;
    display: block;
    font-size: 12px;
    -webkit-font-smoothing: antialiased;
    letter-spacing: 3px;
    margin: 55px auto 0;
    padding: 14px 0;
    text-align: center;
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    width: 410px;
}
.inquirySection .control-panel input#buttonLeave:hover {
    cursor: pointer;
    -ms-filter: "alpha(opacity=70)";
    filter: alpha(opacity=70);
    -moz-opacity: 0.7;
    -khtml-opacity: 0.7;
    opacity: 0.7;
}
#inquiryConfirmSection p {
    color: #000;
    font-size: 13px;
    line-height: 13px;
}
#inquiryConfirmSection dd {
    font-size: 12px;
    padding-left: 15px;
}
#inquiryCompleteSection p {
    line-height: 1.4em;
    margin: 30px 0 0;
}
#inquiryCompleteSection a {
    background-color: #fcee51;
    color: #000;
    display: block;
    font-size: 12px;
    -webkit-font-smoothing: antialiased;
    letter-spacing: 5px;
    margin: 55px auto 0;
    padding: 14px 0;
    text-align: center;
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    width: 410px;
}
#inquiryCompleteSection a:hover {
    -ms-filter: "alpha(opacity=70)";
    filter: alpha(opacity=70);
    -moz-opacity: 0.7;
    -khtml-opacity: 0.7;
    opacity: 0.7;
}

.boxRight {
    float: right !important;
}

/* Terms
-------------------------------------------------------------- */
.terms-heading {
    border-bottom: 1px solid #eee;
    font-size: 1.3em;
    line-height: 1em;
    margin-bottom: 1em;
    padding-bottom: 1em;
}

.terms {
    width: 100%;
}
.terms h2 {
    font-size: 1em;
    margin-bottom: 0.5em;
}
.terms h3 {
    margin-bottom: 0.5em;
}
.terms p {
    font-size: 0.9em;
    line-height: 1.5em;
    margin-bottom: 1em;
    padding-left: 20px;
}
.terms ul {
    margin: 30px 0 50px;
    padding-left: 30px;
}
.terms ul li {
    font-size: 0.9em;
}

/* footer
-------------------------------------------------------------- */
.footer_container {
    background-color: #fff;
    width: 100%;
}
.footer_container footer {
    bottom: 0;
    margin: 0 auto;
    padding: 30px 0 35px;
    position: relative;
    text-align: center;
    width: 960px;
    *zoom: 1;
}

.footer_container footer nav {
    float: left;
    margin: 0;
    overflow: hidden;
    width: 330px;
}

.footer_container footer #social_button {
    float: right;
    margin-top: -3px;
    text-align: left;
    width: 225px;
}
.nav-footer {
    margin-top: 50px;
    text-align: center;
}
.nav-footer a {
    color: #bbb;
    font-size: 12px;
    -webkit-font-smoothing: antialiased;
    margin-left: 20px;
    text-decoration: none;
}

.footer-terms {
    float: left;
}
.footer-terms li {
    float: left;
    margin-right: 10px;
}
.footer-terms li:last-child {
    margin-right: 0;
}
.footer-terms li a {
    color: #999;
    font-size: 12px;
}

.copy {
    color: #ccc;
    font-size: 12px;
    line-height: 25px;
    position: absolute;
    right: 0;
    text-align: right;
}

.template #category-menu {
    display: block;
}
.template #category-menu span {
    cursor: pointer;
}
.template #category-menu .category-list {
    display: none;
}
.template #category-menu:hover .category-list {
    display: block;
    padding: 10px 0 0;
    position: absolute;
    z-index: 9999;
}
.template #category-menu .category-list ul {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgb(100, 100, 100);
    cursor: pointer;
    margin: 0;
    min-width: 100px;
    padding: 10px;
}
.template #category-menu .category-list ul li {
    border: none;
    float: none;
    height: auto;
    line-height: 26px;
    margin: 0;
    padding: 0;
    position: relative;
    text-align: left;
    width: 100%;
}
.template #category-menu .category-list ul li a {
    display: inline;
    font-size: 12px;
    font-weight: normal;
    letter-spacing: 1px;
    line-height: 18px;
}
.template #category-menu .category-list ul li a:hover {
    border-bottom: none;
    text-decoration: underline;
}

.template #category-menu span {
    font-size: 13px;
    -webkit-font-smoothing: antialiased;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.template #category-menu span:hover {
    color: #8f8f8f;
}

/* 中カテゴリを表示 */
.template
#category-menu
.appsItemCategoryTag_child
.appsItemCategoryTag_lowerchild {
    display: none;
    left: 99%;
    position: absolute;
    top: 0;
    z-index: -1;
}

.template #category-menu .appsItemCategoryTag_lowerchild:hover,
.template
#category-menu
.appsItemCategoryTag_child:hover
.appsItemCategoryTag_lowerchild {
    display: block;
}

/* .categoryTitle01
-------------------------------------------------------------- */
.tempTop .categoryTitle01 {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.1;
    margin: 50px 0 0;
    text-align: center;
}

/* .childCategoryList01
-------------------------------------------------------------- */
.childCategoryList01 {
    letter-spacing: -0.4em;
    margin: 20px auto 0;
    overflow: hidden;
    text-align: center;
    width: 960px;
}

.childCategoryList01_child {
    display: inline-block;
    font-size: 14px;
    letter-spacing: normal;
    margin: 0 15px;
    padding: 7px 0;
}

.childCategoryList01_link:hover {
    text-decoration: underline;
}

/* common
-------------------------------------------------------------- */

/* ソーシャルボタン */
#social_button {
    float: left;
    margin-top: -3px;
    width: 225px;
}
.fb-like,
.fb_iframe_widget {
    vertical-align: top;
}

#twitter-widget-0 {
    width: 110px !important;
}

#twitter-widget-1 {
    width: 110px !important;
}

#second_column #widget {
    margin: 0 0 15px;
    text-align: left;
}
#second_column #widget a {
    font-weight: bold;
    line-height: 22px;
}

/* common */

nav ul.menu {
    display: inline-block;
}

.menu li {
    border-right: 1px solid #000;
    color: black;
    float: left;
    height: 13px;
    letter-spacing: 1px;
    text-align: center;
    width: 100px;
}

.menu li:first-child {
    border-left: 1px solid #000;
}
nav ul.menu li #category-menu {
    height: 13px;
    margin-top: -2.5px;
}

nav ul.menu li #category-menu #category-list {
    padding: 20px 0 0;
}
nav ul.menu li #category-menu .category-list ul {
    background-color: #f2f2f2;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
}

nav ul.menu li #category-menu .category-list ul li {
    font-family: "ヒラギノ角ゴ Pro", sans-serif;
}
nav ul.menu li #category-menu .category-list ul li:hover {
    background-color: #b3b3b3;
    opacity: 1;
}
nav ul.menu li #category-menu .category-list ul a {
    border: 1px solid #e6e6e6;
    border-bottom: none;
    color: #4d4d4d;
    display: block;
    font-size: 12px;
    height: 12px;
    line-height: 1;
    max-width: 250px;
    /* ▼1行制限 */
    overflow: hidden;
    padding: 10px 15px;
    text-overflow: ellipsis;
    white-space: nowrap;
    /* ▲1行制限 */
}
nav ul.menu li #category-menu .category-list ul li:last-child a {
    border-bottom: 1px solid #e6e6e6;
}
nav ul.menu li #category-menu .category-list ul a:hover {
    color: #4d4d4d;
    opacity: 1;
    text-decoration: none;
}

/* mainFooter */
#mainFooter {
}
#mainFooter a {
    color: #999;
    font-size: 12px;
}
#mainFooter ul li {
    float: left;
    line-height: 30px;
    margin: 0 30px 0 0;
}
#mainFooter ul li:last-child {
    margin: 0;
}
#mainFooter .socialBtnList {
}
#mainFooter .sns {
    float: left;
}
#mainFooter .sns.fb {
    float: right;
    margin: 0;
}
#mainFooter .sns.tw {
    float: left;
    margin: 9px 0 0;
}

/* Pinned Blog
-------------------------------------------------------------- */
.pinnedBlog {
    margin: 50px auto 0;
    width: 840px;
}
.pinnedBlog .pinnedBlog_title {
    font-size: 14px;
    text-align: center;
}
.pinnedBlog .pinnedBlog_title::before {
    content: "\e919";
    font-family: "shopicon";
    padding: 0 5px 0 0;
}
.pinnedBlog .pinnedBlog_title a {
    color: inherit;
    display: inline;
}
.publish_date.blog_pinned::before {
    content: "\e929";
    font-family: "shopicon";
    padding: 0 2px 0 0;
}

/* body.tempTop
-------------------------------------------------------------- */

/* body.tempDetail
-------------------------------------------------------------- */
#item_page_wrap {
    background-color: #fff;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 90px auto 65px;
    padding: 60px;
    width: 960px;
    word-wrap: break-word;
}

#item_page_wrap #first_column {
    display: inline-block;
    margin-right: 60px;
    text-align: left;
    vertical-align: top;
    width: 400px;
}

#item_page_wrap #second_column {
    display: inline-block;
    font-family: "ヒラギノ角ゴ Pro", sans-serif;
    text-align: left;
    width: 370px;
}

#item_page_wrap .item_title {
    color: #4d4d4d;
    font-size: 27px;
    font-weight: bold;
    line-height: 1.5em;
    margin-bottom: 35px;
    text-align: left;
}

#item_page_wrap .item_priceArea {
    margin: 0 0 25px;
}

#item_page_wrap .item_priceArea.item_priceArea--soldOut .itemPrice,
#item_page_wrap .item_priceArea.item_priceArea--soldOut .discountPriceCalcPrice {
    text-decoration: line-through;
}

#item_page_wrap .itemPrice {
    display: inline-block;
    font-size: 18px;
    margin-right: 10px;
    text-align: left;
}
#item_page_wrap .discountPriceDefault {
    color: #666;
    display: inline-block;
    font-size: 16px;
    line-height: 20px;
    text-decoration: line-through;
    vertical-align: top;
}
#item_page_wrap .discountPriceRatio {
    border: 1px solid #e75c5c;
    color: #e75c5c;
    display: inline-block;
    font-size: 12px;
    font-weight: bold;
    line-height: 18px;
    margin-left: 10px;
    padding: 0 5px;
    vertical-align: top;
}
#item_page_wrap .discountPriceCalcPrice {
    display: inline-block;
    line-height: 1.3;
    margin-right: 10px;
    padding: 10px 0 0;
}
#item_page_wrap .discountPriceCalcPrice__text {
    color: #e75c5c;
    font-size: 20px;
    font-weight: bold;
}
#item_page_wrap .soldout {
    color: #ff7c8e;
    display: inline-block;
    font-size: 15px;
    font-weight: bold;
    margin: 2px 0 0;
}
#item_page_wrap .comingSoon {
    color: #11beae;
    font-size: 15px;
    font-weight: bold;
    margin: 0 0 20px;
}

#item_page_wrap #itemAttention {
    clear: both;
    color: #b6b6b6;
    font-size: 11px;
    line-height: 1em;
    margin-bottom: 35px;
    text-align: left;
}
#item_page_wrap #itemAttention .attention {
    line-height: 1.4;
    margin-bottom: 5px;
}
#item_page_wrap #itemAttention .attention.deliveryShortestDay {
    border: 1px solid #57bbae;
    color: #57bbae;
    display: inline-block;
    font-size: 11px;
    font-weight: bold;
    margin-bottom: 25px;
    padding: 5px 10px;
}

#item_page_wrap #itemAttention .attention.free {
    font-weight: bold;
}
#item_page_wrap #itemAttention .attention.free .free__text {
    color: #57bbae;
    font-weight: bold;
}
#item_page_wrap #itemAttention .attention.salesPeriod {
}
#item_page_wrap #itemAttention .attention.salesPeriod.salesPeriod--term {
    background: #ceefeb;
    border: 1px solid #11beae;
    color: #11beae;
    font-size: 13px;
    font-weight: bold;
    line-height: 1.7;
    margin-bottom: 36px;
    padding: 10px 0 10px 14px;
}
#item_page_wrap #itemAttention .attention.salesPeriod.salesPeriod--willStart {
    background: #ceefeb;
    border: 1px solid #11beae;
    color: #11beae;
    font-size: 13px;
    font-weight: bold;
    line-height: 1.7;
    margin-bottom: 36px;
    padding: 10px 0 10px 14px;
    text-align: center;
}
#item_page_wrap #itemAttention .attention.salesPeriod.salesPeriod--available {
}
#item_page_wrap #itemAttention .attention.salesPeriod.salesPeriod--willEnd {
}
#item_page_wrap #itemAttention .attention.salesPeriod.salesPeriod--finish {
    border: 1px solid #999;
    color: #999;
    font-size: 13px;
    font-weight: bold;
    line-height: 1.7;
    margin-bottom: 36px;
    padding: 10px 0 10px 14px;
    text-align: center;
}
#item_page_wrap #item_detail {
    font-size: 14px;
    line-height: 1.5em;
    margin-bottom: 90px;
    text-align: center;
}
#item_page_wrap #item_detail p {
    text-align: left;
}
#item_page_wrap #purchase_form #itemSelect {
    margin: 10px 0 40px;
    text-align: left;
    text-overflow: ellipsis;
}

#item_page_wrap #purchase_form #itemSelect label {
    font-size: 14px;
    margin-right: 20px;
}

#item_page_wrap #purchase_form #itemSelect select {
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-wrap: normal;
}

#item_page_wrap #purchase_form #variationSelectWrap {
    margin-bottom: 15px;
}
#item_page_wrap #purchase_form #buy_button {
    text-align: center;
}

#item_page_wrap #purchase_form .purchaseButton .purchaseButton__btn {
    background-color: #fcee51;
    border: none;
    color: #000;
    cursor: pointer;
    display: block;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    height: 48px;
    letter-spacing: 2px;
    line-height: 48px;
    margin-bottom: 35px;
    text-align: center;
    text-decoration: none;
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    width: 100%;
}
#item_page_wrap #purchase_form .purchaseButton .purchaseButton__btn:hover {
    opacity: 0.6;
}
#item_page_wrap
#purchase_form
.purchaseButton
.purchaseButton__btn--comingSoonStay:disabled {
    background: #d6d6d6;
    color: #fff;
    cursor: not-allowed;
}
#item_page_wrap
#purchase_form
.purchaseButton
.purchaseButton__btn--comingSoonStay:disabled:hover {
    opacity: 1;
}

/*
 *#social
 */
#item_page_wrap #social {
    margin: 20px 0 0;
    margin-top: -5px;
}
#item_page_wrap #embedded_tag {
    text-align: center;
}
#item_page_wrap #embedded_tag p {
    color: #b6b6b6;
    font-size: 0.8em;
}
#item_page_wrap #embedded_tag textarea {
    width: 80%;
}

/* jquery.bxslider */
#item_page_wrap .bxslider {
}
#item_page_wrap .bxslider .img_box {
    height: 400px;
    line-height: 400px;
    text-align: center;
    vertical-align: middle;
    width: 400px;
}
#item_page_wrap .bxslider .img_box img {
    max-height: 400px;
    max-width: 400px;
    vertical-align: middle;
}
#item_page_wrap #bx-pager {
    margin: 20px -10px 0 0;
    overflow: hidden;
    width: 410px;
}
#item_page_wrap #bx-pager a {
    float: left;
    margin: 0 12px 10px 0;
    /*border: 1px solid #E4E4E4;*/
    max-height: 70px;
    max-width: 70px;
}
#item_page_wrap #bx-pager .small_img_box {
    cursor: pointer;
    height: 70px;
    line-height: 70px;
    text-align: center;
    vertical-align: middle;
    width: 70px;
}
#item_page_wrap #bx-pager .small_img_box img {
    max-height: 70px;
    max-width: 70px;
    vertical-align: middle;
}

#reportMessage {
    background-color: #dff0d8;
    border-color: #d6e9c6;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    color: #468847;
    font-size: 14px;
    margin: 20px;
    padding: 14px;
}

#reportBtn {
    text-decoration: none;
}

#reportBtn a {
    color: #979797;
    cursor: pointer;
    display: inline-block;
    font-size: 12px;
    line-height: 20px;
    margin: -2px 0 0 10px;
    vertical-align: middle;
}
#reportBtn a:hover {
    opacity: 1;
    text-decoration: underline;
}

/*******************************************************************/
/*******************************************************************/
/*******************************************************************/
/*******************************************************************/
/*******************************************************************/

/*====================================================================
 common
====================================================================*/

section.tmpBox {
    background-color: #fff;
    color: #333;
    line-height: 1.4em;
    margin: 70px auto;
    padding: 50px 0;
    text-align: center;
    width: 960px;
}

/* カスタムデザインのデフォルト色 */
.mainHeaderNavColor {
    color: #000;
}
.template #category-menu .category-list ul a {
    color: #000;
}

/**
 * page: トップページ
 * about: body.topPage
 *************************************/

/**
 * page: shop.ctp
 * about: body.tempTop
 *************************************/

/* 送料詳細 */
#postageInfoLayer p {
    font-size: 11px;
    text-align: left;
}
#postageInfoLayer p a {
    color: #999;
    cursor: pointer;
    display: inline;
    font-size: 11px;
    font-weight: bold;
    margin: 0 3px;
}
#postageInfoLayer p a:hover {
    opacity: 1;
    text-decoration: underline;
}

/*====================================================================
特定商取引・プライバシーポリシー
====================================================================*/
#privacy,
#law {
    margin: 90px auto;
}
#privacy h2,
#law h2 {
    margin: 20px 0 0;
}

/*====================================================================
 jquery
====================================================================*/

/**
 * file: detail_of_item.ctp
 * jquery: jquery.bxslider.js
 *************************************/
/* jquery.bxslider */
.bx-wrapper {
    height: 400px;
    width: 400px;
}

/*====================================================================
 for sp
====================================================================*/
@media screen and (max-width: 480px) {
    /**
 * page: ページ名
 * about: 関連情報
 *************************************/

    /* クラス構成 */
    /* 特定のページに適用するcss */
}
