@charset "utf-8";
header .pc_disp {
  display: block;
}
header .sp_disp {
  display: none;
}
header .sub_menu_pc {
  display: block;
}
header .sub_menu_sp {
  display: none;
}
header {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
header h1 {
  width: 300px;
  margin-left: 10px;
}
header h1 img {
  width: 100%;
  display: block;
}
header nav {
  margin-left: 20px;
}
header nav ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  list-style-type: none;
  padding-top: 15px;
}
header nav ul li {
  position: relative;
}
header nav > ul > li + li {
  margin-left: 20px;
}
header nav ul li a {
  text-decoration: none;
  font-size: 13px;
  font-weight: bold;
  padding-bottom: 2px;
  border-bottom: 2px solid #ECECEC;
  display: block;
  color: #333;
}
header nav ul li a.active ,
header nav ul li a:hover  {
  border-bottom: 2px solid #F18D0B;
}
header nav ul li a.icon {
  position: relative;
  padding-right: 15px;
}
header nav ul li a i {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY( -50% );
  color: #F18D0B;
  font-size: 18px;
  text-align: right;
}
/* submenu */
header nav ul li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 999;
}
header nav ul li:hover ul {
  display: block;
}
header nav ul li ul li {
  line-height: 2em;
  border-bottom: 1px solid #eee;
}
header nav ul li ul li a {
  display: block;
  background-color: #fafafa;
  border: none;
  white-space: nowrap;
  padding: 5px 10px;
}
header nav ul li ul li a:hover {
  display: block;
  background-color: #ccc;
  border: none;
}
/* sub_menu_pc */
header .sub_menu_pc {
  margin-left: auto;
  margin-right: 5px;
}
header .sub_menu_pc ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  list-style-type: none;
  padding-right: 0;
}
header .sub_menu_pc ul li {
  margin-left: 10px;
}
header .sub_menu_pc ul li.myclazzio a {
  display: block;
  border-radius: 10px;
  background-color: #EE8C00;
  position: relative;
  padding: 5px 10px 5px 40px;
  text-decoration: none;
  color: #fff;
}
header .sub_menu_pc ul li.myclazzio a .icon {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY( -50% );
  width: 20px;
}
header .sub_menu_pc ul li.cart {
  display: none;
}
header .sub_menu_pc ul li.cart a {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
}
header .sub_menu_pc ul li.cart a .cart_icon {
  display: block;
  width: 20px;
}
header .sub_menu_pc ul li.cart a .cart_count {
  position: relative;
  display: inline-block;
  padding: 3px 10px;
  min-width: 20px;
  color: #555;
  font-size: 16px;
  background: #EE8C00;
  color: #fff;
  margin-left: 5px;
  text-decoration: none;
}
header .sub_menu_pc ul li.cart .cart_count::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -12px;
  margin-top: -6px;
  border: 6px solid transparent;
  border-right: 6px solid #EE8C00;
}
header .sub_menu_pc ul li.tekigo a {
  display: block;
  border-radius: 10px;
  background-color: #525250;
  position: relative;
  padding: 5px 10px 5px 10px;
  text-decoration: none;
  color: #fff;
  text-align: center;
}

header .sub_menu_pc ul li.search {
  position: relative;
  height: 40px;
  width: 30px;
}
#search .input_area {
  width: 0;
  transition: all 0.3s ease;
  position: absolute;
  top: 0;
  right: 0;
}

#search input {
  display: none;
}
#search button {
  width: 30px;
  position: absolute;
  right: 0;
  outline: none;
}
#search button i {
  margin-top: 3px;
  line-height: 34px;
}
/* search active */
#search .input_area.active {
  width: 250px;
  height: 40px;
  background-color: #999;
  border-radius: 6px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  flex-direction: row;
  align-items: center;
  padding: 0 10px;
}
#search .input_area.active input {
  display: block;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  padding-left: 3px;
  height: 25px;
  width: 200px;
}
#search .input_area.active button {
  position: static;
  border: 1px solid #eee;
  background-color: #eee;
  border-radius: 0 6px 6px 0;
  width: 30px;
  height: 25px;
}
#search .input_area.active button i {
  margin-top: 0;
  line-height: 25px;
}

header .sub_menu_pc ul li.language a { 
  display: none;
  /* text-decoration: none; */
  /* color: #333; */
}

/***************************************************************************/
@media ( max-width:1100px ) {
  header h1 {
    order: 1;
  }
  header nav {
    order: 3;
    justify-self: center;
    padding: 0 50px;
    margin: 0 auto 10px;
  }
  header .sub_menu_pc {
    order: 2;
  }
  header nav ul {
    padding-top: 0;
  }

}

/***************************************************************************/
@media ( max-width:980px ) {

}

/***************************************************************************/
@media ( max-width:768px ) {
  /* ヘッダー */
  header h1 {
    max-width: 250px;
    min-width: 130px;
    width: 30%;
  }
  header .pc_disp {
    display: none;
  }
  header .sp_disp {
    display: block;
  }
  header .sub_menu_pc {
    display: block;
  }
  header .sub_menu_pc ul {
    padding-right: 45px;
    height: 70px;
  }
  header nav {
    display: none;
  }
  header .sub_menu_sp {
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
    display: block;
    order: 4;
    border-top: 1px solid #D7D7D7;
    margin-bottom: 20px;
  }
  header .sub_menu_sp ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    list-style-type: none;
    display: none; /* 非表示 */
  }
  header .sub_menu_sp ul li {
    margin: 10px;
  }
  header .sub_menu_sp ul li.myclazzio {
    display: none;
  }
  header .sub_menu_sp ul li.myclazzio a {
    display: block;
    border-radius: 10px;
    background-color: #EE8C00;
    position: relative;
    padding: 5px 10px 5px 40px;
    text-decoration: none;
    color: #fff;
  }
  header .sub_menu_sp ul li.myclazzio a .icon {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY( -50% );
    width: 20px;
  }
  header .sub_menu_sp ul li.tekigo a {
    display: block;
    border-radius: 10px;
    background-color: #525250;
    position: relative;
    padding: 5px 10px 5px 10px;
    text-decoration: none;
    color: #fff;
    text-align: center;
  }

  /* toggle menu */
  header .toggle_menu {

  }
  /* ナビゲーション */
  header .toggle_menu {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    background: #fff;
    color: #000;
    text-align: center;
    transform: translateY(-100%);
    transition: all 0.6s;
    width: 100%;
  }
  header .toggle_menu ul {
      background: #fafafa;
      margin: 0 auto;
      padding: 0;
      width: 100%;
      max-height: 90vh;
      overflow-y: scroll;
      border-bottom: 1px solid #aaa;
  }
  header .toggle_menu ul li {
      font-size: 1.1em;
      list-style-type: none;
      padding: 0;
      width: 100%;
      border-bottom: 1px dotted #333;
  }
  header .toggle_menu ul li:last-child {
      /* padding-bottom: 0; */
      border-bottom: 0;
  }
  header .toggle_menu ul li a ,
  header .toggle_menu ul li span {
      display: block;
      color: #000;
      padding: 1em 0;
      text-decoration: none;
  }
  header .toggle_menu.active {
      transform: translateY(0%);
  }
  header .toggle_menu ul li.menu-item a ,
  header .toggle_menu ul li.menu-item:nth-of-type(4) a ,
  header .toggle_menu ul li.menu-item-search {
    border-left: none;
    border-right: none;
  }
  header .toggle_menu ul li.menu-item-search {
    height: 44px;
  }
  header .toggle_menu ul li.menu-item:nth-of-type(4) {
    margin-right: 0;
  }
  /* スマホサブメニュー */
  header .toggle_menu ul li span {
    cursor: pointer;
  }
  header .toggle_menu ul li span .fas {
    margin-left: 3px;
    color: #F18D0B;
    font-size: 18px;
  }
  header .toggle_menu ul li ul {
    display: none;
    border-bottom: 0;
    overflow-y: auto;
  }
  header .toggle_menu ul li ul li {
    font-size: 0.9em;
    background-color: #eee;
  }
  header .toggle_menu ul li ul li:last-of-type {
    border-bottom: 0;
  }


  /* ナビゲーションボタン */
  header .navToggle {
    display: block;
    position: absolute;    /* bodyに対しての絶対位置指定 */
    right: 10px;
    top: 15px;
    width: 42px;
    height: 51px;
    height: 42px;
    cursor: pointer;
    z-index: 3;
    background-color: rgba( 255, 255, 255, 0.8);
    /* border: 1px solid #666; */
    /* border-radius: 6px; */
    text-align: center;
	}
	header .navToggle.active {
		position: fixed;
		top: 23px;
	}
  header .navToggle span {
      display: block;
      position: absolute;    /* .navToggleに対して */
      width: 30px;
      border-bottom: solid 3px #666;
      -webkit-transition: .35s ease-in-out;
      -moz-transition: .35s ease-in-out;
      transition: .35s ease-in-out;
      left: 6px;
  }
  header .navToggle span:nth-child(1) {
      top: 9px;
  }
  header .navToggle span:nth-child(2) {
      top: 18px;
  }
  header .navToggle span:nth-child(3) {
      top: 27px;
  }
  header .navToggle span:nth-child(4) {
      display: none;
      border: none;
      color: #666;
      font-size: 9px;
      font-weight: bold;
      top: 34px;
  }
  /* 最初のspanをマイナス45度に */
  header .navToggle.active span:nth-child(1) {
    top: 18px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  /* 2番目と3番目のspanを45度に */
  header .navToggle.active span:nth-child(2),
  header .navToggle.active span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }



}
/***************************************************************************/
@media ( max-width:414px ) {

}

