@charset "utf-8";

/* ==========================================================
   header.css
   header関連CSSのみ抽出
   元ファイル: reset.css / common.css / style.css
========================================================== */

/* ==================
   header base
====================== */
header {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  transition: all .4s ease;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -o-transition: all .4s ease;
}
a{
  transition: all .2s ease;
}
ul {
    padding: 0;
}
li {
  list-style-type: none;
}

#header a:hover {
  opacity: 0.6;
  text-decoration: none;
}

/* header内画像の余白対策 */
header img {
  vertical-align: top;
}

/* header内で使用されているフォント補助クラス */
.sansSerif {
  font-family: 'Trebuchet MS', sans-serif;
  letter-spacing: 0.5px;
}

.jpnSans {
  font-family: 'Noto Sans JP', sans-serif;
}

/* header内のclearfix */
.cf:before,
.cf:after {
  content: "";
  display: table;
}

.cf:after {
  clear: both;
}

.cf {
  zoom: 1;
}

/* ==================
   header main area
====================== */
.sdBox {
  background: #272727;
}

.hdBox {
  position: relative;
  width: 1200px;
  height: 60px;
  margin: 0 auto;
}

.hdBox h1 {
  padding: 12px 20px;
  margin: 0;
}

.hdBox h1 img:hover {
  opacity: 1;
}

.hdBox h1 a:hover {
  opacity: 0.8;
}

.btnArea {
  position: absolute;
  top: 0;
  right: 0;
}

.btnArea ul {
  float: left;
  margin-top: 23px;
}

.btnArea ul li {
  float: left;
  line-height: 1;
}

.logoSideMenu {
  font-size: 13.5px;
  letter-spacing: 1px;
  color: #fff !important;
  padding: 0 17.5px;
}

/* ==================
   category menu
====================== */
.hdSubMenu {
  height: 0;
  width: 100%;
  background-color: rgba(255,255,255,0.9);
  transition: all .4s ease;
  opacity: 0;
}

.hdSubMenuIn {
  width: 1200px;
  margin: auto;
}

.hdSubMenuIn ul {
  float: right;
  margin: 9px 6px;
  display: none;
  transition: all .4s ease;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -o-transition: all .4s ease;
}

.hdSubMenuIn ul li {
  float: left;
  color: #ccc;
  font-size: 12.5px;
}

.hdMenuCate {
  font-size: 13px;
  font-style: italic;
  letter-spacing: 1px;
  color: #000;
  padding: 0 15px;
}

.hdCateBtn {
  transition: all .4s ease;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -o-transition: all .4s ease;
}

.hdCateBtn::before {
  display: block;
  content: '';
  position: absolute;
  top: 25px;
  left: 0;
  width: 5px;
  height: 5px;
  border-top: 1.5px solid #fff;
  border-right: 1.5px solid #fff;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  transition: all .4s ease;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -o-transition: all .4s ease;
}

.hdCateBtn.arrowRoll {
  opacity: 0.6;
}

.hdCateBtn.arrowRoll::before {
  display: block;
  content: '';
  position: absolute;
  top: 28px;
  left: 0;
  width: 5px;
  height: 5px;
  border-top: 1.5px solid #fff;
  border-right: 1.5px solid #fff;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transition: all .4s ease;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -o-transition: all .4s ease;
}

.hdCateBtn:hover {
  opacity: 0.6;
  cursor: pointer;
}

.btnArrow {
  margin-top: -3px;
}

/* ==================
   sub category menu
====================== */
#subBg {
  opacity: 0;
  height: 0px;
  width: 100%;
  background-color: rgba(255,255,255,0.75);
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -o-transition: all .3s ease;
}

.dsSub,
.csSub,
.topsSub,
.regSub {
  position: absolute;
  height: 0px;
  width: auto;
  overflow: hidden;
  margin-top: 11px;
  opacity: 0;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -o-transition: all .3s ease;
  z-index: 2;
}

.hdMenuCateSub {
  font-size: 13px;
  font-style: italic;
  letter-spacing: 1px;
  color: #000;
  padding: 0 15px;
  width: 100%;
  height: 40px;
  display: table-cell;
  vertical-align: middle;
}

.cateSubA a {
  transition-property: none;
  *pointer-events: none;
}

.cateSubA a:hover {
  -webkit-box-shadow: inset 0 -1px 0 #000;
  box-shadow: inset 0 -1px 0 #000;
  opacity: 1 !important;
}

.subDisplay {
  display: block !important;
}

.subOpen {
  display: block;
  overflow: visible;
  height: 40px !important;
  opacity: 1 !important;
}

/* ==================
   search / cart icons
====================== */
.hdIcon {
  display: inline;
}

.hdIcon img {
  width: auto;
  margin: 17px 18px 17px 8px;
  height: 26px;
}

.hdBtnSrch {
  transition: all .4s ease;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -o-transition: all .4s ease;
}

.hdBtnSrch:hover {
  opacity: 0.6;
  cursor: pointer;
}

.afterSlide {
  opacity: 0.45;
}

.srchBox {
  width: 0;
  height: 36px;
  position: absolute;
  float: right;
  z-index: -1;
  top: 12px;
  right: 105px;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -o-transition: all .3s ease;
}

.searchWord {
  height: 36px;
  font-size: 14px;
  display: inline-block;
  border: none;
  outline: none;
  color: #fff;
  width: 0;
  transition: width .3s cubic-bezier(0.000, 0.795, 0.000, 1.000);
  background: #272727;
  cursor: text;
  outline: 0;
  border-bottom: 1px solid #fff;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -o-transition: all .3s ease;
}

.boxSlide {
  width: 345px;
  z-index: 2;
  background: #272727;
}

.boxSlide2 {
  width: 305px;
  z-index: 2;
}

.search_submit {
  display: inline-block;
  height: 36px;
  width: 0;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -o-transition: all .3s ease;
  float: right;
  background: url(../img/srchGo.png) center center no-repeat;
  background-size: 12px;
  text-indent: -10000px;
  border: none;
  cursor: pointer;
  outline: none;
}

.boxSlide3 {
  width: 40px;
  opacity: 1;
}

/* ==================
   old header navigation
   ※ gpt指示用.htmでは未使用だが、元CSSのheaderブロックに含まれていた指定
====================== */
.naviBox {
  height: 42px;
  width: 100%;
  background-color: rgba(21,20,13,0.6);
}

.naviBox > ul {
  width: 873px;
  margin: 0 auto;
}

.naviBox ul li {
  float: left;
  position: relative;
}

.naviBox > ul > li:hover {
  background-color: rgba(21,20,13,0.2);
}

/* ==================
   responsive header
====================== */
@media screen and (max-width: 1200px) {
  .hdBox {
    width: 100%;
  }

  .hdSubMenuIn {
    width: 100%;
  }

  .logoSideMenu {
    padding: 0 12px;
  }

  .hdCateBtn::before {
    left: -2px;
  }

  .hdCateBtn.subOpen::before {
    left: -2px;
  }

  .boxSlide {
    width: 400px;
  }

  .boxSlide2 {
    width: 360px;
  }

  .hdBox h1 {
    left: 8px;
    padding: 14px 20px;
  }

  .hdBox h1 a img {
    height: 32px;
    width: auto;
  }
}

@media screen and (max-width: 1024px) {
  .hdSubMenuIn ul li {
    font-size: 12px;
  }

  .hdMenuCate {
    font-size: 12.5px;
    font-style: italic;
    letter-spacing: 1px;
    color: #000;
    padding: 0 10px;
  }

  .regSub {
    right: 0;
  }
}
