/* *********************************************************************************************************************
	One% CSS Grid - 12 Columns Fluid CSS Grid System

	Why One% ? Let’s count ...
		we have 12 columns (magic number divided by 2, 3, 4, 6)

		for 12 columns we need 11 margins

		so if we count margin 3%, then 3% * 11 margins = 33%

		and if we count width of 1 column 5.5%, than 5.5% * 12 columns = 66%

		in the end we have 33% + 66% = 99% aaand ???

		1% is still here so that's the name - One%

	2 starting options ? Let’s count a bit more ...
		1200px - perfectly fits 1280 screens
			12 columns
			margin 3% / 36px (full-width)
			col1 5.5% / 66px (full-width)

		1000px - perfectly fits 1024 screens
			12 columns
			margin 3% / 30px (full-width)
			col1 5.5% / 55px (full-width)
*/

/* *********************************************************************************************************************
 * Browser Default Initialization
 */
body,
div,
dl,
dt,
dd,
ul,
ul li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td,
section,
nav,
article,
aside,
hgroup,
header,
address,
figure,
figcaption {
  margin: 0;
  padding: 0;
  /*line-height: 160%;*/
}

/* *********************************************************************************************************************
 * body
 */
body {
  font-family:
    "Noto Sans JP", sans-serif, "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック";
  /*font-family: 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;*/
  color: #333;
  font-size: 16px;
  line-height: 160%;
  text-align: left;
  letter-spacing: -0.001em; /* iOS4でのテキストの隙間への対応 */
  -webkit-text-size-adjust: 100%; /* 文字サイズの自動調整機能のキャンセル */
}
.win body {
  /*font-family: 'メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;*/
  font-family: "Noto Sans JP", sans-serif;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:active {
  text-decoration: underline;
}

/* *********************************************************************************************************************
 * Main container for all
 */
.container {
  margin: 0 auto;
  padding: 0 0 0 0;
  /*padding: 0 0 0 1%;*/ /* THAT'S THE NAME ;) */
}

.container {
  max-width: 960px;
  /*max-width: 1020px;*/
}

.onerow {
  clear: both;
  padding: 0 10px;
  overflow: hidden;
}

/*グローバルナビ*/
.kk-logo {
  width: 104px;
  height: auto;
  margin: 10px 0 0 10px;
}

/*header h1 {
  width: 104px;
  height: auto;
  margin: 10px 0 0 10px;
}*/

header h2 {
  font-size: 9px;
  font-weight: normal;
  text-align: right;
  color: #999;
  margin: 3px 0 0 0;
}
.pc_header {
  border-right-width: 1px;
  border-right-style: solid;
  border-right-color: #ccc;
  border-left-width: 1px;
  border-left-style: solid;
  border-left-color: #ccc;
  padding-bottom: 10px;
  padding-top: 3px;
}
.pc_header2 {
  border-left-width: 1px;
  border-left-style: solid;
  border-left-color: #ccc;
  padding-bottom: 10px;
  padding-top: 3px;
  box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.2);
  margin-bottom: 10px;
}

#sp_header {
  display: none;
}
/*nav,*/
.g_navi {
  width: 700px;
  height: 36px;
  float: right;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#a6a6a6+0,555555+45,1a1a1a+48,747474+100 */
  background: #a6a6a6; /* Old browsers */
  background: -moz-linear-gradient(
    top,
    #a6a6a6 0%,
    #555555 45%,
    #1a1a1a 48%,
    #747474 100%
  ); /* FF3.6-15 */
  background: -webkit-linear-gradient(
    top,
    #a6a6a6 0%,
    #555555 45%,
    #1a1a1a 48%,
    #747474 100%
  ); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to bottom,
    #a6a6a6 0%,
    #555555 45%,
    #1a1a1a 48%,
    #747474 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6a6a6', endColorstr='#747474',GradientType=0 ); /* IE6-9 */
  border-radius: 5px; /* CSS3草案 */
  -webkit-border-radius: 5px; /* Safari,Google Chrome用 */
  -moz-border-radius: 5px; /* Firefox用 */
}
/*nav ul,*/
.g_navi ul {
  list-style-type: none;
  width: 93%;
  margin: 0 auto;
}
/*nav li,*/
.g_navi li {
  font-size: 14px;
  float: left;
  text-align: center;
  line-height: 1.5;
}
/*nav li:first-child ,*/
.g_navi li:first-child {
  border-left-width: 1px;
  border-left-style: solid;
  border-left-color: #b3b3b3;
}
/*nav li a,*/
.g_navi li a {
  color: #fff;
  display: block;
  /*margin:8px 0 0 0;*/
  padding: 8px 16px;
  border-right-width: 1px;
  border-right-style: solid;
  border-right-color: #b3b3b3;
}
/*nav li a:hover,*/
.g_navi li a:hover {
  color: #fff;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#b1b1b1+0,7a7a7a+45,575757+48,8e8e8e+100 */
  background: #b1b1b1; /* Old browsers */
  background: -moz-linear-gradient(
    top,
    #b1b1b1 0%,
    #7a7a7a 45%,
    #575757 48%,
    #8e8e8e 100%
  ); /* FF3.6-15 */
  background: -webkit-linear-gradient(
    top,
    #b1b1b1 0%,
    #7a7a7a 45%,
    #575757 48%,
    #8e8e8e 100%
  ); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to bottom,
    #b1b1b1 0%,
    #7a7a7a 45%,
    #575757 48%,
    #8e8e8e 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b1b1b1', endColorstr='#8e8e8e',GradientType=0 ); /* IE6-9 */
  text-decoration: none;
}

/*トピックパス*/
.acms-topicpath li + li:before {
  content: "＞";
  margin-right: 5px;
  color: #999;
}

/*フッター*/
.footer {
  background-color: #a1a1a1;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 10px;
  margin-top: 30px;
  /*position: absolute;
    bottom: 0;
    left:0;*/
}
.inner_pc {
  margin: 0 auto;
  padding: 0 0 0 0;
  max-width: 960px;
}
.inner_t {
  display: none;
}
.sitemap {
  display: table;
}
.sitemap h4 {
  color: #900;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 5px;
}
.sitemap ul {
  display: table-row;
  list-style-type: none;
}
.sitemap li {
  display: table-cell;
  font-size: 11px;
  line-height: 1.4;
  padding-right: 10px;
  color: #fff;
}
.sitemap li a {
  color: #fff;
  line-height: 1.4;
  text-decoration: none;
}
.sitemap li a:hover {
  text-decoration: underline;
}
.arrow {
  background-image: url(/themes/kurodaikobo2017/common/footer_arrow.gif);
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 8px;
}
.right_line {
  border-right-width: 1px;
  border-right-style: solid;
  border-right-color: #ccc;
}
.note {
  font-size: 9px;
  line-height: 1.7;
  color: #fff;
  text-align: center;
}
address {
  font-size: 9px;
  color: #fff;
  font-style: normal;
  text-align: center;
  line-height: 1.7;
}

/*ボタン*/

/*角エッジの黒ボタン*/
.btn01 a {
  text-align: center;
  color: #fff;
  width: 250px;
  padding: 10px 0;
  margin: 40px auto;
  font-size: 18px;
  display: block;
  text-decoration: none;
}

.btn01 a {
  background-color: #000;
}

.btn01 a:hover {
  background-color: rgba(0, 0, 0, 0.6);
  text-decoration: none;
}

@media only screen and (max-width: 766px) {
  .btn01 a {
    width: 100%;
    margin: 30px auto 80px auto;
  }
}

/*新商品情報一覧*/
.new-product {
  padding: 0 20px;
  margin-bottom: 50px;
}

.new-product img {
  border: solid #ccc 1px;
  width: 100%;
  height: 100%;
  margin-bottom: 5px;
}

.new-product a {
  text-decoration: none;
  color: #333;
}

.new-product a:hover {
  text-decoration: underline;
}

.new-product-title {
  font-size: 16px;
  margin-bottom: 5px;
}

/*記事のタイトル*/
.column-title-b {
  background-color: #003366;
  font-size: 16px;
  text-align: left;
  padding: 5px 0 5px 20px;
  color: #fff;
  margin-bottom: 20px;
}

/* *********************************************************************************************************************
 *タブレット対応
 */
@media (min-width: 600px) and (max-width: 959px) {
  /*グローバルナビ*/
  .pc_header {
    border-right-width: 0px;
    border-right-style: none;
    border-left-width: 0px;
    border-left-style: none;
    border-top-width: 0px;
    border-bottom-width: 0px;
    border-top-style: none;
    border-bottom-style: none;
  }
  .pc_header2 {
    border-right-width: 0px;
    border-right-style: none;
    border-left-width: 0px;
    border-left-style: none;
    margin-bottom: 0px;
  }
  header {
    padding: 0 0 10px 0;
  }
  .kk-logo {
    width: 104px;
    height: auto;
    margin: 10px 0 0 0;
  }
  header h2 {
    font-size: 9px;
    font-weight: normal;
    text-align: right;
    color: #999;
    margin: 3px 0 0 0;
  }
  .top_header {
    border-right-width: none;
    border-right-style: none;
    border-right-color: none;
    border-left-width: none;
    border-left-style: none;
    border-left-color: none;
  }
  /*nav,*/
  .g_navi {
    width: 100%;
    height: 36px;
    float: none;
  }
  /*nav ul,*/
  .g_navi ul {
    list-style-type: none;
    width: 97%;
    margin: 0 auto;
  }
  /*nav li,*/
  .g_navi li {
    font-size: 13px;
    float: left;
    text-align: center;
    line-height: 1.5;
  }
  /*nav li a,*/
  .g_navi li a {
    color: #fff;
    display: block;
    /*margin:8px 0 0 0;*/
    padding: 8px 8px;
    border-right-width: 1px;
    border-right-style: solid;
    border-right-color: #b3b3b3;
  }
  .footer {
    padding-top: 0;
  }
  .inner_pc {
    display: none;
  }
  .inner_t {
    display: block;
    margin: 0 auto;
    padding: 0 0 0 0;
    width: 90%;
  }
  .sitemap {
    display: block;
  }
  .sitemap h4 {
    margin-bottom: 0;
    margin-top: 15px;
  }
  .sitemap ul {
    padding-bottom: 5px;
  }
  .sitemap li {
    font-size: 70%;
    line-height: 2;
    padding-right: 20px;
    color: #fff;
  }
  .note {
    padding-top: 20px;
    width: 90%;
    margin: 0 auto;
    text-align: left;
  }
  address {
    width: 90%;
    margin: 0 auto;
    text-align: left;
  }
}

/* *********************************************************************************************************************
 *ミニタブレット対応
 */
@media all and (max-width: 736px) {
  .pc_header,
  .pc_header2 {
    display: none;
  }
  /* ------ slidebars menu ------ */
  #sp_header {
    flex-direction: column;
    -webkit-flex-direction: column; /* Safari */
    display: block;
  }

  /* Fixed position examples */
  #sb-site.top-padding {
    padding-top: 50px;
  }
  #fixed-top {
    position: fixed;
    top: 0;
    width: 100%;
    height: 55px;
    /*height: 50px;*/
    z-index: 4;
    background-color: #fff;
    background-image: url(/themes/kurodaikobo2017/common/sp-logo.png);
    background-repeat: no-repeat;
    background-position: center center;
    box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.3);
  }

  #fixed-top span.sb-toggle-left {
    float: left;
    color: #000;
    padding: 15px 0 0 10px;
    /*padding: 12px 0 0 10px;*/
  }
  .sb-toggle-left {
    display: inline-block;
  }
  .sb-toggle-left a {
    cursor: pointer;
    color: #000;
    text-decoration: none;
  }

  /*サイドナビ*/
  .sb-g-nav {
    list-style: none;
    margin: 10px 0 0 0;
    padding: 0;
    background-color: #222;
  }
  .sb-g-nav li {
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #666;
    color: #fff;
    font-size: 100%;
    line-height: 2.5;
  }
  .sb-g-nav li a {
    color: #fff;
    font-size: 100%;
    line-height: 2.5;
    text-decoration: none;
    display: block;
    padding: 0 15px;
  }
  .sb-g-nav li a:hover {
    background-color: #999;
  }

  .sb-g-nav-category {
    padding: 0 15px;
    /*background-color: #333;
		color:#fff;*/
  }
  .sb-g-nav-product {
    text-indent: 10px;
    color: #fff;
  }
  .sb-g-nav-other {
    margin: 10px 0;
    padding-bottom: 10px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #666;
  }
  .sb-g-nav-other li {
    list-style-type: none;
    font-size: 85%;
    color: #fff;
  }
  .sb-g-nav-other li a {
    text-decoration: none;
    padding: 2px 15px;
    display: block;
    color: #fff;
  }
  .sb-g-nav-other li a:hover {
    background-color: #999;
  }
  .sb-g-nav-toiawase {
    font-size: 85%;
    padding: 2px 15px;
    color: #fff;
    margin-top: 10px;
  }
}
/* *********************************************************************************************************************
 *スマホ対応
 */
@media all and (max-width: 599px) {
  .pc_header,
  .pc_header2 {
    display: none;
  }

  /* ------ slidebars menu ------ */
  #sp_header {
    flex-direction: column;
    -webkit-flex-direction: column; /* Safari */
    display: block;
  }

  /* Fixed position examples */
  #sb-site.top-padding {
    padding-top: 50px;
  }
  #fixed-top {
    position: fixed;
    top: 0;
    width: 100%;
    height: 55px;
    /*height: 50px;*/
    z-index: 4;
    background-color: #fff;
    background-image: url(/themes/kurodaikobo2017/common/sp-logo.png);
    background-repeat: no-repeat;
    background-position: center center;
    box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.3);
  }

  #fixed-top span.sb-toggle-left {
    float: left;
    color: #000;
    padding: 15px 0 0 10px;
    /*padding: 12px 0 0 10px;*/
  }
  .sb-toggle-left {
    display: inline-block;
  }
  .sb-toggle-left a {
    cursor: pointer;
    color: #000;
    text-decoration: none;
  }

  /*サイドナビ*/
  .sb-g-nav {
    list-style: none;
    margin: 10px 0 0 0;
    padding: 0;
    background-color: #222;
  }
  .sb-g-nav li {
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #666;
    color: #fff;
    font-size: 100%;
    line-height: 2.5;
  }
  .sb-g-nav li a {
    color: #fff;
    font-size: 100%;
    line-height: 2.5;
    text-decoration: none;
    display: block;
    padding: 0 15px;
  }
  .sb-g-nav li a:hover {
    background-color: #999;
  }

  .sb-g-nav-category {
    padding: 0 15px;
    /*background-color: #333;
		color:#fff;*/
  }
  .sb-g-nav-product {
    text-indent: 10px;
    color: #fff;
  }
  .sb-g-nav-other {
    margin: 10px 0;
    padding-bottom: 10px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #666;
  }
  .sb-g-nav-other li {
    list-style-type: none;
    font-size: 85%;
    color: #fff;
  }
  .sb-g-nav-other li a {
    text-decoration: none;
    padding: 2px 15px;
    display: block;
    color: #fff;
  }
  .sb-g-nav-other li a:hover {
    background-color: #999;
  }
  .sb-g-nav-toiawase {
    font-size: 85%;
    padding: 2px 15px;
    color: #fff;
    margin-top: 10px;
  }

  /*フッター*/
  .footer {
    padding-top: 10px;
  }
  .inner_pc {
    display: none;
  }

  .acms-topicpath {
    line-height: 2;
    margin-top: 70px;
  }
}
