@charset "utf-8";

/**********************************************************************
AUTHOR          -
CSS構成書:
Last Modified: 2015.06.26 modified by Hiroomi Izumi
***********************************************************************/

/**
 * Table of Contents:
 *
 * 1.0 - Reset
 * 2.0 - Repeatable Patterns
 * 3.0 - Basic Structure
 * 4.0 - Header
 *   4.1 - Site Header
 *   4.2 - Navigation
 * 5.0 - Content
 *   5.1 - Page Formats
 *   5.2 - Page "homepage(Japanese Top-Page)"
 * 6.0 - Sidebar
 *   6.1 - Widgets
 * 7.0 - Footer
 * 8.0 - Media Queries
 * 9.0 - Print
 * ----------------------------------------------------------------------------
 */

/**
 * 1.0 Reset
 *
 * html5doctor.com Reset Stylesheet
 * v1.6.1
 * Last Updated: 2010-09-17
 * Author: Richard Clark - http://richclarkdesign.com 
 * Twitter: @rich_clark
 * https://code.google.com/p/html5resetcss/downloads/list
 * ----------------------------------------------------------------------------
 */

/* HTML5 Doctor CSS Reset */
html#index_monoco, 
body, 
div, 
span, 
object, 
iframe,
h1, 
h2, 
h3, 
h4, 
h5, 
h6, 
/*p, comment out for alertify by Hiroomi Izumi*/
blockquote, 
pre,
abbr, 
address, 
cite, 
code,
del, 
dfn, 
em, 
img, 
ins, 
kbd, 
q, 
samp,
small, 
strong, 
sub, 
sup, 
var, 
b, 
i, 
dl, 
dt, 
dd, 
ol, 
ul, 
li, 
fieldset, 
form, 
label, 
legend, 
table, 
caption, 
tbody, 
tfoot, 
thead, 
tr, 
th, 
td, 
/*article, comment out for alertify by Hiroomi Izumi*/ 
aside, 
canvas, 
details, 
figcaption, 
figure, 
footer, 
header, 
hgroup, 
menu, 
/*nav, comment out for alertify by Hiroomi Izumi*/
/*section, comment out for alertify by Hiroomi Izumi*/
summary, 
time, 
mark, 
audio, 
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;

  /* background:transparent; */
  background-color: transparent;
}
/* alertifyに干渉するのでこちらで文字サイズを初期化 by Hiroomi Izumi */
article {
  font-size: medium;
}

body {
  line-height: 1;
  overflow: hidden;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

/* Set Up */
html {
  overflow-y: scroll; /* firefox　スクロールバー対策 */
}

/* ページ基本設定 */
body {
  color: #333;

  font-size: 14px;
  font-size: 1.4rem; /* 14pt */

  font-size-adjust: none;
  -webkit-text-size-adjust: none;

  z-index: 100;
  background-color: #fff;
}

/*ブラウザ間font-size%統一*/
table {
  font-size: inherit;
  font: 100%;
}

/**
 * 2.0 Repeatable Patterns (code snippet)
 * ----------------------------------------------------------------------------
 */

/* clearfix */
.clearfix:after {
  content: "."; /* 新しい要素を作る */
  display: block; /* ブロックレベル要素に */
  clear: both;
  height: 0;
  visibility: hidden;
}

.clearfix {
  min-height: 1px;
  overflow: hidden;
}

* html.clearfix {
  height: 1px;
  /*\*/ /*/
  height: auto;
  overflow: hidden;
  /**/
}

/* リンク設定:コンテンツ内 */
a:link {
  text-decoration: none;
}
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
a:active {
  text-decoration: none;
}

footer a:link {
  color: #fff;
  text-decoration: none;
}
footer a:visited {
  color: #fff;
  text-decoration: none;
}
footer a:hover {
  color: #918b8b;
  text-decoration: underline;
}
footer a:active {
  color: #918b8b;
  text-decoration: underline;
}

/* web-font */
@font-face {
  font-family: "monotypeModern";
  src: url("monotype-modern-extended.eot"); /* IE9 Compat Modes */
  src: url("monotype-modern-extended.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */ url("monotype-modern-extended.woff") format("woff"), /* Modern Browsers */ url("monotype-modern-extended.ttf") format("truetype"); /* Safari, Android, iOS */
}

/**
 * 3.0 Basic Structure
 * ----------------------------------------------------------------------------
 */

.wrapper {
  width: 100%;
  margin: 0 auto;
  letter-spacing: 0.1em;
}

/**
 * 4.0 Header
 * ----------------------------------------------------------------------------
 */

/**
 * 4.1 Site Header
 * ----------------------------------------------------------------------------
 */

#masthead {
  background-color: #fff;
  width: 100%;
  margin: 0 auto;
  padding: 20px 0 15px 0;
  height: 79px;
  position: fixed;
  top: 0px;
  left: 0;
  z-index: 500;
}

#header-logo {
  width: 138px;
  height: 23px;
  float: left;
  margin: 5px 0 0 20px;
}

#header_inner ul li {
  display: inline-block;
  margin-top: 20px;
}

/*#header_inner ul { width: 153px; height: 28px; float: right; letter-spacing:-.40em; margin-right: 20px;  }
#header_inner ul li { display: inline-block; width: 40px; margin-left: 10px; letter-spacing: normal;  }*/
#header_inner ul li#hiu_001 {
  cursor: pointer; /*width: 31px;*/
}
#header_inner ul li#hiu_002 {
  cursor: pointer; /*width: 32px;*/
}
#header_inner ul li#hiu_003 {
  cursor: pointer; /*width: 60px;*/
}

#header-icon {
  width: 66px;
  height: 33px;
  margin: 0 auto;
}

/*ヘッダーのアイコン類調整 by ajike*/
.search-icon-header {
  width: 20px;
}
@media screen and (min-width: 1080px) {
  .search-icon-header {
    width: 25px;
  }
}
#header_inner .header-shopping {
  width: 150px;
  display: flex;
  position: relative;
  right: 0;
  order: 3;
  justify-content: space-between;
  margin-right: 20px;
  margin-left: 12px;
}
#header_inner .header-shopping li {
  width: 45px;
  height: 45px;
  position: relative;
}
#header_inner .header-shopping li a {
  width: 45px;
  height: 45px;
  position: relative;
}
#header_inner .header-shopping li a img {
  position: relative;
  width: 20px;
  height: 20px;
  display: inline-block;
}
#header_inner .header-shopping li a img + img {
  margin-left: 20px;
}
/*フラッシュメッセージ */
.flash-message--alert {
  height: 50px;
  width: 100vw;
  background: #201c53;
  color: white;
  position: fixed;
  top: 0;
  z-index: 9000;
  font-family: "MidMidSunSun", YuGothic;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.flash-message--level {
  height: 60px;
  width: 100vw;
  background-color: #3e3a39;
  color: white;
  letter-spacing: 5px;
  position: absolute;
  top: 156px;
  z-index: 300;
  font-family: "MidMidSunSun", YuGothic;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.flash-message--level .message-name {
  margin-right: 23px;
}
.flash-message--level div {
  position: relative;
  margin-left: 30px;
  margin-right: 40px;
}
.flash-message--level .message-now-level::before {
  content: "";
  display: block;
  /* background: url("/modules/top/images/icon_header_jewel.svg"); 変数アサインのためテンプレート内に移植 by Hiroomi Izumi */
  width: 21px;
  height: 21px;
  background-repeat: no-repeat;
  position: absolute;
  top: -5px;
  left: -28px;
}
.flash-message--level a {
  color: white;
}
.flash-message--level a .message-confirm {
  font-size: 12px;
  border-bottom: 1px solid white;
  padding-bottom: 4px;
}
@media screen and (max-width: 1212px) {
  .flash-message--level {
    letter-spacing: 2px;
  }
  .flash-message--level .message-name {
    width: 100%;
    text-align: center;
    margin-right: 0;
    display: block;
  }
}
/**
 * 4.2 Navigation
 * ----------------------------------------------------------------------------
 */

#global_navi .categories_menu {
  text-align: center;
  letter-spacing: -0.4em;
  margin-top: 50px;
}

#global_navi .categories_menu .cat_link .count {
  font-size: 12px;
  font-weight: normal;
  margin-left: 5px;
  line-height: 1.5;
}
#global_navi .categories_menu.categories_menu_level_1 > .cat_link {
  display: inline;
  font-size: 15px;
  margin: 0;
}
#global_navi .categories_menu.categories_menu_level_1 > .cat_link + .cat_link {
  margin-left: 84px;
}
#global_navi .categories_menu.categories_menu_level_1 > .cat_link > a {
  display: inline;
  font-size: 15px;
  color: #000;
  padding: 18px 0;
}
#global_navi .categories_menu.categories_menu_level_1 > .cat_link > a > img {
  height: 13px;
}
#global_navi .categories_menu_level_2 {
  position: fixed;
  top: 156px;
  left: 0;
  width: 100%;
  height: 470px;
  background: #fff;
  max-height: 0%;
  overflow-y: scroll;
  z-index: 400;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
}
#global_navi .categories_menu_level_2 .img {
  float: right;
  width: 200px;
}
#global_navi .categories_menu_level_2 > .inner {
  width: 1080px;
  height: 470px;
  position: relative;
  margin: 0 auto;
  padding: 60px 0 20px;
  overflow: hidden;
}
#global_navi .categories_menu_level_2 > .inner > ul {
  width: 300px;
  display: block;
  text-align: left;
  margin-bottom: 50px;
  float: left;
}
#global_navi .categories_menu_level_2 > .inner > .categories_title {
  width: 45px;
  margin-right: 68px;
}
#global_navi .categories_menu_level_2 > .inner > .categories_title__thick {
  width: 100px;
  margin-right: 68px;
}
#global_navi .categories_menu_level_2 > .inner > .categories_contents {
  width: auto;
  margin-right: 2px;
}
#global_navi .categories_menu_level_2 > .inner > .categories_title > li > img {
  display: block;
  width: auto;
  height: 320px;
}
#global_navi .categories_menu_level_2 > .inner > .categories_title__thick > li > img {
  display: block;
  width: auto;
  height: 320px;
}
#global_navi .categories_menu_level_2 > .inner > ul > li {
  margin-bottom: 50px;
}
#global_navi .categories_menu_level_2 > .inner > ul > li.all_item_link {
  margin-bottom: 40px;
}
#global_navi .categories_menu_level_2 > .inner > ul > .categories_display {
  display: flex;
  width: auto;
}
#global_navi .categories_menu_level_2 > .inner > .categories_campaign {
  width: 489px;
  position: absolute;
  right: 0px;
  bottom: 32px;
}
#global_navi .categories_menu_level_2 > .inner > ul > .categories_campaign_contents > h3 {
  letter-spacing: normal;
  font-size: 16px;
  font-family: YuGothic;
  font-weight: 600;
  color: #666;
}
#global_navi .categories_menu_level_2 > .inner > ul > .categories_campaign_contents > .categories_campaign_contents_images {
  width: auto;
  display: flex;
  margin-top: 27px;
}
#global_navi .categories_menu_level_2 > .inner > ul > .categories_campaign_contents > .categories_campaign_contents_images :nth-child(1) {
  margin-right: 10px;
}

.categories_campaign_contents_images > li > p {
  letter-spacing: normal;
  font-size: 13px;
  font-family: YuGothic;
  margin-top: 19px;
  color: #666666;
}
#global_navi .categories_menu_level_2 > .inner > ul > li.all_item_link > .categories_description {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  letter-spacing: 3px;
  color: #666666;
}

#global_navi .categories_menu_level_2 > .inner > ul > li > a {
  color: #666666;
  font-size: 15px;
  display: block;
  margin-bottom: 12px;
  padding-left: 0;
  font-family: YuGothic;
}
#global_navi .categories_menu_level_2 > .inner > ul > li > div {
  width: 230px;
}
#global_navi .categories_menu_level_2 > .inner > ul > li > div > h3 {
  color: #666666;
  font-size: 16px;
  display: block;
  margin-bottom: 26.5px;
  font-weight: 600;
  padding-left: 0;
  font-family: YuGothic;
  letter-spacing: normal;
}
#global_navi .categories_menu_level_2 > .inner > ul > li > div > a {
  color: #666666;
  font-size: 15px;
  display: block;
  margin-bottom: 12px;
  padding-left: 0;
  font-family: "MidMidSunSun", YuGothic;
}
#global_navi .categories_menu_level_3 > ul > li a {
  color: #000;
  font-size: 13px;
  display: block;
  padding-left: 15px;
  margin-bottom: 8px;
  line-height: 1.2;
}
#global_navi .categories_menu_level_3 > ul > li a::before {
  width: 6px;
  height: 6px;
  border-width: 1px;
  top: 4px;
  left: -2px;
}
#global_navi .categories_menu.categories_menu_level_1 .cat_link.show .categories_menu_level_2 {
  max-height: 80%;
}
#global_navi .categories_menu.categories_menu_level_1 > .cat_link.show > a::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 10px;
  width: 100%;
  height: 1px;
  background: #666;
}
#global_navi .categories_menu_level_2 > .inner > ul > li a:hover {
  color: #0154b5;
  text-decoration: underline;
}

#navi_menu_open {
  display: none;
  z-index: 100000;
}
.sb-slidebar {
  display: none;
}
#mobile_navi {
  display: none;
}

/**
 * 5.0 Content
 * ----------------------------------------------------------------------------
 */

/**
 * 5.1 Page Formats
 * ----------------------------------------------------------------------------
 */

/*--------------------------
layout
--------------------------*/
#sb-site.contents {
  padding-top: 114px;
  background-color: #f0f0f0;
  margin-bottom: 150px;
}

#mainclum {
  width: 100%;
  float: left;
  margin-right: -380px;
}
#view_item {
  margin-right: 380px;
}
#sidebar {
  width: 380px;
  float: right;
}
/*#sidebar #hot-stories {
    position: fixed;
    z-index: 1000;
}*/

/**
 * 5.2 Page "homepage(Japanese Top-Page)"
 * ----------------------------------------------------------------------------
 */

.item_main {
  width: 700px;
  margin: 0 auto;
  padding-top: 50px;
} /* added by Hiroomi Izumi */
.item_main img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.4);
} /* modified by Hiroomi Izumi */

.item_list ul {
  letter-spacing: -0.4em;
}
.item_list li {
  display: block;
  float: left;
  letter-spacing: normal;
  vertical-align: top;
}

.item_main a,
.item_list li a {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  color: #fff;
}
.item_info {
  background-color: #000000;
  background-color: rgba(0, 0, 0, 0.5);
  background-color: #000000();
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100px;
  text-align: center;
  font-family: "monotypeModern", "ＭＳ 明朝", "MS Mincho", "san-serif";
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
}
.item_main a .item_info.white,
.item_list li a .item_info.white {
  color: #000;
}
.item_info.white {
  background-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.5);
  background-color: #ffffff();
}
.item_info h2 {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 15px 0 15px 0;
}
.item_info p {
  font-size: 10px;
  font-size: 1rem;
}

.item_main .item_info {
  height: 200px;
}
.item_main .item_info h2 {
  font-size: 35px;
  font-size: 3.5rem;
  font-weight: bold;
  padding: 48px 0 30px 0;
}
.item_main .item_info p {
  font-size: 15px;
  font-size: 1.5rem;
}

/* 4列の場合 */
.item_list li {
  width: 25%;
}
.item_list li img {
  display: block;
  width: 100%;
  height: auto;
}

/**
 * 6.0 Sidebar
 * ----------------------------------------------------------------------------
 */

#sidebar {
  font-size: 62.5%;
}
#sidebar section h2 {
  background-color: #000000;
  color: #fff;
  text-align: center;
  border-bottom: 1px solid #d4d4d4;
  padding: 20px 0;
  font-size: 18px;
  font-size: 1.8rem;
  font-family: "monotypeModern", "ＭＳ 明朝", "MS Mincho", "san-serif";
}
#sidebar section section h3 {
  background-color: #ededed;
  color: #000;
  text-align: center;
  border-bottom: 1px solid #d4d4d4;
  padding: 10px 0;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "monotypeModern", "ＭＳ 明朝", "MS Mincho", "san-serif";
}
#sidebar li {
  border-bottom: 1px solid #d4d4d4;
}
#sidebar li a {
  display: block;
  padding: 20px 0 20px 24px;
  color: #000;
}
#sidebar li .side_thumb {
  width: 125px;
  height: 125px;
  float: left;
  margin-right: 20px;
}
#sidebar li .side_thumb img {
  width: 100%;
  height: 100%;
}
#sidebar li .side_content {
  width: 185px;
  float: left;
  line-height: 1.4;
}
#sidebar li .side_content dt {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 0.8em;
  font-family: "monotypeModern", "ＭＳ 明朝", "MS Mincho", "san-serif";
}
#sidebar li .side_content dd {
  font-family: "monotypeModern", "ＭＳ 明朝", "MS Mincho", "san-serif";
}

/**
 * 6.1 Widgets
 * ----------------------------------------------------------------------------
 */

/**
 * 7.0 Footer
 * ----------------------------------------------------------------------------
 */

/* フッター：テキストリンク */
#footer-wrapper {
  background-color: #000000;
  width: 100%;
  margin: 0 auto;
  font-size: 50%;
}
#footer-wrapper.ftfix {
  position: fixed;
  bottom: 0;
  z-index: 1000;
}
#footer-wrapper.last-display {
  position: fixed;
  bottom: 0;
}
.remake-footer {
  /*position: relative !important;*/
}
#footer {
  padding: 10px 30px 20px 40px;
}
#footer_navi {
  width: 800px;
  color: #fff;
  list-style: outside none none;
  margin-top: 82px;
  display: flex;
  flex-wrap: wrap;
}
#footer_navi > li {
  display: inline-block;
  vertical-align: top;
  text-align: left;
  padding-right: 30px;
  font-family: "MidMidSunSun", YuGothic;
  letter-spacing: 4px;
}
#footer_navi > li dt {
  margin-bottom: 10px;
  font-weight: bold;
}
#footer_navi > li ul {
  margin: 0 20px 0 0;
  letter-spacing: 0.02em;
  line-height: 1.8;
  list-style: outside none none;
}

#footer_sns {
  width: 180px;
  float: right;
  list-style: outside none none;
  letter-spacing: -0.4em;
  margin-top: 0;
  margin-right: 19px;
  display: flex;
}
#footer_sns li {
  display: inline-block;
  vertical-align: top;
  padding-left: 16px;
  letter-spacing: normal;
}

#copyright {
  text-align: right;
  letter-spacing: 0.02em;
  clear: both;
  margin-bottom: 40px;
  padding-right: 36px;
}
@media screen and (max-width: 1212px) {
  #footer {
    padding: 100px 20px 19px 20px;
  }
  #footer_navi {
    width: 300px;
    margin: 0 auto;
    margin-top: 0;
    justify-content: space-between;
  }
  #footer_navi > li {
    display: inline-block;
    vertical-align: top;
    text-align: left;
    padding-right: 0;
    margin-top: 24px;
    width: 48%;
  }
  #footer_navi > li ul {
    margin: 0;
    letter-spacing: 0.02em;
    line-height: 1.8;
    list-style: outside none none;
  }
  #footer_sns {
    width: 143px;
    float: left;
    margin-top: 23px;
    margin-right: 15px;
  }
  #footer_sns li {
    padding-left: 0;
  }
  #footer_sns li + li {
    padding-left: 9px;
  }
  #footer_sns li a img {
    height: 21px;
  }
  #copyright {
    display: inline-block;
    margin-top: 14px;
    margin-bottom: 20px;
  }
  .remake-footer {
    /*position: absolute !important;*/
  }
}
/**
 * 10.0 Edit by Hiroomi Izumi
 * ----------------------------------------------------------------------------
 */

/* ヘッダーアイコン */
/* iconfont使用 */
.sidebar-link,
.user-link,
.cart-link,
.journal-link .cart-link,
.wishlist-link {
  position: relative;
  display: inline-block;
  height: 100%;
}
.sidebar-link .sales_link,
.user-link .mypage,
.user-link .to-login,
.wishlist-link .wishlist-link--link {
  padding: 0 15px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  display: block;
  height: 100%;
  width: 100%;
  text-align: center;
}
.user-link,
.journal-link,
.wishlist-link {
  float: right;
}
.wishlist-link .wishlist-link--link {
  width: 50px;
  padding: 2px 0 0 25px;
}
.wishlist-link .wishlist-link--link img {
  width: 100%;
}

.cart-link,
.user-link,
.wishlist-link {
  position: absolute;
  width: 45px;
  height: 45px;
  padding: 0;
  top: 0;
}
.cart-link {
  right: 0;
}
.user-link,
.login_link {
  right: 45px;
}
.wishlist-link {
  right: 90px;
}
.cart-link .scartlink:before,
.user-link .mypage:before,
.login_link .to-login:before,
.wishlist-link .wishlist-link--link:before {
  position: absolute;
  padding: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000;
  text-indent: 0;
}
.cart-link .scartlink,
.user-link .mypage,
.login_link .to-login,
.wishlist-link .wishlist-link--link {
  /* use !important to prevent issues with browser extensions that change fonts */

  font-family: "monoco3" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 45px;
  height: 45px;
  padding: 0 0 0 0;
  font-size: 25px;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.cart-link .scartlink img,
.user-link .mypage img,
.login_link .to-login img,
.wishlist-link .wishlist-link--link img {
  display: none;
}
.cart-link .scartlink,
.user-link .mypage,
.login_link .to-login,
.wishlist-link .wishlist-link--link {
  text-indent: -9999px;
}

.user-link .mypage:before,
.login_link .to-login:before {
  content: "\e903";
}
.wishlist-link .wishlist-link--link:before {
  content: "\e901";
}

.journal-link .icon-books {
  position: relative;
  text-shadow: 0px 0px 0 rgba(0, 0, 0, 0.5), 1pt 1pt 0 #fff;
  color: black;
  font-size: 25px;
  margin: 0;
  margin-right: -20px;
  display: inline-block;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
}
.user-link .icon-more_web {
  text-shadow: 0px 0px 0 rgba(0, 0, 0, 0.5), 1pt 1pt 0 #fff;
  color: #dfdfdf;
  font-size: 27px;
  line-height: 27px;
  height: 27px;
  width: 27px;
  margin: 0;
  display: inline-block;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
}
.user-link .icon-arrow_down {
  color: #555;
  font-size: 10px;
  line-height: 27px;
  height: 27px;
  width: auto;
  margin: 0;
  display: inline-block;
  top: 60%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  font-family: "monoco2";
  position: relative;
  vertical-align: top;
  margin-left: 3px;
}

.cart-link .scartlink .ccounter {
  background: none repeat scroll 0 0 #c1c1be;
  border-radius: 10px 10px 10px 10px;
  box-shadow: 0 1px 0 #ffffff;
  color: white;
  display: inline-block;
  padding: 3px;
  font-size: 9px;
  width: auto;
  min-width: 9px;
  height: 9px;
  line-height: 9px;
  text-align: center;
  top: 0;
  right: 0;
  float: right;
  margin: -15px 0 0 25px;
}
.cart-link .scartlink .carttext {
  display: none;
}

/* ユーザーアカウントポップアップメニュー */
.user-link .userlinks {
  display: none;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  height: auto;
  width: 300px;
  opacity: 1;
  background: #fff;
  position: absolute;
  right: 0;
  top: 40px;
  z-index: 50;
  border-top: 1px solid #ddd;
  border-radius: 3px;
}
.user-link .userlinks:before {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  top: -7px;
  right: 17px;
  background-color: white;
}
.user-link .userlinks.show {
  display: block;
  z-index: 100000;
}
.contents__userlinks li,
.user-link .userlinks li {
  display: block;
  width: 100%;
  height: 100%;
  border-bottom: 1px solid #ddd;
}
.user-link .userlinks li:last-child {
  border-bottom: none;
}
.contents__userlinks li a,
.user-link .userlinks li a {
  display: block;
  width: 100%;
  height: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
.contents__userlinks li a:hover,
.user-link .userlinks li a:hover {
  background-color: #fafafa;
}
.contents__userlinks li a i.icon,
.user-link .userlinks li a i.icon {
  font-size: 15px;
  width: 15px;
  line-height: 15px;
  height: 15px;
  color: #aaa;
  display: inline-block;
  text-shadow: 0px 0px 0 rgba(0, 0, 0, 0.2), 1px 1px 0 #fff;
  padding: 0;
  vertical-align: middle;
  margin: 0 15px;
  top: 0;
}
.contents__userlinks li a span,
.user-link .userlinks li a span {
  font-size: 13px;
  line-height: 15px;
  height: 15px;
  color: #555;
  font-weight: bold;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
}
.user-link .userlinks .usermail {
  font-weight: normal;
  font-size: 12px;
  color: #aaa;
  margin-left: 8px;
}

/* ユーザーメニューページ */
.page-title {
  padding: 19px;
  font-size: 15px;
  text-align: center;
  font-weight: bold;
  border-bottom: solid 1px #dbdbdb;
}
.contents__userlinks-wrap {
  max-width: 700px;
  margin: 0 auto;
  padding: 50px 0;
}
.contents__userlinks {
  background: #fff;
  padding: 0 20px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
.contents__userlinks li:last-child {
  border-bottom: none;
}
.contents__userlinks li a {
  padding-top: 27px;
  padding-bottom: 27px;
}
.contents__userlinks li a:hover {
  background: #fff;
}
.contents__userlinks li a:hover span {
  color: #0154b5;
  text-decoration: underline;
}
.contents__userlinks li a:hover i.icon:before {
  color: #0154b5;
}
.contents__userlinks li a i.icon {
  color: #333;
  width: 43px;
}
.contents__userlinks li a i.icon:before {
  font-size: 26px;
  top: -6px;
  left: 5px;
  transition: all 0.3s;
}
.contents__userlinks-wrap .contents__userlinks a span {
  font-size: 16px;
  color: #333;
  transition: all 0.3s;
}
.contents__userlinks .pcNone {
  display: none;
}
@media screen and (max-width: 1212px) {
  .contents__userlinks .pcNone {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .contents__userlinks-wrap {
    padding: 30px 20px;
  }
  .contents__userlinks li a:hover span {
    color: #333;
    text-decoration: none;
  }
  .contents__userlinks li a:hover i.icon:before {
    color: #333;
  }
}
@media screen and (max-width: 767px) {
  .contents__userlinks-wrap {
    max-width: unset;
    padding: 0 0 0;
  }
  .contents__userlinks {
    padding: 0;
    box-shadow: none;
  }
  .contents__userlinks li:last-child {
    border-bottom: 1px solid #ddd;
  }
  .contents__userlinks li a {
    padding-top: 17px;
    padding-bottom: 17px;
  }
  .contents__userlinks li a i.icon {
    width: 30px;
  }
  .contents__userlinks li a i.icon:before {
    font-size: 24px;
    top: -4px;
    left: 0;
  }
  .contents__userlinks-wrap .contents__userlinks a span {
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) {
  .page-title {
    padding: 30px;
    padding-top: 60px;
    font-size: 18px;
    background-color: #fff;
  }
  .contents__userlinks-wrap {
    padding: 50px 20px;
  }
}

/* NEW ARRIVALコーナータグ */
.item_list .new-arrival {
  position: relative;
  color: #fff;
  display: inline-block;
  padding: 0px;
  overflow: hidden;
  font-family: "monotypeModern", "ＭＳ 明朝", "MS Mincho", "san-serif";
  font-weight: 700;
}
.item_list .new-arrival span {
  position: absolute;
  display: block;
  font-size: 11px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2), inset 0px 5px 30px rgba(255, 255, 255, 0.2);
  text-align: center;
  text-transform: uppercase;
  top: 16px;
  right: -25px;
  left: -30px;
  width: 100px;
  padding: 3px 10px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.item_list .new-arrival span.black {
  background: #000000;
}
.item_list .new-arrival span.white {
  background: #ffffff;
  color: #000;
}
.item_list .new-arrival span.yellow {
  background: #ffc20c;
  color: #000;
}
.item_list .new-arrival span.pink {
  background: #f154a1;
}
.item_list .new-arrival span.red {
  background: #d80c18;
}
.item_list .new-arrival span.blue {
  background: #24709e;
}
/* MONOCO JOURNAL右コーナータグ */
.item_list div.monoco-journals {
  position: absolute;
  overflow: hidden;
  top: -10px;
  right: -10px;
  width: 100px;
  height: 100px;
  display: inline-block;
  color: #fff;
  font-family: "monotypeModern", "ＭＳ 明朝", "MS Mincho", "san-serif";
  font-weight: 700;
}
.item_list div.monoco-journals div.monoco-journal {
  position: absolute;
  display: block;
  background: #000;
  top: 24px;
  left: -26px;
  width: 150px;
  padding: 5px 10px;
  text-align: center;
  font-size: 11px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  box-shadow: -1px 1px 3px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: -1px 1px 3px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: -1px 1px 3px rgba(0, 0, 0, 0.5);
}

/**
 * 8.0 Media Queries
 * ----------------------------------------------------------------------------
 */

/* etc 列数（最大4列） */
@media screen and (max-width: 1920px) {
  /* 3列の場合 */
  .item_list li {
    width: 33.3333333333%;
  }
}
@media screen and (max-width: 1212px) {
  /* 2列の場合 */
  .item_list li {
    width: 50%;
  }
}

/* Tablet */
@media screen and (max-width: 1212px) {
  /* Site Header */
  #masthead {
    padding: 10px 0 5px 0;
    height: 50px;
  }

  #mainclum {
    float: none;
    margin-right: 0;
  }
  #view_item {
    margin-right: 0;
  }
  #sidebar {
    display: none;
  }
  .sb-slidebar {
    display: block;
    color: #000;
    background-color: #fff;
  }
  #index_monoco.sb-active .sb-slidebar {
    -webkit-overflow-scrolling: touch;
  }

  #header-logo {
    width: 128px;
    height: 23px;
    float: left;
    margin: 8px 0 0 10px;
  }
  #header-logo img {
    display: block;
    max-width: 100%;
    height: auto;
  }

  #header-icon {
    width: 50px;
  }

  /*トップグローバルナビ（サイドバー）*/
  #global_navi {
    display: none;
  }
  #navi_menu_open {
    display: block;
    margin-top: 0px;
  }

  /*#sb-site.contents { padding-top: 50px; margin-bottom: 170px; } footerなし 2016/05/26*/
  #sb-site.contents {
    padding-top: 50px;
    margin-bottom: 431px;
  }

  .sidebar-link {
    float: left;
    cursor: pointer;
  }
  .sidebar-link .icon-burger-menu {
    position: relative;
    text-shadow: 0px 0px 0 rgba(0, 0, 0, 0.5), 1pt 1pt 0 #fff;
    color: #555;
    font-size: 24px;
    line-height: 24px;
    margin: 0;
    display: inline-block;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
  }

  #mobile_navi {
    display: block;
    font-size: 15px;
    font-size: 1.5rem;
    padding: 0;
    overflow-y: auto;
    height: 100%;
    right: -300px;
    height: 100vh;
    top: 70px;
    position: fixed;
    z-index: 400;
    width: 300px;
    background: white;
    z-index: 500;
  }
  #mobile_navi li {
  }
  #mobile_navi div {
    margin-bottom: 28px;
  }
  #mobile_navi div + div {
    margin-bottom: 41px;
  }
  #mobile_navi h2 {
    color: #666666;
    font-size: 16px;
    line-height: 1.4;
    display: block;
    padding: 0 30px 20px 30px;
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
    letter-spacing: 0;
    margin-top: 17px;
  }
  #mobile_navi div h3 {
    color: #666666;
    font-size: 16px;
    line-height: 1.4;
    display: block;
    padding: 0 30px 20px 30px;
    font-family: "MidMidSunSun", YuGothic;
    font-weight: 600;
    letter-spacing: 4px;
  }
  #mobile_navi a {
    color: #666666;
    font-size: 16px;
    line-height: 1.4;
    display: block;
    padding: 10px 30px;
    font-family: "MidMidSunSun", YuGothic;
    font-weight: 300;
    letter-spacing: 4px;
  }
  #mobile_navi .cat_link {
    position: relative;
    margin-top: -1px;
    font-weight: bold;
  }
  #mobile_navi .cat_link_toggle .icon {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-left: 20px;
    background: none;
    position: absolute;
    top: 15px;
    transform-origin: right;
    border-right: 1px solid #666666;
    border-bottom: 1px solid #666666;
    transform: rotate(45deg) translateY(-50%);
    -webkit-transform: rotate(45deg) translateY(-50%);
    -ms-transform: rotate(45deg) translateY(-50%);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .icon-rotation {
    transform: rotate(-135deg) translateY(-50%) !important;
    -webkit-transform: rotate(-135deg) translateY(-50%) !important;
    -ms-transform: rotate(-135deg) translateY(-50%) !important;
  }
  #mobile_navi .cat_link_toggle.open .icon::after {
    display: none;
  }
  #mobile_navi .cat_link .count {
    font-size: 12px;
    font-weight: normal;
    margin-left: 3px;
  }
  #mobile_navi .categories_menu .categories_menu_level_2 > li a {
    padding-left: 30px;
    padding-right: 40px;
  }
  #mobile_navi .categories_menu .categories_menu_level_3 > li a {
    padding-left: 45px;
    background: #fafafa;
    font-size: 13px;
    position: relative;
    font-weight: normal;
    padding-right: 43px;
  }
  #mobile_navi .categories_menu .categories_menu_level_3 > li a::before {
    content: "";
    display: block;
    width: 9px;
    height: 9px;
    position: absolute;
    top: 50%;
    right: 20px;
    border-bottom: solid 1px #000;
    border-right: solid 1px #000;
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    margin-top: -6px;
  }
  #mobile_navi .categories_menu .categories_menu_level_2,
  #mobile_navi .categories_menu .categories_menu_level_3 {
    display: none;
  }
  .menu-open {
    right: 0px !important;
  }

  .item_main .item_info {
    height: 150px;
  }
  .item_main .item_info h2 {
    font-size: 22px;
    font-size: 2.2rem;
    padding: 35px 0 20px 0;
  }
  .item_main .item_info p {
    font-size: 12px;
    font-size: 1.2rem;
  }

  footer {
    display: block;
  }
  #footer-wrapper {
    display: block;
  }
}

/* Smart phone */
@media screen and (max-width: 480px) {
  /* Site Header */
  #masthead {
    padding: 10px 0 5px 0;
    height: 32px;
  }

  #header-logo {
    width: 79px;
    height: auto;
    margin: 3px 0 0 0;
    margin-top: 6px;
  }
  #header-logo img {
    display: block;
    max-width: 100%;
    height: auto;
  }

  #navi_menu_open {
    margin-top: 0px;
  }
  #mobile_navi {
    font-size: 10px;
    font-size: 1rem;
  }

  .item_main {
    width: 100%;
    padding-top: 0px;
  } /* added by Hiroomi Izumi */

  #header_inner ul li {
    margin-top: 10px;
  }
  /*#header_inner ul { width: 110px; height: 14px; float: right; letter-spacing:-.40em; margin-right: 10px; }
    #header_inner ul li { display: inline-block; width: 40px; margin-left: 5px; letter-spacing: normal;  }
    #header_inner ul li#hiu_001 { width: 25px; }
    #header_inner ul li#hiu_002 { width: 26px; }
    #header_inner ul li#hiu_003 { width: 35px; }
    #header_inner ul li img { display: block; max-width: 100%; height: auto; }*/

  #sb-site.contents {
    padding-top: 47px;
    margin-bottom: 430px;
  }

  /* ヘッダーアイコン */
  .sidebar-link .sales_link,
  .user-link .mypage,
  .user-link .to-login,
  .cart-link .scartlink {
    padding: 0;
  }
  .user-link .icon-user-account {
    position: relative;
    text-shadow: 0px 0px 0 rgba(0, 0, 0, 0.5), 1pt 1pt 0 #fff;
    color: #555;
    font-size: 23px;
    margin: 0;
    display: inline-block;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
  }
  .user-link .icon-arrow_down {
    color: #555;
    font-size: 10px;
    line-height: 27px;
    height: 27px;
    width: auto;
    margin: 0;
    display: inline-block;
    top: 60%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    font-family: "monoco2";
    position: relative;
    vertical-align: top;
  }
  .journal-link .icon-books {
    position: relative;
    text-shadow: 0px 0px 0 rgba(0, 0, 0, 0.5), 1pt 1pt 0 #fff;
    color: #555;
    font-size: 23px;
    margin: 0;
    margin-right: -25px;
    display: inline-block;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
  }
  .user-link .icon-more_web {
    text-shadow: 0px 0px 0 rgba(0, 0, 0, 0.5), 1pt 1pt 0 #fff;
    color: #dfdfdf;
    font-size: 27px;
    line-height: 27px;
    height: 27px;
    width: 27px;
    margin: 0;
    display: inline-block;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
  }
  .cart-link .scartlink .icon-cart {
    font-size: 23px;
    line-height: 23px;
    width: 23px;
    height: 23px;
    margin: 0;
    display: inline-block;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    color: #555;
    font-family: "monoco2" !important;
    position: relative;
  }
  /* ユーザーアカウントポップアップメニュー */
  .user-link .userlinks {
    box-shadow: inset 0 1px 0 #fff, 0 8px 10px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: inset 0 1px 0 #fff, 0 8px 10px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: inset 0 1px 0 #fff, 0 8px 10px rgba(0, 0, 0, 0.15);
    max-width: 230px;
    top: 33px;
    position: fixed;
    right: -50px;
    font-size: 10px;
    overflow: hidden;
    transition: all 0.4s;
  }
  .js-message-alert .user-link .userlinks {
    top: 90px;
  }
  .user-link .userlinks li {
    height: 33px;
  }
  .user-link .userlinks li a {
    padding-top: 10px;
  }
  .user-link .userlinks li a span {
    font-size: 10px;
    height: 10px;
    padding-bottom: 10px;
  }

  #header-icon {
    width: 40px;
    height: auto;
    margin: 0 auto;
  }
  #header-icon img {
    display: block;
    max-width: 100%;
    height: auto;
  }

  .item_info p {
    font-size: 9px;
    font-size: 0.9rem;
  }

  .item_main .item_info {
    height: 60px;
  }
  .item_main .item_info h2 {
    font-size: 15px;
    font-size: 1.5rem;
    padding: 7px 0 10px 0;
  }
  .item_main .item_info p {
    font-size: 8px;
    font-size: 0.8rem;
  }

  footer {
    display: block;
  }

  /* 1列の場合 */
  .item_list li {
    width: 100%;
  }

  #footer-wrapper {
    display: block;
  }

  /* iconfont使用 */
  .cart-link,
  .user-link,
  .wishlist-link {
    width: 37px;
    padding: 0;
    top: 0;
    left: 0;
  }
  .cart-link .scartlink,
  .user-link .mypage,
  .wishlist-link .wishlist-link--link {
    width: 37px;
    overflow: hidden;
  }
  .cart-link {
    right: 10px;
  }
  .user-link {
    right: 47px;
  }
  .wishlist-link {
    right: 82px;
  }
}

/* 汎用ボタン by Hiroomi Izumi */
.monoco-general-button {
  margin: 0 auto;
  text-align: center;
}
.monoco-general-button a {
  display: inline-block;
  width: 200px;
  height: auto;
  line-height: 50px;
  border: solid 1px #aaa;
  border-radius: 5px;
  box-sizing: border-box;
  font-size: 10px;
  letter-spacing: 0.1px;
  font-weight: bold;
  vertical-align: middle;
  color: #aaa;
}
.monoco-general-button a:hover {
  opacity: 0.7;
}
