@charset "UTF-8";
/*
 * global.css
 *
 *  version --- 1.0
 *  updated --- 2012/09/1
 */
/* Global Layout
------------------------------------------------------------------*/
body {
  padding: 0;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  body {
    min-width: 1200px;
  }
}
@media only screen and (max-width: 767px) {
  body {
    -webkit-text-size-adjust: 100%;
  }
}
/*globalNavi*/
#gNavi {
  width: 100%;
  margin: 0 0 0 0;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 53px;
  z-index: 999;
}

/* clearfix */
#gNavi ul {
  width: 1200px;
  margin: 0 auto;
  *zoom: 1;
}
#gNavi ul:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

#gNavi ul li {
  float: left;
}

#gNavi ul li span {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro",
    "Noto Sans Japanese bold", "メイリオ";
  font-weight: bold;
  font-size: 15px;
  letter-spacing: 0.1em;
  width: 300px;
  height: 40px;
  cursor: pointer;
  position: relative;
}

#gNavi ul li span i {
  font-size: 18px;
  margin-left: 10px;
}

#gNavi ul li span:before {
  content: "";
  background-color: #a2a2a2;
  display: block;
  position: absolute;
  width: 1px;
  height: 22px;
  top: 50%;
  margin-top: -11px;
  right: 0;
}
#gNavi ul li:last-child span:before {
  content: none;
}
#gNavi ul li span:hover:after {
  content: "";
  background-color: #cc1b38;
  display: block;
  position: absolute;
  width: 100%;
  height: 5px;
  bottom: 0;
  left: 0;
}

#gNavi ul li .menu_over {
  display: none;
  background-color: rgba(227, 227, 227, 0.9);
  padding: 32px 0;
  position: fixed;
  top: 93px;
  left: 0;
  width: 100%;
  z-index: 999;
}
@media only screen and (min-width: 1281px) {
  #gNavi ul li .menu_over {
    padding: 16px 0 18px 0;
  }
}

#gNavi ul li .menu_over ul {
  width: 1150px;
  margin: auto;
}
#gNavi ul li.hover .menu_over {
  display: block;
}

#gNavi ul li .menu_over ul li {
  width: 183px;
  float: left;
  margin-right: 10px;
}
#gNavi ul li .menu_over ul li:nth-child(6n) {
  margin-right: 0;
}
#gNavi ul li .menu_over ul li a {
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 183px;
  height: 183px;
  margin-bottom: 10px;
  position: relative;
}
#gNavi ul li .menu_over ul li a img {
  max-width: 100%;
  height: auto;
}

@media only screen and (max-width: 767px) {
  #gNavi {
    background-color: transparent;
    position: static;
  }
  #gNavi ul {
    width: 100%;
    border-top: 1px solid #c6c6c6;
    border-bottom: 1px solid #c6c6c6;
  }
  #gNavi ul li {
    float: none;
  }
  #gNavi ul li span {
    background: url(../_img/master/navi_plus.png) 94% center no-repeat #e7e7e7;
    background-size: 16px auto;
    box-sizing: border-box;
    color: #474747;
    display: block;
    font-size: 16px;
    width: 100%;
    height: 52px;
    line-height: 52px;
    padding-left: 20px;
  }
  #gNavi ul li.active span {
    background: url(../_img/master/navi_close.png) 94% center no-repeat #e7e7e7;
    background-size: 16px auto;
  }
  #gNavi ul li:nth-child(2n) span {
    background-color: #fff;
  }
  #gNavi ul li span:before {
    content: none;
  }
  #gNavi ul li span i {
    display: none;
  }

  #gNavi ul li span:hover:after {
    content: none;
  }

  #gNavi ul li .menu_over {
    padding: 10px 6.2%;
    position: static;
    background-color: #e7e7e7;
  }
  #gNavi ul li .menu_over ul {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
    border-top: none;
    border-bottom: none;
  }
  #gNavi ul li .menu_over ul:after {
    content: "";
    display: block;
    width: 31.3%;
  }
  #gNavi ul li .menu_over ul li {
    width: 31.3%;
    height: auto;
    float: none;
    margin-right: 3%;
    margin-bottom: 10px;
  }
  #gNavi ul li .menu_over ul li:nth-child(3n) {
    margin-right: 0;
  }
  #gNavi ul li .menu_over ul li a {
    display: block;
    width: auto;
    height: auto;
    margin-bottom: 0;
  }
  #gNavi ul li .menu_over ul li a img {
    width: 100%;
    height: auto;
  }
}

/*makerNavi*/
#makerNavi,
#headerTitle {
  width: 100%;
  height: 44px;
  margin: 0 0 0 0;
  background-color: #000;
  position: fixed;
  top: 53px;
  z-index: 99998;
}

#makerNavi .logo,
#headerTitle .logo {
  /* width:140px; */
  height: 44px;
  display: flex;
  align-items: center;
  float: left;
  margin-right: 15px;
}
#makerNavi .logo img,
#headerTitle .logo img {
  max-height: 32px;
  width: auto;
  max-width: 130px;
}
/* clearfix */
#makerNavi ul {
  height: 44px;
  margin: 0 auto;
  *zoom: 1;
}
#makerNavi ul:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

#makerNavi ul li {
  float: left;
}

@media only screen and (min-width: 768px) {
  /* 1つの場合 */
  #makerNavi ul li.category_btn:only-child {
    width: 180px;
  }

  /* 2つの場合 */
  #makerNavi ul li.category_btn:first-child:nth-last-child(2),
  #makerNavi ul li.category_btn:first-child:nth-last-child(2) ~ .category_btn {
    width: 265px;
  }

  /* 3つの場合 */
  #makerNavi ul li.category_btn:first-child:nth-last-child(3),
  #makerNavi ul li.category_btn:first-child:nth-last-child(3) ~ .category_btn {
    width: 265px;
  }

  /* 4つの場合 */
  #makerNavi ul li.category_btn:first-child:nth-last-child(4),
  #makerNavi ul li.category_btn:first-child:nth-last-child(4) ~ .category_btn {
    width: 262px;
  }

  /* 5つの場合 */
  #makerNavi ul li.category_btn:first-child:nth-last-child(5),
  #makerNavi ul li.category_btn:first-child:nth-last-child(5) ~ .category_btn {
    width: 211px;
  }
  /* 6つの場合 */
  #makerNavi ul li.category_btn:first-child:nth-last-child(6),
  #makerNavi ul li.category_btn:first-child:nth-last-child(6) ~ .category_btn {
    width: 175px;
  }
  /* 7つの場合 */
  #makerNavi ul li.category_btn:first-child:nth-last-child(7),
  #makerNavi ul li.category_btn:first-child:nth-last-child(7) ~ .category_btn {
    width: 159px;
  }
}

#makerNavi ul li span {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans Japanese medium";
  font-size: 14px;
  height: 44px;
  cursor: pointer;
  position: relative;
  width: 100%;
}
@media screen\0 {
  #makerNavi ul li span {
    padding-top: 3px;
  }
}

#makerNavi ul li span i {
  font-size: 17px;
  margin-left: 10px;
}
@media screen\0 {
  #makerNavi ul li span i {
    padding-bottom: 4px;
  }
}

#makerNavi ul li span:before {
  content: "";
  background-color: #a2a2a2;
  display: block;
  position: absolute;
  width: 1px;
  height: 22px;
  top: 50%;
  margin-top: -11px;
  right: 0;
}
#makerNavi ul li:last-child span:before {
  content: none;
}
#makerNavi ul li span:hover:after {
  content: "";
  background-color: #cc1b38;
  display: block;
  position: absolute;
  width: 100%;
  height: 5px;
  bottom: 0;
  left: 0;
}

#makerNavi ul li .menu_over {
  display: none;
  background-color: #fff;
  padding: 0 0 43px 0;
  position: absolute;
  top: 44px;
  left: 0;
  width: 100%;
  z-index: 999;
  overflow: auto;
}

@media only screen and (min-width: 768px) {
  /*maker menu高さ取得用に初期状態は表示とする*/
  #makerNavi ul li .menu_over {
    display: block;
    left: -9999999px;
  }

  /*ロードが完了するまでmenuを表示しない*/
  #makerNavi ul li.category_btn span {
    visibility: hidden;
  }
}

#makerNavi ul li.hover .menu_over {
  display: block !important;
}

#makerNavi ul li a:hover {
  text-decoration: none;
}

#makerNavi ul li .menu_over .childlist {
  display: inline-block;
  border-left: 1px solid #bebebe;
  border-right: 1px solid #bebebe;
  border-bottom: 1px solid #bebebe;
  height: auto;
  padding: 16px 0;
  float: left;
}
#makerNavi ul li .menu_over .childlist li {
  display: block;
  float: none;
}
#makerNavi ul li .menu_over .childlist li span {
  box-sizing: border-box;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 206px;
  min-height: 46px;
  height: auto;
  letter-spacing: 0;
  padding: 5px 38px 5px 16px;
  position: relative;
  padding-top: 15px\9; /* IE10以下 */
}
@media all and (-ms-high-contrast: none) {
  #makerNavi ul li .menu_over .childlist li span {
    padding-top: 15px;
  }
}
#makerNavi ul li .menu_over .childlist li span:before {
  content: none;
}
#makerNavi ul li .menu_over .childlist li span:after {
  content: "▶";
  display: block;
  font-size: 14px;
  position: absolute;
  right: 15px;
  top: 50%;
  bottom: auto;
  left: auto;
  transform: translateY(-50%);
  background-color: transparent;
  width: auto;
  height: auto;
}
#makerNavi ul li .menu_over .childlist li span:hover {
  background-color: #727171;
  color: #fff;
}
#makerNavi ul li .menu_over .childlist li span:hover:after {
  content: "▶";
  color: #fff;
  display: block;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
#makerNavi ul li .menu_over .childlist.level01 {
  position: relative;
  background-color: #f8f8f8;
}
#makerNavi ul li .menu_over .childlist.level01 li span {
  font-size: 16px;
  font-family: "Noto Sans Japanese medium";
}
#makerNavi ul li .menu_over .childlist.level02 {
  background-color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(100%);
  width: 280px;
}
#makerNavi ul li .menu_over .childlist.level02 li span {
  font-size: 13px;
  font-family: "Noto Sans Japanese";
}
#makerNavi ul li .menu_over .childlist.level03 {
  background-color: #f8f8f8;
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(100%);
  width: 340px;
}
#makerNavi ul li .menu_over .childlist.level03 li {
}
#makerNavi ul li .menu_over .childlist.level03 li span {
  font-size: 12px;
  font-family: "Noto Sans Japanese";
}
#makerNavi ul li .menu_over .childlist.level01 li.hover .childlist.level02 {
  display: block !important;
}
#makerNavi ul li .menu_over .childlist.level02 li.hover .childlist.level03 {
  display: block !important;
}
#makerNavi ul li .menu_over a.menu_product_detail {
  box-sizing: border-box;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(100%);
  background-color: #fff;
  padding: 55px 45px 66px 45px;
  width: 372px;
  /*min-height: 500px;*/
  border-bottom: 1px solid #bebebe;
  border-left: 1px solid #bebebe;
  border-right: 1px solid #bebebe;
}
#makerNavi
  ul
  li
  .menu_over
  .childlist.level01
  > li.hover
  > a.menu_product_detail {
  display: block !important;
}
#makerNavi
  ul
  li
  .menu_over
  .childlist.level02
  > li.hover
  > a.menu_product_detail {
  display: block !important;
}
#makerNavi
  ul
  li
  .menu_over
  .childlist.level03
  > li.hover
  > a.menu_product_detail {
  display: block !important;
}

/*
#makerNavi ul li .menu_over .childlist.level03 li.hover a.menu_product_detail.menu_product_detail3,
#makerNavi ul li .menu_over .childlist.level02 li.hover a.menu_product_detail.menu_product_detail2,
#makerNavi ul li .menu_over .childlist.level01 li.hover a.menu_product_detail.menu_product_detail1{
	display: block !important;
}*/

#makerNavi ul li .menu_over a.menu_product_detail img {
  display: block;
  margin: 0 auto 40px auto;
}
#makerNavi ul li .menu_over a.menu_product_detail .name {
  font-family: "Noto Sans Japanese bold";
  font-size: 18px;
  color: #000;
  text-decoration: none;
  text-align: center;
}

@media only screen and (min-width: 768px) {
  #makerNavi ul li .menu_over .childlist.level02 {
    /*display: none !important;*/
  }
  #makerNavi ul li .menu_over .childlist.level03 {
    /*display: none !important;*/
  }
}

@media only screen and (max-width: 767px) {
  #makerNavi {
    background-color: transparent;
    position: static;
    height: auto;
  }
  #makerNavi .inner {
    padding: 0;
  }
  #makerNavi ul {
    width: 100%;
    height: auto;
    border-top: 1px solid #c6c6c6;
    border-bottom: 1px solid #c6c6c6;
  }
  #makerNavi ul li {
    float: none;
    clear: both;
  }
  #makerNavi ul li.category_btn > span {
    background: url(../_img/master/navi_plus.png) 94% center no-repeat #e7e7e7;
    background-size: 16px auto;
    box-sizing: border-box;
    color: #474747;
    display: block;
    font-size: 16px;
    font-family: "Noto Sans Japanese bold";
    width: 100%;
    height: 46px;
    line-height: 46px;
    padding-left: 20px;
  }
  #makerNavi ul li.category_btn.active > span {
    background: url(../_img/master/navi_close.png) 94% center no-repeat #e7e7e7;
    background-size: 16px auto;
  }
  #makerNavi ul > li.category_btn:nth-child(2n) > span {
    background-color: #fff;
  }
  #makerNavi ul li span:before {
    content: none;
  }
  #makerNavi ul li span i {
    display: none;
  }

  #makerNavi ul li span:hover:after {
    content: none;
  }

  #makerNavi ul li .menu_over {
    padding: 10px 6.2%;
    position: static;
    background-color: transparent;
    border-top: 1px solid #c6c6c6;
  }

  #makerNavi ul li.hover .menu_over {
    display: block;
  }
  #makerNavi ul li .menu_over .childlist {
    display: block;
    border: none;
    height: auto;
    min-height: 0;
    padding: 0;
    float: none;
  }
  #makerNavi ul li .menu_over .childlist li a {
    display: block;
    height: auto;
    padding: 5px 0 5px 18px;
    position: relative;
  }
  #makerNavi ul li .menu_over .childlist li a:hover {
    color: #000;
    text-decoration: none;
  }
  #makerNavi ul li .menu_over .childlist li a:after {
    content: "";
    left: 0;
    top: 50%;
    bottom: auto;
    right: auto;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 9px;
    border-color: transparent transparent transparent #000000;
    display: block;
    position: absolute;
    transform: translateY(-50%);
    background-color: transparent;
    width: auto;
    height: auto;
  }
  #makerNavi ul li .menu_over .childlist li a {
    word-wrap: break-word;
    font-size: 13px;
    font-family: "Noto Sans Japanese bold";
  }
  #makerNavi ul li .menu_over .childlist.level01 {
    background-color: transparent;
  }
}

#makerNavi.audio .logo {
  /* width:202px; */
}
#makerNavi.audio .logo img {
  height: 32px;
  width: auto;
}
#makerNavi.audio ul li .menu_over {
  padding: 20px 0;
}

#makerNavi.audio ul li .menu_over ul {
  width: 1150px;
  height: auto;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
}
#makerNavi.audio ul li .menu_over ul:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}
#makerNavi.audio ul li .menu_over ul li {
  width: 183px;
  margin-right: 10px;
  margin-bottom: 30px;
  float: none;
}
#makerNavi.audio ul li .menu_over ul li:nth-child(6n) {
  margin-right: 0;
}
#makerNavi.audio ul li .menu_over ul li a {
  width: 184px;
  margin-bottom: 10px;
  text-decoration: none;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
#makerNavi.audio ul li .menu_over ul li a:hover {
  color: #898888;
}
#makerNavi.audio ul li .menu_over ul li a img {
  max-width: 100%;
  height: auto;
}
@media screen\0 {
  #makerNavi.audio ul li .menu_over ul li a img {
    width: 100%;
  }
}
#makerNavi.audio ul li .menu_over ul li a .image {
  width: 184px;
  height: 184px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #f2f2f2;
  margin-bottom: 10px;
}
#makerNavi.audio ul li .menu_over ul li a .text {
  font-family: "Noto Sans Japanese bold";
  text-align: center;
  line-height: 1.4;
}
#makerNavi.audio ul li .menu_over ul li a:hover {
  text-decoration: none;
}

@media only screen and (min-width: 768px) {
  /* 1つの場合 */
  #makerNavi.audio ul li.category_btn:only-child {
    width: 199px;
  }

  /* 2つの場合 */
  #makerNavi.audio ul li.category_btn:first-child:nth-last-child(2),
  #makerNavi.audio
    ul
    li.category_btn:first-child:nth-last-child(2)
    ~ .category_btn {
    width: 270px;
  }

  /* 3つの場合 */
  #makerNavi.audio ul li.category_btn:first-child:nth-last-child(3),
  #makerNavi.audio
    ul
    li.category_btn:first-child:nth-last-child(3)
    ~ .category_btn {
    width: 270px;
  }

  /* 4つの場合 */
  #makerNavi.audio ul li.category_btn:first-child:nth-last-child(4),
  #makerNavi.audio
    ul
    li.category_btn:first-child:nth-last-child(4)
    ~ .category_btn {
    width: 249px;
  }

  /* 5つの場合 */
  #makerNavi.audio ul li.category_btn:first-child:nth-last-child(5),
  #makerNavi.audio
    ul
    li.category_btn:first-child:nth-last-child(5)
    ~ .category_btn {
    width: 199px;
  }
}

@media only screen and (max-width: 767px) {
  #makerNavi .logo {
    display: none;
  }
  #makerNavi.audio ul li .menu_over {
    padding: 10px;
  }
  #makerNavi.audio ul li .menu_over ul {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
    border-top: none;
    border-bottom: none;
  }
  #makerNavi.audio ul li .menu_over ul:after {
    content: none;
  }
  #makerNavi.audio ul li .menu_over ul li {
    width: 49%;
    float: none;
    margin-right: 0;
    margin-bottom: 10px;
  }
  #makerNavi.audio ul li .menu_over ul li a {
    box-sizing: border-box;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
  }
  #makerNavi.audio ul li .menu_over ul li a img {
    max-width: 176px;
    height: auto;
    width: 100%;
  }
  #makerNavi.audio ul li .menu_over ul li a .image {
    background-color: #fff;
    width: 100%;
    height: 180px;
  }
  #makerNavi.audio ul li .menu_over ul li a .text {
    font-size: 12px;
  }
}

.spmenu {
  display: none;
}
#gNaviSp {
  display: none;
}

@media only screen and (max-width: 767px) {
  #subNavi {
    display: none;
  }
  .spmenu {
    display: block;
    width: 26px;
    height: 18px;
    float: right;
    text-align: center;
    margin: 16px 20px 0 0;
    position: relative;
    top: 0;
    right: 0;
    line-height: 1;
    transition: all 0.4s;
    box-sizing: border-box;
  }
  .spmenu span {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #727272;
  }
  .spmenu span:nth-of-type(1) {
    top: 0;
  }
  .spmenu span:nth-of-type(2) {
    top: 7.5px;
  }
  .spmenu span:nth-of-type(3) {
    bottom: 0;
  }
  .spmenu.active span:nth-of-type(1) {
    -webkit-transform: translateY(7.5px) rotate(-45deg);
    transform: translateY(7.5px) rotate(-45deg);
  }
  .spmenu.active span:nth-of-type(2) {
    opacity: 0;
  }
  .spmenu.active span:nth-of-type(3) {
    -webkit-transform: translateY(-7.5px) rotate(45deg);
    transform: translateY(-7.5px) rotate(45deg);
  }
  #gNaviSp {
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    z-index: 9999;
  }
  #gNaviSp .overlay {
    height: 2000px;
  }
  #gNaviSp ul {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0px 19px 17px -17px rgba(0, 0, 0, 0.75);
  }
  #gNaviSp ul li {
    border-bottom: 1px solid #e5e5e5;
  }
  #gNaviSp ul li:first-child {
    border-top: 1px solid #e5e5e5;
  }
  #gNaviSp ul li a,
  #gNaviSp ul li span {
    display: block;
    height: 45px;
    line-height: 45px;
    position: relative;
    padding-left: 10px;
    color: #000;
  }
  #gNaviSp ul li img {
    vertical-align: middle;
    width: 28px;
    margin-left: 10px;
  }
  #gNaviSp ul li.search #searchBox {
    float: none;
    padding: 10px;
    text-align: center;
  }
  #gNaviSp ul li.search #searchBox p {
    float: none;
  }
  #gNaviSp ul li.search #searchBox .searchInput {
    width: 205px;
  }
}

#contentHeader {
  margin: 0;
  padding: 0 0 25px 0;
}
/* === clearfix ==*/
#contentHeader:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
#contentHeader {
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  #contentHeader {
    padding: 10px;
    display: block;
  }
}

/* Hides from IE-mac \*/
* html #contentHeader {
  height: 1%;
}
#contentHeader {
  display: block;
}
/* End hide from IE-mac */

/*pathNavi*/
#pathNavi {
  margin: 0px 0 5px 0;
  padding: 0;
  float: left;
  display: inline;
  width: 580px;
}

#pathNavi ul {
  margin: 0 0 0px 0;
  padding: 0;
}
#pathNavi li {
  float: left;
  line-height: 110%;
  list-style-type: none;
  color: #999;
  font-size: 10px;
}

#pathNavi li a {
  margin-right: 5px;
  padding-right: 10px;
  background: url(../_img/master/pathnavi.gif) no-repeat right 2px;
  color: #999;
}
@media only screen and (max-width: 767px) {
  #pathNavi {
    margin: 0px 0 0 0;
    float: none;
    display: block;
    width: 100%;
  }
}

#social {
  margin: 0px 0 0 0;
  float: right;
  display: inline;
}

/* === clearfix ==*/
#social:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

#social {
  display: inline-block;
}

/* Hides from IE-mac \*/
* html #social {
  height: 1%;
}
#social {
  display: block;
}
/* End hide from IE-mac */

#social li {
  float: left;
  display: inline;
  width: 110px;
}

/* Common Layout
------------------------------------------------------------------*/
#header {
  background-color: #fff;
  width: 100%;
  height: 53px;
  position: fixed;
  top: 0;
  z-index: 99999;
}
@media only screen and (max-width: 767px) {
  #header {
    height: 50px;
  }
}

/* === clearfix ==*/
#header:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

#header h1 {
  float: left;
  margin: 12px 0 0 0;
}
@media only screen and (max-width: 767px) {
  #header h1 {
    margin: 12px 0 0 2px;
  }
  #header h1 img {
    width: 200px;
    height: auto;
  }
}

#header p {
  float: right;
  display: inline;
}

.header_navi {
  float: right;
  width: 745px;
}
@media only screen and (max-width: 767px) {
  .header_navi {
    display: none;
  }
}

#header .header_navi #subNavi {
  float: left;
  padding-top: 18px;
  padding-right: 5px;
}
#header .header_navi #subNavi li {
  float: left;
  margin-right: 15px;
}
#header .header_navi #subNavi li a {
  font-size: 12px;
}
#header .header_navi #subNavi li a:hover {
  color: #898888;
  text-decoration: none;
}

#header .header_navi .shop_link {
  float: left;
  padding-top: 12px;
  font-family: "Noto Sans Japanese medium";
  font-size: 10px;
}
#header .header_navi .shop_link img {
  vertical-align: middle;
}
#header .header_navi .shop_link a {
  color: #fff;
  font-size: 10px !important;
}
#header .header_navi .shop_link a:hover {
  text-decoration: none;
  opacity: 0.7;
  filter: alpha(opacity=70); /* ie lt 8 */
  -ms-filter: "alpha(opacity=70)"; /* ie 8 */
}

#header #searchBox {
  float: right;
  padding-top: 12px;
}

#header #searchBox p {
  margin: 0;
}

#header #searchBox input {
  vertical-align: middle;
}

#header #searchBox .searchInput {
  width: 152px;
  height: 26px;
  border: 1px solid #a0a0a0;
  padding: 0 10px 0 10px;
  margin: 0 0 0 0;
}
#header #searchBox .search_btn {
  background: url(../_img/master/icon_search.png) center center no-repeat
    #9b9b9b;
  width: 28px;
  height: 28px;
  border: none;
  text-indent: -9999px;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  #header #searchBox .search_btn {
    margin-top: -0.5px;
  }
}

#gWrapper {
  padding: 53px 0 0 0;
  background-color: #f2f2f2;
}

#gWrapper.makerpage {
  padding: 97px 0 130px 0;
}
#gWrapper.makerpage_new {
  padding: 97px 0 130px 0;
}
#gWrapper.makerpage.product_audio {
  background-color: #fff;
}

#gWrapperInner {
  width: 100%;
  margin: 0 auto;
  padding-top: 0;
  background-color: #fff;
}
#gContainer {
  margin: 0 auto;
  width: 960px;
  padding: 65px 0 130px 0;
}

.full #gContainer {
  width: 1120px;
}

#gContainer.makerpage {
  margin: 0 auto;
  width: 960px;
  padding: 60px 0 0 0;
}
#gContainer.makerpage_new {
  margin: 0 auto;
  width: 1200px;
  padding: 60px 0 0 0;
}

.product_audio #gContainer.makerpage_new {
  width: 1120px;
  padding: 30px 0 0 0;
}
@media only screen and (max-width: 767px) {
  #gWrapper {
    padding: 50px 0 0 0;
  }
  #gWrapper.makerpage {
    padding: 50px 0 50px 0;
  }
  #gWrapper.makerpage_new {
    padding: 50px 0 50px 0;
  }
  #gWrapperInner {
    width: 100%;
    padding-top: 0;
  }
  #gContainer {
    width: 100%;
    padding: 50px 0 50px 0;
  }
  .full #gContainer {
    width: 100%;
  }
  #gContainer.makerpage {
    width: 100%;
    padding: 0;
  }
  #gContainer.makerpage_new {
    width: 100%;
    padding: 0;
  }
  .product_audio #gContainer.makerpage_new {
    width: 100%;
    padding: 0 0 0 0;
  }
}

/* === clearfix ==*/
#gContainer:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

#gContainer {
  display: inline-block;
}

/* Hides from IE-mac \*/
* html #gContainer {
  height: 1%;
}
#gContainer {
  display: block;
}
/* End hide from IE-mac */

#contentArea {
  width: 960px;
  clear: both;
}

.makerpage_new #contentArea {
  width: 1200px;
  clear: both;
}
.product_audio .makerpage_new #contentArea {
  width: 1120px;
  clear: both;
}

.full #contentArea {
  background: none;
  width: 1120px;
  clear: both;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  #contentArea {
    width: 100%;
    padding: 0 20px 20px 20px;
  }
  .full #contentArea {
    width: 100%;
  }
  .makerpage_new #contentArea {
    width: 100%;
    padding: 0 20px 20px 20px;
  }
  .product_audio .makerpage_new #contentArea {
    width: 100%;
    padding: 0 20px 0 20px;
  }
}

/* === clearfix ==*/
#contentArea:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

#contentArea {
  display: inline-block;
}

/* Hides from IE-mac \*/
* html #contentArea {
  height: 1%;
}
#contentArea {
  display: block;
}
/* End hide from IE-mac */

#mainArea {
  float: left;
  display: inline;
  width: 692px;
}

.full #mainArea {
  float: none;
  display: block;
  width: 1120px;
}
@media only screen and (max-width: 767px) {
  #mainArea {
    float: none;
    display: block;
    width: 100%;
  }
  .full #mainArea {
    float: none;
    display: block;
    width: 100%;
  }
}

h2 {
  border-bottom: 1px solid #000;
  font-size: 160%;
  font-weight: bold;
  margin: 0 0 15px 0;
}
@media only screen and (max-width: 767px) {
  h2 {
    font-size: 120%;
    padding-bottom: 5px;
  }
  h3 span {
    background-color: #a3a3a3;
    color: #fff;
    padding: 5px 10px;
    display: block;
    font-size: 13px;
    font-weight: bold;
  }
}

.section h2 {
  text-align: center;
  margin-bottom: 35px;
  font-family: "Noto Sans Japanese bold";
  font-size: 25px;
  border-bottom: none;
}
@media only screen and (max-width: 767px) {
  .section h2 {
    margin-bottom: 25px;
    font-size: 18px;
  }
}

h2.img {
  border: none;
  margin: 0 0 25px 0;
}

#mainArea h3.img {
  border: none;
  background: none;
  padding: 0;
  margin: 0 0 15px 0;
}

.titleBottomLink {
  text-align: right;
  margin: -35px 0 30px 0;
}

.titleBottomLink a {
  font-size: 10px;
  color: #949393;
  text-decoration: underline;
}

.titleBottomLink a:hover {
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  .titleBottomLink {
    padding-right: 10px;
  }

  .titleBottomLink a {
    color: #fff;
  }
}

#subArea {
  float: right;
  display: inline;
  width: 212px;
  padding-left: 27px;
  min-height: 658px;
  background: url("../_img/top/bg_side.gif") no-repeat scroll left top
    transparent;
}
@media only screen and (max-width: 767px) {
  #subArea {
    float: none;
    display: block;
    width: 100%;
    padding-left: 0;
    min-height: 0;
    background: none;
    margin-top: 50px;
  }
}

#subArea h2 {
  color: #567494;
  font-weight: bold;
  font-size: 120%;
  margin: 0 0 5px 0;
}

#subArea .indent {
  margin: 0 0 0 0px;
  width: 212px;
}
@media only screen and (max-width: 767px) {
  #subArea .indent {
    margin: 0 0 0 0px;
    width: 100%;
  }
}

#subArea ul {
  margin: 0 0 20px 0;
}

#subArea ul li {
  background: url(../_img/master/line01.gif) repeat-x left bottom;
  padding: 3px 0 3px 10px;
  font-size: 100%;
}

#subArea ul.noLine li {
  background: none;
}

#subArea ul li.last {
  background: none;
}

#subArea ul li a {
  background: url(../_img/master/acs01.gif) no-repeat left 3px;
  padding: 0 0 0 8px;
  color: #000;
}

#subArea .sideFreeArea {
  margin-bottom: 20px;
}

#subArea ul li ul {
  margin: 0 0 0 0;
}

.pageTop {
  position: fixed;
  bottom: 40px;
  right: 40px;
}
@media only screen and (max-width: 767px) {
  .pageTop {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 40px;
    height: 30px;
  }
  .pageTop a {
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  .pageTop img {
    width: 25px;
    height: auto;
  }
}

#footer {
  background-color: #6c6c6c;
  width: 100%;
  padding: 65px 0;
}

#footer .sns {
  width: 400px;
  margin: 0 auto 50px auto;
}
#footer .sns p.ttl {
  color: #fff;
  font-family: "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ",
    "Noto Sans Japanese bold";
  font-size: 11px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
#footer .sns .sns_box:first-child {
  float: left;
}
#footer .sns .sns_box:last-child {
  float: right;
}
#footer .sns ul.flex_center {
  display: flex;
  align-items: center;
}
#footer .sns li {
  border-right: 1px solid #8c8c8c;
  padding-right: 18px;
  margin-right: 18px;
}
#footer .sns li a {
  display: block;
}
#footer .sns li a:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70); /* ie lt 8 */
  -ms-filter: "alpha(opacity=70)"; /* ie 8 */
}
#footer .sns li:last-child {
  padding-right: 0;
  margin-right: 0;
  border-right: none;
}
#footerNavis {
  width: 780px;
  margin: auto;
}
#footerNavis .fNavi01,
#footerNavis .fNavi02 {
  float: left;
  margin-right: 40px;
}
#footerNavis .fNavi01 a,
#footerNavis .fNavi02 a,
#footerNavis .fNavi01 span,
#footerNavis .fNavi02 span {
  color: #fff;
  font-family: "Noto Sans Japanese medium";
}
#footerNavis .fNavi01 span,
#footerNavis .fNavi02 span {
  font-size: 15px;
}

#footerNavis .fNavi01 li {
  margin-bottom: 5px;
}
#footerNavis .fNavi01 li:first-child {
  margin-bottom: 12px;
}
#footerNavis .fNavi01 li:first-child a {
  font-size: 15px;
}
#footerNavis .fNavi01 li:before {
  content: "▶";
  color: #9b9b9b;
  margin-right: 5px;
}
#footerNavis .fNavi01 li:first-child:before {
  content: none;
}
#footerNavis .fNavi02 li {
  margin-bottom: 15px;
}
#footerNavis .fNavi02 li a {
  font-size: 15px;
}
#footerNavis .fNavi02 li:before {
  content: "▶";
  color: #9b9b9b;
  margin-right: 5px;
}
#footer .copy {
  color: #fff;
  font-size: 13px;
  font-family: "Noto Sans Japanese demilight";
  margin-top: 40px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #footer {
    width: 100%;
    padding: 24px 20px 0 30px;
  }

  #footer .sns {
    width: 300px;
    margin: 0 auto 30px auto;
    text-align: center;
  }
  #footer .sns p.ttl {
    font-size: 9px;
    margin-bottom: 8px;
  }
  #footer .sns li {
    display: inline-block;
    float: none;
    padding-right: 10px;
    margin-right: 10px;
  }
  #footer .sns li a img {
    width: auto;
    height: 24px;
  }
  #footerNavis {
    width: 100%;
    margin: auto;
  }
  #footerNavis .fNavi01,
  #footerNavis .fNavi02 {
    float: none;
    margin-right: 0;
  }
  #footerNavis .fNavi01 {
    margin-bottom: 20px;
  }
  #footerNavis .fNavi01 a,
  #footerNavis .fNavi02 a {
    font-size: 9px;
    font-family: "Noto Sans Japanese medium";
  }
  #footerNavis .sp_left {
    float: left;
    width: 50%;
  }
  #footerNavis .sp_right {
    float: right;
    width: 50%;
  }
  #footerNavis .fNavi01 li:first-child {
    margin-bottom: 10px;
  }
  #footerNavis .fNavi01 li:first-child a {
    font-size: 12px;
  }
  #footerNavis .fNavi01 span,
  #footerNavis .fNavi02 span {
    font-size: 12px;
  }
  #footerNavis .fNavi01 li:before,
  #footerNavis .fNavi02 li:before {
    font-size: 8px;
  }
  #footerNavis .fNavi02 li {
    margin-bottom: 10px;
  }
  #footerNavis .fNavi02 li a {
    font-size: 12px;
  }
  #footerNavis .fNavi02 li:before {
    content: "▶";
    color: #9b9b9b;
    margin-right: 5px;
  }
  #footer {
    padding-bottom: 15px;
  }
  #footer .copy {
    font-size: 8px;
    margin-top: 40px;
  }
}

.gray {
  background: #000;
  opacity: 0.3;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  z-index: 50;
}

/* fontsize,align */
.size18 {
  font-size: 18px !important;
}
.size22 {
  font-size: 22px !important;
}
@media only screen and (max-width: 767px) {
  .size18 {
    font-size: 16px !important;
  }
  .size22 {
    font-size: 18px !important;
  }
}

.textLeft {
  text-align: left !important;
}
