@charset "UTF-8";
/*↓コマクリ調整↓*/
/*プレビューモード非表示*/
.fs-l-header {
  padding-top: 0;
}

a:hover {
  text-decoration: none;
}

[type=hidden], [type=text], [type=search], [type=tel], [type=url], [type=email], [type=password], [type=datetime], [type=date], [type=month], [type=week], [type=time], [type=datetime-local], [type=number], select, textarea {
  display: block;
}

/*↑コマクリ調整↑*/
#header {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: all 0.4s;
  /*　上に上がる動き　*/
  /*　下に下がる動き　*/
}
#header.fixed {
  position: fixed;
  z-index: 999;
  top: 0;
  width: 100%;
}
#header.fixed .first_header {
  height: 0;
  padding: 0;
}
#header.fixed .trird_header {
  display: none;
}
#header .first_header {
  background: #c10a11;
  padding: 13px 0;
  transition: all 0s;
}
#header .header_flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header .header_title {
  color: #fff;
  font-size: 14px;
}
#header .f_heder_nav {
  display: flex;
}
#header .f_heder_nav_list:last-child a {
  border-right: none;
  padding-right: 0;
}
#header .f_heder_nav_list a {
  display: block;
  color: #fff;
  font-size: 14px;
  padding: 0 10px;
  border-right: 1px solid #fff;
}
#header .second_header {
  background: #fff;
  padding: 10.5px 0;
  border-bottom: 1px solid #eeeeee;
}
#header .navToggle {
  display: none;
}
#header .navToggle .h_menu {
  width: 32px;
}
#header .header_logo {
  max-width: 179px;
  width: 100%;
}
#header .header_logo a {
  display: block;
}
#header .user_area {
  width: 46%;
  display: flex;
  justify-content: space-between;
}
#header .user_area .user_name {
  font-size: 14px;
}
#header .user_area .text_b {
  font-weight: bold;
}
#header .user_area .user_menbar {
  background: url(../img/header/menbar_icon.jpg);
  background-repeat: no-repeat;
  background-size: 18px 20px;
  background-position: left center;
  font-size: 14px;
  border-right: 1px solid #ccc;
}
#header .user_area .user_menbar a {
  display: block;
  padding: 0px 24px 0px 32px;
}
#header .user_area .cart_btn {
  background: url(../img/header/cart_icon.jpg);
  background-repeat: no-repeat;
  background-size: 22px 21.5px;
  background-position: left center;
  font-size: 14px;
}
#header .user_area .cart_btn a {
  display: block;
  padding: 0px 24px 0px 32px;
}
#header .user_area .cart_btn .cart_pic {
  display: none;
}
#header .trird_header {
  padding: 3px 0;
  background: #fff;
  border-bottom: 1px solid #eeeeee;
  transition: all 0.4s;
}
#header .g_nav {
  display: flex;
  width: 65%;
}
#header .g_nav .g_nav_list {
  display: flex;
  align-items: center;
}
#header .g_nav .g_nav_list.sp_only {
  display: none;
}
#header .g_nav .g_nav_list a {
  display: block;
  padding: 20px 20px 15px;
  border-bottom: 5px solid transparent;
}
#header .g_nav .g_nav_list a:hover {
  color: #c10a11;
  border-bottom: 5px solid #c10a11;
}
#header .search_area {
  width: 31%;
  background: #eeeeee;
  display: flex;
  border-radius: 30px;
  padding: 10px;
}
#header .search_area .item_input {
  border: none;
  background: #eeeeee;
  background-color: #eeeeee;
  outline: 0;
  width: 90%;
  font-size: 14px;
  letter-spacing: 1.5px;
  appearance: none;
}
#header .search_area .item_input:focus {
  box-shadow: none;
  outline: none;
  border: none;
  background-color: #eeeeee;
}
#header .search_area .submit_btn {
  border: none;
  outline: 0;
  max-width: 22px;
  padding: 0;
}
#header.UpMove {
  position: fixed;
  width: 100%;
  animation: UpAnime 0.5s forwards;
  z-index: 9999;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}
@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.menu_close {
  display: none;
}

@media (min-width: 1px) and (max-width: 1200px) {
  #header .user_area {
    width: 56%;
  }
}
@media (min-width: 1px) and (max-width: 1100px) {
  #header .g_nav {
    width: 73%;
  }
  #header .g_nav .g_nav_list a {
    padding: 20px 15px 15px;
  }
  #header .search_area {
    width: 26%;
  }
}
@media (min-width: 1px) and (max-width: 1050px) {
  #header .user_area {
    width: 63%;
  }
  #header .f_heder_nav_list a {
    padding: 0 7px;
  }
}
@media (min-width: 1px) and (max-width: 960px) {
  #header.fixed .search_area {
    display: none;
  }
  #header.fixed .trird_header {
    height: 0;
    padding: 0;
    margin: 0;
    display: block;
  }
  #header.fixed .trird_header .g_nav {
    margin: 0;
  }
  #header.fixed .trird_header .g_nav .g_nav_list a {
    font-size: 0;
    padding: 0;
  }
  #header .f_heder_nav {
    display: none;
  }
  #header .first_header .header_flex {
    justify-content: center;
  }
  #header .second_header {
    border: none;
  }
  #header .user_area {
    width: 10%;
    justify-content: flex-end;
  }
  #header .user_area .user_name {
    display: none;
  }
  #header .user_area .user_menbar {
    display: none;
  }
  #header .user_area .cart_btn {
    background: none;
  }
  #header .user_area .cart_btn a {
    padding: 0;
  }
  #header .user_area .cart_btn .cart_text {
    display: none;
  }
  #header .user_area .cart_btn .cart_pic {
    display: block;
    max-width: 32px;
    max-height: 39.5px;
    width: 100%;
    height: auto;
  }
  #header .navToggle {
    display: block;
    width: 10%;
  }
  #header .header_logo {
    width: 100%;
    max-width: 162px;
  }
  #header .trird_header {
    transition: all 0.6s;
    height: 115.19px;
  }
  #header .trird_header .header_flex {
    flex-direction: column;
  }
  #header .g_nav {
    width: 100%;
    justify-content: space-between;
    margin-bottom: 20px;
    transition: all 0.6s;
  }
  #header .g_nav .g_nav_list {
    width: 25%;
    text-align: center;
    display: block;
    transition: all 0.6s;
  }
  #header .g_nav .g_nav_list.pc_only {
    display: none;
  }
  #header .g_nav .g_nav_list.sp_only {
    display: block;
    transition: all 0.6s;
  }
  #header .g_nav .g_nav_list .sp_none {
    display: none;
  }
  #header .g_nav .g_nav_list:last-child a {
    border-right: none;
  }
  #header .g_nav .g_nav_list:nth-child(2) a {
    border-bottom: 1px solid transparent;
  }
  #header .g_nav .g_nav_list a {
    padding: 10px 0px 10px;
    border-bottom: 1px solid transparent;
    border-right: 1px solid #aaa;
  }
  #header .g_nav .g_nav_list a:hover {
    color: #333;
    border-bottom: 1px solid transparent;
  }
  #header .search_area {
    width: 30%;
    margin-bottom: 0;
    margin-left: auto;
  }
  #header .search_area .item_input {
    width: 95%;
    font-size: 14px;
  }
  #header .search_area .item_input::placeholder {
    color: transparent;
  }
  .menu_close.action {
    display: block;
    position: fixed;
    top: 15px;
    left: 308px;
    width: 32px;
    z-index: 10000;
  }
}
@media (min-width: 1px) and (max-width: 767px) {
  #header .first_header {
    padding: 7.5px 0;
    transition: all 0s;
    display: none;
  }
  #header .header_title {
    font-size: 11px;
  }
  #header .second_header {
    padding: 8.5px 0 5px;
  }
  #header .g_nav {
    margin-bottom: 15px;
  }
  #header .g_nav .g_nav_list {
    width: 24%;
  }
  #header .g_nav .g_nav_list:nth-child(3) {
    width: 24%;
  }
  #header .g_nav .g_nav_list:nth-child(4) {
    width: 28%;
  }
  #header .g_nav .g_nav_list a {
    font-size: 13px;
    font-weight: bold;
    padding: 4px 0 4px;
  }
  #header .search_area {
    margin-bottom: 0;
  }
}
@media (min-width: 1px) and (max-width: 362px) {
  #header .g_nav .g_nav_list a {
    font-size: 12px;
  }
}
@media (min-width: 1px) and (max-width: 340px) {
  #header .first_header .header_flex {
    width: 95%;
  }
  #header .header_title {
    font-size: 10px;
  }
  #header .g_nav .g_nav_list a {
    font-size: 11px;
  }
}/*# sourceMappingURL=header.css.map */