@charset "UTF-8";

/*********************************************************/
/*** 共通設定 ***/
/*********************************************************/
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN",
    "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial,
    helvetica, sans-serif;
  color: #3a3a3a;
  font-size: 16px;
  line-height: 1.625;
  letter-spacing: 0.1em;
}
ul {
  padding-inline-start: 0;
}
li {
  list-style: none;
}
.pc {
  display: block !important;
}
.sp {
  display: none !important;
}
.font_mont {
  font-family: "Montserrat", sans-serif;
}
/* リンクhover変化速度固定 */
a {
  transition: 0.3s;
}
.cmnwrap {
  max-width: 1000px;
  margin: 0 auto;
}
.cmn_inner {
  padding: 80px 0;
}
.sec_ttl {
  margin-bottom: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.sec_ttl_main {
  display: block;
  color: #3a3a3a;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}
.sec_ttl_sub {
  display: block;
  color: #9d9d9d;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.2em;
}
.more_btn {
  text-align: center;
  margin-top: 32px;
}
.more_btn a {
  display: block;
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #fff;
  padding: 14px 5px;
  background: #0582b2;
  box-sizing: border-box;
  border-radius: 5px;
  box-shadow: 0px 3px 6px #d3d3d3;
}
.more_btn a::after {
  position: absolute;
  right: 30px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f054";
}
.more_btn a:hover {
  text-decoration: none;
  opacity: 0.5;
}
body.scroll_lock {
  width: 100%; /* 画面崩れ防止用 */
  height: 100%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .cmnwrap {
    /* width: 90%; */
    width: 100%;
  }
  .cmn_inner {
    padding: 48px 0;
    /* padding: 100px auto; */
  }
  .sec_ttl {
    margin-bottom: 40px;
  }
  .sec_ttl_main {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .sec_ttl_sub {
    font-size: 12px;
  }
  .more_btn {
    text-align: center;
    margin-top: 32px;
  }
  .more_btn a {
    width: 85%;
    padding: 12px 5px;
    font-size: 14px;
    letter-spacing: 0.1em;
  }
}
/*********************************************************/
/*** ヘッダー ***/
/*********************************************************/
.fs-l-header {
  padding-top: 0;
  position: relative;
}
.fs-l-header__contents {
  display: block !important;
}
.fs-l-header__contents > * {
  padding: 0;
}
.header_info_container {
  width: 100%;
  background-color: #0582b2;
  overflow: hidden;
}
.header_info_list li a {
  display: block;
  padding: 8px 40px;
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
  text-align: center;
  color: #fff !important;
  pointer-events: none;
}
.header_top {
  width: 100%;
  /* height: 80px; */
  background-color: #fff;
}
.header_top.fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  animation: DownAnime 0.5s forwards;
  border-bottom: #d3d3d3 solid 1px;
}
@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#header_simple.header_top {
  border-bottom: #d3d3d3 solid 1px;
}
.header_top_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  /* position: relative; */
}
.header_info_list {
  margin: 0;
}
.header_info ul li a {
  color: #ffffff !important;
  text-align: center;
  font-size: 13px;
}
.header_logo {
  width: 148px;
  margin-top: 0;
  margin-bottom: -10px;
}
.header_logo img {
  width: 100%;
}
.header_menu_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header_menu_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  margin-bottom: -6px;
}
.header_menu_item {
  padding-left: 24px;
}
.header_menu_item a {
  display: block;
  position: relative;
  padding-top: 24px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0em;
  text-align: center;
  color: #3a3a3a;
  line-height: 1;
}
.header_menu_item a:hover {
  color: #0582b2 !important;
  text-decoration: none;
}
.header_menu_item a::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  left: 50%;
  top: 20%;
  transform: translateX(-50%) translateY(-50%);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.3s;
}
.header_menu_item .mypage::before {
  background-image: url("https://futaba.itembox.design/item/assets/images/common/icon_mypage.svg");
}
.header_menu_item .mypage:hover::before {
  background-image: url("https://futaba.itembox.design/item/assets/images/common/icon_mypage_hover.svg");
}
.header_menu_item .guide::before {
  background-image: url("https://futaba.itembox.design/item/assets/images/common/icon_guide.svg");
}
.header_menu_item .guide:hover::before {
  background-image: url("https://futaba.itembox.design/item/assets/images/common/icon_guide_hover.svg");
}
.header_menu_item .cart::before {
  background-image: url("https://futaba.itembox.design/item/assets/images/common/icon_cart.svg");
}
.header_menu_item .cart:hover::before {
  background-image: url("https://futaba.itembox.design/item/assets/images/common/icon_cart_hover.svg");
}
.header_menu_item .menu::before {
  background-image: url("https://futaba.itembox.design/item/assets/images/common/icon_menu.svg");
}
.header_search_box {
  width: 340px;
  height: 40px;
  display: block !important;
}
.header_search_form {
  position: relative;
}
.header_search_form input[type="search"] {
  height: 40px;
  width: 100%;
  font-size: 14px;
  line-height: 1.6;
  border: none;
  padding-left: 20px;
  background: #eeeeee;
  color: #3a3a3a;
  font-weight: 500;
  outline: none !important;
}
.header_search_form input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
  appearance: button;
  position: absolute;
  border-radius: 0;
  top: 0;
  right: 11px;
  width: 40px;
  height: 40px;
  border: none;
  background: url(../images/common/icon_search.svg) 50% 50% no-repeat;
  background-size: 18px auto;
}
.header_popup {
  display: none;
  position: relative;
  z-index: 999;
  box-shadow: 2px 3px 8px #9d9d9d;
}
.header_popup_bg {
  background-color: rgba(0, 0, 0, 0);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 998;
  cursor: pointer;
  display: none;
  pointer-events: all;
}
.header_popup.is_active {
  display: block;
}
.header_popup_bg.is_active {
  display: block;
}
.header_popup_list li {
  margin-bottom: 0px;
  border-bottom: 1px solid #e5e5e5;
}
.header_popup_list li a {
  display: block;
  background-color: #fff;
  padding: 18px 36px 18px 24px;
  line-height: 1.5;
  color: #3a3a3a !important;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none !important;
  position: relative;
}
.header_popup_list li a::after {
  position: absolute;
  right: 20px;
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: 900;
  font-size: 15px;
  color: #9d9d9d;
}
/* ヘッダー下段 */
.header_nav {
  display: block;
}
.header_bottom {
  border-top: #d3d3d3 solid 1px;
  border-bottom: #d3d3d3 solid 1px;
}
.header_nav_list {
  display: flex;
  /* flex-wrap: wrap; */
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 0;
}
.header_nav_item {
  width: 16%;
}
.header_nav_item a {
  display: block;
  text-align: center;
  padding: 20px 0;
  /* text-decoration: none !important; */
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #3a3a3a !important;
}
.header_nav_item a:hover {
  font-weight: 700;
  color: #0582b2 !important;
}
@media (max-width: 767px) {
  .header_top {
    width: 100%;
    /* height: 64px; */
  }
  .header_top_inner {
    padding: 20px 5%;
  }
  .header_top.fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
  }
  .header_bottom.cmnwrap {
    width: 90%;
  }
  .header_info ul li a {
    font-size: 13px;
  }
  .header_logo {
    width: 112px;
    margin-bottom: -12px;
  }
  .header_menu_item {
    padding-left: 8px;
  }
  .header_menu_item a {
    font-size: 9px;
  }
  .header_menu_item a:hover {
    color: #3a3a3a !important;
  }
  .header_menu_item a::before {
    width: 20px;
    height: 20px;
    transition: none;
  }
  .header_menu_item .mypage:hover::before {
    background-image: url("https://futaba.itembox.design/item/assets/images/common/icon_mypage.svg");
  }
  .header_menu_item .guide:hover::before {
    background-image: url("https://futaba.itembox.design/item/assets/images/common/icon_guide.svg");
  }
  .header_menu_item .cart:hover::before {
    background-image: url("https://futaba.itembox.design/item/assets/images/common/icon_cart.svg");
  }
  .header_bottom {
    border-top: none;
    border-bottom: none;
  }
  .header_search_form input[type="submit"] {
    background-size: 22px auto;
  }
  /* drawer-menu */
  .header_drawer {
    background-color: #fff;
    position: fixed;
    z-index: 10001;
    width: 100%;
    height: 100%;
    top: 0;
    right: -120%;
    /* -webkit-transition: left 0.4s ease-in-out; */
    /* transition: left 0.4s ease-in-out; */
    transition: all 0.6s;
  }
  .header_drawer.open {
    right: 0;
  }
  .header_drawer_inner {
    overflow-y: auto;
    height: 100%;
    width: 100%;
  }
  .drawer_close p {
    margin: 0;
    padding: 40px 24px 0;
    /* color: #3a3a3a; */
    color: #9d9d9d;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0em;
    text-align: right;
    position: relative;
  }
  .drawer_close p::before {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    right: 5%;
    top: 45%;
    transform: translateX(-50%) translateY(-50%);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("https://futaba.itembox.design/item/assets/images/common/icon_drawer_close.svg");
  }
  .drawer_ttl {
    margin-bottom: 0px;
    line-height: 1.1;
    text-align: left;
    color: #9d9d9d;
    background: #eeeeee;
    min-height: 30px;
    font-size: 12px;
    font-weight: 400;
    padding: 8px 20px 8px;
  }
  .drawer_menu_list {
    margin: 0;
  }
  .drawer_menu_list li {
    border-bottom: 1px solid #e5e5e5;
    line-height: 1.4;
  }
  .drawer_menu_list:first-of-type li {
    border-bottom: none;
    border-top: 1px solid #e5e5e5;
  }
  .drawer_menu_list li a {
    display: block;
    padding: 13px 22px 13px 20px;
    line-height: 1.5;
    color: #3a3a3a !important;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none !important;
    position: relative;
  }
  .drawer_menu_list li a::after {
    position: absolute;
    right: 20px;
    font-family: "Font Awesome 5 Free";
    content: "\f054";
    font-weight: 900;
    font-size: 15px;
    color: #9d9d9d;
  }
  .login_btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 90%;
    margin: 0 auto;
  }
  .login_btn .more_btn {
    width: 100%;
    margin: 24px 0;
  }
  .login_btn .more_btn a {
    width: 100%;
  }
  .login_btn .more_btn a::after {
    right: 12px;
  }
  .login_btn .more_btn.login a {
    color: #0582b2 !important;
    background-color: #ffffff;
    border: 1px solid #0582b2;
  }
  .login_disp_msg {
    margin: 24px auto;
    width: 90%;
  }
  .login_disp_msg .user_name {
    font-size: 16px;
    font-weight: 500;
    color: #0582b2 !important;
  }
  .login_disp_msg .user_name span {
    padding-left: 12px;
    font-size: 13px;
  }
  .logout_btn .more_btn {
    width: 100%;
    margin: 24px 0;
  }
  .logout_btn .more_btn a {
    color: #9d9d9d !important;
    background-color: #eeeeee;
  }
}
/*********************************************************/
/*** フッター ***/
/*********************************************************/
.fs-l-footer {
  background-color: #eeeeee;
}
#footer_service .footer_service_list {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 0;
}
#footer_service .footer_service_list li {
  padding: 20px 18px;
  width: 32.4%;
  background-color: #fff;
}
#footer_service .f_s_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#footer_service .f_s_img_box {
  width: 23%;
}
#footer_service .f_s_copy {
  width: 73%;
  margin: 0;
}
#footer_service .f_s_copy .sub {
  display: block;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.1em;
}
#footer_service .f_s_copy .main {
  display: block;
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #0582b2;
}
#footer_service .f_s_bottom {
  margin: 10px auto 0;
  font-size: 10px;
  color: #9d9d9d;
  letter-spacing: 0.1em;
}
#footer_service .more_btn a {
  background-color: #3a3a3a;
}
.footer_top {
  background-color: #0582b2;
}
.footer_top_cont {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 60px 0;
  border-bottom: #fff 1px solid;
}
.footer_menu {
  width: 30%;
  margin: 0;
}
.footer_menu ul {
  display: flex;
  flex-direction: column;
  padding: 0;
  gap: 16px;
}
.footer_menu ul li a {
  font-size: 13px;
  color: #fff !important;
  font-weight: 300;
}
.footer_top_head {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 2em;
  color: #fff;
}
.footer_top_logo {
  width: 187px;
}
.footer_top_logo img {
  width: 100%;
}
.footer_middle {
  padding: 48px 0;
  background-color: #0582b2;
}
.footer_middle_cont {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer_middle_sns_list {
  display: flex;
  align-items: center;
}
.footer_middle_sns_list li {
  margin-left: 36px;
}
.footer_middle_sns_list li a {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer_middle_sns_list li a .icon_fb {
  background-image: url("https://futaba.itembox.design/item/assets/images/common/icon_facebook.svg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  display: block;
}
.footer_middle_sns_list li a .icon_ig {
  background-image: url("https://futaba.itembox.design/item/assets/images/common/icon_instagram.svg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  display: block;
}
.footer_bottom {
  padding: 12px 0;
  text-align: center;
  background-color: #3a3a3a;
}
.copy {
  display: block;
  font-size: 12px;
  color: #9d9d9d;
  line-height: 1;
}
@media (max-width: 767px) {
  .fs-l-footer {
    border-top: none;
    margin-top: 0;
  }
  #footer_service .cmnwrap {
    width: 90%;
    margin: 0 auto;
  }
  #footer_service .footer_service_list {
    flex-direction: column;
  }
  #footer_service .footer_service_list li {
    padding: 20px 24px;
    width: 100%;
    margin: 0;
  }
  .footer_top_cont {
    flex-direction: column;
    padding: 48px 24px;
    border-bottom: none;
  }
  .footer_menu {
    width: 100%;
    /* margin: auto; */
    /* padding: 12px 0 20px; */
    border-bottom: #fff 1px solid;
  }
  .footer_menu ul {
    padding-bottom: 24px;
    display: none; /* アコーディオン：非表示 */
  }
  .footer_menu ul li {
    padding-left: 1.2em;
    line-height: 2.5;
  }
  .footer_top_head {
    font-size: 20px;
    position: relative;
    margin-bottom: 1em;
    margin-top: 1em;
  }
  /* 上向き矢印 */
  .footer_top_head::after {
    content: "";
    width: 12px;
    height: 12px;
    border: 0;
    position: absolute;
    border-bottom: solid 3px #fff;
    border-right: solid 3px #fff;
    top: 45%;
    right: 5%;
    transform: translateY(-50%) rotate(45deg);
    transition: 0.3s;
  }
  /* 下向き矢印 */
  .footer_top_head.close::after {
    transform: rotate(225deg);
  }
  .footer_middle {
    padding: 0 0 48px;
  }
  .footer_middle_cont {
    flex-direction: column;
    gap: 18px;
  }
  .footer_middle_sns_list {
    flex-direction: column;
    gap: 12px;
  }
  .footer_middle_sns_list li {
    margin-left: 0;
  }
}

/*********************************************************/
/*** 商品詳細 - サービス情報ブロック（フリーパーツ） ***/
/*********************************************************/
.fs-p-serviceArea {
  width: 100%;
  background-color: #eeeeee;
  margin-bottom: 24px !important;
}
.fs-p-serviceArea-inner {
  padding: 12px 10px;
}
.fs-p-serviceArea ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
}
.fs-p-serviceArea li {
  position: relative;
  padding-left: 28px;
}
.fs-p-serviceArea li.wrapping {
  display: none;
}
.fs-p-serviceArea ul li p {
  font-size: 13px;
  font-weight: 400;
  color: #3a3a3a;
  margin: 0;
}
.fs-p-serviceArea ul li p span {
  color: #e1643e;
  font-weight: 700;
}
.fs-p-serviceArea li::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}
.fs-p-serviceArea li.wrapping::before {
  top: 3px;
  left: 9px;
  background-image: url("https://futaba.itembox.design/item/assets/images/common/icon_service_wrapping.svg");
}
.fs-p-serviceArea li.free_shipping::before {
  top: 6px;
  left: 5px;
  background-image: url("https://futaba.itembox.design/item/assets/images/common/icon_service_track.svg");
}
.fs-p-serviceArea li.speed_delivery::before {
  top: 3px;
  left: 7px;
  background-image: url("https://futaba.itembox.design/item/assets/images/common/icon_service_time.svg");
}
@media (max-width: 767px) {
  .fs-p-serviceArea li {
    padding-left: 32px;
  }
  .fs-paymentArea {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
}

/*********************************************************/
/*** 商品詳細 - 支払い情報ブロック（フリーパーツ） ***/
/*********************************************************/
.fs-paymentArea {
  width: 100%;
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}
@media (max-width: 767px) {
  .fs-paymentArea {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
}

/*********************************************************/
/*** 商品詳細 - 商品独自コメント（タブ）（フリーパーツ） ***/
/*********************************************************/
.fs-commentsArea {
  margin-top: 40px !important;
}
.fs-commentsArea .item_detail_tab {
  display: flex;
}
.fs-commentsArea .item_detail_tab li {
  width: 33%;
  padding: 12px 0;
  text-align: center;
  border-bottom: 1px solid #9d9d9d;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  color: #9d9d9d !important;
}
.fs-commentsArea .item_detail_tab li.is_active {
  border-bottom: 3px solid #3a3a3a;
  cursor: default;
  color: #3a3a3a !important;
}
.fs-commentsArea .item_detail_desp {
  display: none;
  font-size: 12px;
}
.fs-commentsArea .item_detail_desp.is_active {
  display: block;
}
.fs-commentsArea .item_detail_desp p {
  margin: 1em;
}
.fs-commentsArea .item_detail_desp table {
  width: 100%;
}
.fs-commentsArea .item_detail_desp th {
  width: 30%;
  padding: 15px;
}
.fs-commentsArea .item_detail_desp td {
  padding: 15px;
}
.fs-commentsArea .item_detail_desp a {
  color: #0582b2 !important;
  font-weight: 600;
}
@media (max-width: 767px) {
  .fs-commentsArea {
    margin-top: 20px !important;
  }
  .fs-commentsArea .item_detail_tab {
    margin: 0;
  }
}

/*********************************************************/
/*** 詳細検索フォーム（フリーパーツ） ***/
/*********************************************************/
.fs-p-productSearch {
  border-bottom: none;
  border-top: 1px solid #d3d3d3;
  padding: 24px 0 0;
}
.fs-p-productSearch__parameter {
  font-size: 0; /* 非表示 */
}
.fs-p-productSearch__formSwitch {
  background: none;
  position: relative;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-align: center;
  padding: 0;
  box-sizing: border-box;
  background: #3a3a3a;
  color: #ffffff;
  padding: 10px 5px;
  width: 160px;
}
.fs-p-productSearch__formSwitch .fs-p-productSearch__formOpen::after {
  position: absolute;
  right: 18px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f002";
}
.fs-p-productSearch__formSwitch .fs-p-productSearch__formClose::after {
  position: absolute;
  right: 18px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f00d";
}
.fs-p-productSearch__form {
  transition-duration: 0.4s;
  font-size: 13px;
  font-weight: 400;
  background: #ffffff;
  border: 1px solid #d3d3d3;
  margin: 0;
}
.fs-p-productSearch .fs-p-productSearch__field {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.fs-p-productSearch .fs-c-inputTable > tbody {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.fs-p-productSearch .fs-c-inputTable > tbody > tr + tr {
  margin-top: 0;
}
.fs-p-productSearch .fs-c-inputTable > tbody > tr {
  flex-direction: row;
}
.fs-p-productSearch .fs-c-inputTable__headerCell,
.fs-p-productSearch .fs-c-inputTable__currentValueCell {
  width: 20%;
  font-weight: 600;
}
.fs-p-productSearch .fs-c-inputTable__dataCell {
  width: 60%;
}
.fs-p-productSearch .fs-c-checkbox__checkMark {
  border-radius: 0;
  border: 1px solid #d3d3d3;
  margin: 0 8px 0 0;
}
.fs-p-productSearch
  .fs-c-checkbox__checkbox:checked
  + label
  > .fs-c-checkbox__checkMark {
  background: #0582b2;
  border-color: #0582b2;
}
.fs-p-productSearch .fs-c-checkbox__checkMark::before {
  top: 0.1em;
  left: 0;
  font-weight: 700;
}
.fs-p-productSearch .fs-p-productSearch__searchButton {
  display: block;
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #fff !important;
  padding: 14px 5px;
  background: #0582b2;
  box-sizing: border-box;
  border-radius: 5px;
  box-shadow: 0px 3px 6px #d3d3d3;
  border: none;
}
.fs-p-productSearch .fs-p-productSearch__searchButton::before {
  position: absolute;
  right: -70px;
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 900;
  font-size: 16px;
  content: "\f002";
}
.fs-p-productSearch .fs-p-productSearch__searchButton:hover {
  color: #fff !important;
}

@media (max-width: 767px) {
  .fs-p-productSearch__formSwitch {
    font-size: 12px;
    padding: 8px 5px;
    width: 130px;
  }
  .fs-p-productSearch__formSwitch .fs-p-productSearch__formOpen::after,
  .fs-p-productSearch__formSwitch .fs-p-productSearch__formClose::after {
    right: 15px;
  }
  .fs-p-productSearch :checked ~ .fs-p-productSearch__search {
    max-height: 100%;
  }
  .fs-p-productSearch__form {
    font-size: 12px;
    padding: 24px 12px;
  }
  .fs-p-productSearch .fs-c-inputTable > tbody > tr {
    gap: 8px;
  }
  .fs-p-productSearch .fs-c-inputTable__headerCell,
  .fs-p-productSearch
    .fs-c-inputTable__currentValueCell
    .fr3-item__imageContainer {
    width: 30%;
  }
  .fs-p-productSearch .fs-c-inputTable__dataCell {
    width: 65%;
  }
}

/*********************************************************/
/*** 商品グループ - ブランド一覧・カテゴリ一覧共通 ***/
/*********************************************************/
.product_listPage_hiddenArea {
  display: none !important;
}
/*********************************************************/
/*** 商品グループ - ブランド一覧（フリーパーツ） ***/
/*********************************************************/
#product_brandList .cmn_inner {
  padding: 20px 0 80px;
}
#product_brandList .brand_list_wrapper:nth-child(n + 2) .sec_ttl {
  margin-top: 80px;
}
#product_brandList .brand_list ul {
  display: flex;
  flex-wrap: wrap;
}
#product_brandList .brand_list_wrapper:nth-child(1) ul {
  gap: 24px;
}
#product_brandList .brand_list_wrapper:nth-child(1) ul li {
  width: calc((100% - (24px * 3)) / 4);
}
#product_brandList .brand_list_wrapper:nth-child(n + 2) ul {
  gap: 24px 18px;
}
#product_brandList .brand_list_wrapper:nth-child(n + 2) ul li {
  width: calc((100% - (18px * 4)) / 5);
}
#product_brandList .brand_list ul li a:hover {
  text-decoration: none;
  opacity: 0.5;
}
#product_brandList .brand_list ul li a img {
  border: 1px #d3d3d3 solid;
}
#product_brandList .brand_list dt,
#product_brandList .brand_list dd {
  margin: 0;
  padding: 0;
}
#product_brandList .brand_list dl {
  margin: 1em 0;
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  color: #3a3a3a !important;
}
#product_brandList .brand_list_wrapper:nth-child(1) .brand_list dl {
  font-size: 14px;
}
@media (max-width: 767px) {
  #product_brandList .cmn_inner {
    padding: 20px 0;
  }
  #product_brandList .sec_ttl {
    margin-top: 0;
  }
  #product_brandList .brand_list_wrapper:nth-child(n + 2) .sec_ttl {
    margin-top: 64px;
  }
  #product_brandList .brand_list_wrapper:nth-child(1) ul {
    gap: 24px;
  }
  #product_brandList .brand_list_wrapper:nth-child(1) ul li {
    width: calc((100% - 24px) / 2);
  }
  #product_brandList .brand_list_wrapper:nth-child(n + 2) ul {
    gap: 16px 8px;
  }
  #product_brandList .brand_list_wrapper:nth-child(n + 2) ul li {
    width: calc((100% - (8px * 2)) / 3);
  }
  #product_brandList .brand_list dl {
    margin: 0.5em 0;
    font-size: 10px;
  }
  #product_brandList .brand_list_wrapper:nth-child(1) .brand_list dl {
    font-size: 13px;
  }
}

/*********************************************************/
/*** 商品グループ - カテゴリ一覧（フリーパーツ） ***/
/*********************************************************/
#product_categoryList .cmn_inner {
  padding: 20px 0 80px;
}
#product_categoryList .category_list_wrapper:nth-child(n + 2) .sec_ttl {
  margin-top: 100px;
}
#product_categoryList .category_list ul {
  display: flex;
  margin: 0 auto;
  padding: 0;
  flex-wrap: wrap;
  gap: 48px;
}
#product_categoryList .category_list ul li {
  width: calc((100% - (48px * 4)) / 5);
}
#product_categoryList .category_list ul li a {
  color: #3a3a3a !important;
}
#product_categoryList .category_list ul li a:hover {
  text-decoration: none;
  opacity: 0.5;
}
#product_categoryList .category_list ul li p {
  margin: 1em 0;
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  color: #3a3a3a !important;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  #product_brandList .cmn_inner {
    padding: 20px 0;
  }
  #product_categoryList .sec_ttl {
    margin-top: 0;
    margin-bottom: 24px;
  }
  #product_categoryList .category_list_wrapper:nth-child(n + 2) .sec_ttl {
    margin-top: 64px;
  }
  #product_categoryList .category_list ul {
    gap: 4px 8px;
  }
  #product_categoryList .category_list ul li {
    width: calc((100% - (8px * 2)) / 3);
  }
  #product_categoryList .category_list ul li p {
    margin: 0.5em 0;
    font-size: 10px;
  }
}
/*********************************************************/
/*** フリーページ共通 ***/
/*********************************************************/
/* 見出し非表示 */
.f-body-faq .fs-c-heading--page {
  display: none;
}
.f-body-service .fs-c-heading--page {
  display: none;
}

/*********************************************************/
/*** よくあるご質問（フリーページ） ***/
/*********************************************************/
#f_faq .cmn_inner {
  padding: 20px 0 80px;
}
#f_faq section {
  margin: 64px 0;
  padding-top: 120px;
  margin-top: -120px;
}
#f_faq .faq_nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
#f_faq .faq_nav li {
  width: calc((100% - (20px * 3)) / 4);
  text-align: left;
  border: 1px solid #d3d3d3;
  border-radius: 4px;
}
#f_faq .faq_nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 12px 12px 12px 64px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  color: #3a3a3a;
  width: 100%;
  height: 70px;
  transition: 0.3s all ease-in-out;
}
#f_faq .faq_nav #faq_cancel a {
  font-size: 14px;
}
#f_faq .faq_nav a::before {
  position: absolute;
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  left: 16%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
#f_faq .faq_nav #faq_order a::before {
  background-image: url(https://futaba.itembox.design/item/assets/images/common/icon_rcart_g.svg);
}
#f_faq .faq_nav #faq_delivery a:before {
  background-image: url(https://futaba.itembox.design/item/assets/images/common/icon_track_g.svg);
}
#f_faq .faq_nav #faq_cancel a::before {
  background-image: url(https://futaba.itembox.design/item/assets/images/common/icon_return_g.svg);
  width: 32px;
  height: 32px;
}
#f_faq .faq_nav #faq_products a::before {
  background-image: url(https://futaba.itembox.design/item//assets/images/common/icon_bag_g.svg);
}
#f_faq .faq_box_ttl {
  text-align: left;
  font-size: 20px;
  font-weight: 700;
  color: #0582b2;
  margin-bottom: 20px;
  padding-left: 48px;
  position: relative;
}
#f_faq .faq_box_ttl::before {
  position: absolute;
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  left: 2%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
#f_faq #order .faq_box_ttl::before {
  background-image: url(https://futaba.itembox.design/item/assets/images/common/icon_cart_b.svg);
}
#f_faq #delivery .faq_box_ttl::before {
  background-image: url(https://futaba.itembox.design/item/assets/images/common/icon_track_b.svg);
}
#f_faq #cancel .faq_box_ttl::before {
  background-image: url(https://futaba.itembox.design/item/assets/images/common/icon_return_b.svg);
  width: 32px;
  height: 32px;
}
#f_faq #products .faq_box_ttl::before {
  background-image: url(https://futaba.itembox.design/item//assets/images/common/icon_bag_b.svg);
}
#f_faq .faq_box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#f_faq .faq_item {
  padding: 0 67px;
  border-radius: 10px;
  border: 1px solid #d3d3d3;
  text-align: left;
  margin: 0;
}
#f_faq .faq_item dt,
#f_faq .faq_item dd {
  position: relative;
}
#f_faq .faq_item dt {
  margin-left: -67px;
  margin-right: -67px;
  padding: 20px 117px 20px 108px;
  cursor: pointer;
  font-weight: 700;
}
#f_faq .faq_item dd {
  display: none;
  margin: 0;
  padding: 20px 0 20px 38px;
  border-top: 1px solid #d3d3d3;
  font-weight: 400;
}
#f_faq .faq_item p {
  font-size: 13px;
  line-height: 2;
  margin: 0;
}
#f_faq .faq_item p:not(:last-child) {
  margin-bottom: 1em;
}
#f_faq .faq_item p a {
  color: #0582b2;
  font-weight: 700;
}
#f_faq .faq_item p span {
  font-size: 11px;
}
#f_faq .faq_item .icon_q,
#f_faq .faq_item .icon_a {
  position: absolute;
  font-weight: 700;
  line-height: 1;
  font-size: 24px;
}
#f_faq .faq_item .icon_q {
  left: 67px;
  color: #9d9d9d;
  opacity: 0.7;
}
#f_faq .faq_item .icon_a {
  left: 0;
  color: #0582b2;
  opacity: 0.7;
}
#f_faq .faq_item .accordionBtn {
  display: block;
  position: absolute;
  top: 45%;
  right: 67px;
  width: 18px;
  height: 18px;
}
/* 上向き矢印 */
#f_faq .faq_item dt .accordionBtn::before {
  content: "";
  width: 12px;
  height: 12px;
  border: 0;
  position: absolute;
  border-bottom: solid 3px #9d9d9d;
  border-right: solid 3px #9d9d9d;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}
/* 下向き矢印 */
#f_faq .faq_item dt.close .accordionBtn::before {
  transform: rotate(225deg);
}
#f_faq .guide_comment {
  text-align: center;
}
#f_faq .guide_comment p {
  position: relative;
  display: inline-block;
  font-weight: 700;
  font-size: 16px;
  padding-left: 18px;
}
#f_faq .guide_comment p:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(https://futaba.itembox.design/item/assets/images/common/icon_guide.svg);
}
#f_faq .guide_content .more_btn {
  margin-top: 24px;
}
@media (max-width: 767px) {
  #f_faq .cmn_inner {
    padding: 20px 0;
  }
  #f_faq section {
    margin: 32px 0;
    padding-top: 80px;
    margin-top: -80px;
  }
  #f_faq .faq_nav ul {
    flex-wrap: wrap;
    gap: 12px;
    margin: 0;
  }
  #f_faq .faq_nav li {
    width: calc((100% - (12px * 1)) / 2);
  }
  #f_faq .faq_nav a {
    font-size: 13px;
    padding: 8px 0 8px 44px;
  }
  #f_faq .faq_nav #faq_cancel a {
    font-size: 12px;
    letter-spacing: 0;
  }
  #f_faq .faq_nav a::before {
    width: 20px;
    height: 20px;
    left: 14%;
  }
  #f_faq .faq_nav #faq_cancel a::before {
    width: 28px;
    height: 28px;
  }
  #f_faq .faq_box_ttl {
    font-size: 16px;
    padding-left: 40px;
  }
  #f_faq .faq_box_ttl::before {
    left: 5%;
  }
  #f_faq .faq_box {
    gap: 14px;
  }
  #f_faq .faq_item {
    padding: 0 16px;
  }
  #f_faq .faq_item dt {
    font-size: 13px;
    margin-left: -16px;
    margin-right: -16px;
    padding: 14px 50px 14px 52px;
  }
  #f_faq .faq_item dd {
    padding: 16px 0 16px 36px;
  }
  #f_faq .faq_item p {
    font-size: 12px;
  }
  #f_faq .faq_item p:not(:last-child) {
    margin-bottom: 1.5em;
  }
  #f_faq .faq_item p span {
    font-size: 12px;
    margin-top: 1em;
    display: block;
  }
  #f_faq .faq_item .icon_q {
    left: 18px;
  }
  #f_faq .faq_item .icon_a {
    left: 4px;
  }
  #f_faq .faq_item .accordionBtn {
    right: 24px;
  }
  #f_faq .faq_item dt .accordionBtn::before {
    width: 10px;
    height: 10px;
  }
  #f_faq .guide_comment p {
    font-size: 14px;
  }
  #f_faq .guide_content .more_btn {
    margin-top: 12px;
  }
}
/*********************************************************/
/*** ご利用ガイド（フリーページ） ***/
/*********************************************************/
#f_service .cmn_inner {
  padding: 20px 0 0;
}
#f_service section {
  margin: 96px 0;
  padding-top: 120px;
  margin-top: -120px;
}
#f_service #rakuten {
  padding-bottom: 48px;
}
#f_service .service_nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
#f_service .service_nav li {
  width: calc((100% - (20px * 1)) / 2);
  text-align: center;
  border: 1px solid #d3d3d3;
  border-radius: 4px;
}
#f_service .service_nav a {
  position: relative;
  display: block;
  padding: 20px 24px;
  text-decoration: none;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #3a3a3a;
  width: 100%;
  transition: 0.3s ease-in-out;
}
#f_service .service_nav a::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  transform: translateX(-150%) translateY(-50%);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
#f_service .service_nav #service_rakuten a::before {
  background-image: url(https://futaba.itembox.design/item/assets/images/common/icon_crown_g.svg);
}
#f_service .service_nav #service_point a:before {
  background-image: url(https://futaba.itembox.design/item/assets/images/common/icon_point_g.svg);
}
#f_service .service_nav #service_delivery a::before {
  background-image: url(https://futaba.itembox.design/item/assets/images/common/icon_track_g.svg);
}
#f_service .service_nav #service_shipping a::before {
  background-image: url(https://futaba.itembox.design/item//assets/images/common/icon_calendar_g.svg);
}
#f_service .service_nav #service_payment a::before {
  background-image: url(https://futaba.itembox.design/item/assets/images/common/icon_payment_g.svg);
}
#f_service .service_nav #service_packing a:before {
  background-image: url(https://futaba.itembox.design/item/assets/images/common/icon_packing_g.svg);
}
#f_service .service_nav #service_return a::before {
  background-image: url(https://futaba.itembox.design/item/assets/images/common/icon_return_g.svg);
  width: 32px;
  height: 32px;
}
#f_service .service_nav #service_repair a::before {
  background-image: url(https://futaba.itembox.design/item//assets/images/common/icon_repair_g.svg);
}
#f_service .service_box_ttl {
  position: relative;
  text-align: center;
  margin: 0 0 64px 0;
}
#f_service .service_box_ttl:before {
  content: "";
  display: block;
  border-top: solid 2px #0582b2;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  z-index: 1;
}
#f_service .service_box_ttl span {
  z-index: 5;
  background: #fff;
  display: inline-block;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #0582b2;
  padding: 0 30px 0 72px;
  position: relative;
}
#f_service .service_box_ttl span::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  /* left: 0; */
  top: 50%;
  transform: translateX(-150%) translateY(-50%);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
#f_service #rakuten .service_box_ttl span::before {
  background-image: url(https://futaba.itembox.design/item/assets/images/common/icon_crown_b.svg);
}
#f_service #point .service_box_ttl span::before {
  background-image: url(https://futaba.itembox.design/item/assets/images/common/icon_point_b.svg);
}
#f_service #delivery .service_box_ttl span::before {
  background-image: url(https://futaba.itembox.design/item/assets/images/common/icon_track_b.svg);
  width: 28px;
  height: 28px;
}
#f_service #shipping .service_box_ttl span::before {
  background-image: url(https://futaba.itembox.design/item//assets/images/common/icon_calendar_b.svg);
}
#f_service #payment .service_box_ttl span::before {
  background-image: url(https://futaba.itembox.design/item/assets/images/common/icon_payment_b.svg);
}
#f_service #packing .service_box_ttl span::before {
  background-image: url(https://futaba.itembox.design/item/assets/images/common/icon_packing_b.svg);
}
#f_service #return .service_box_ttl span::before {
  background-image: url(https://futaba.itembox.design/item/assets/images/common/icon_return_b.svg);
  width: 32px;
  height: 32px;
}
#f_service #repair .service_box_ttl span::before {
  background-image: url(https://futaba.itembox.design/item//assets/images/common/icon_repair_b.svg);
}
#f_service .service_box p {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.2;
}
#f_service #rakuten .service_box p {
  text-align: left;
}
#f_service .service_box p:not(:last-child) {
  margin-bottom: 2em;
}
#f_service .service_box p strong {
  color: #0582b2;
  font-weight: 700;
}
#f_service .service_box p.waring_txt {
  color: #9d9d9d;
  font-size: 13px;
  font-weight: 300;
}
#f_service .service_box .img_cont {
  width: 50%;
  margin: 0 auto;
}
#f_service #payment .service_box .img_cont {
  width: 60%;
}
#f_service #rakuten .service_box .img_cont {
  float: left;
  margin-right: 4%;
}
#f_service .service_box .more_btn a {
  background-color: #3a3a3a;
}
#f_service #packing .packing_cont {
  margin-top: 32px;
}
#f_service #packing .packing_cont ul {
  display: flex;
  justify-content: space-between;
  gap: 80px;
}
#f_service #packing .packing_cont ul li {
  width: calc((100% - (80px * 1)) / 2);
}
#f_service #packing .packing_cont h4 {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}
#f_service #packing .packing_cont p {
  text-align: left;
  padding-left: 52px;
  position: relative;
  line-height: 1.5;
  margin-bottom: 1em;
}
#f_service #packing .packing_cont p:first-child {
  margin-top: 24px;
}
#f_service #packing .packing_cont p::after {
  position: absolute;
  top: -2px;
  left: 20px;
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: 900;
  font-size: 18px;
  color: #0582b2;
}
@media (max-width: 767px) {
  #f_service .cmn_inner {
    padding: 20px 0;
  }
  #f_service section {
    margin: 64px 0;
    padding-top: 80px;
    margin-top: -80px;
  }
  #f_service #rakuten {
    padding-bottom: 0px;
  }
  #f_service .service_nav ul {
    gap: 8px;
    margin: 0;
  }
  #f_service .service_nav li {
    width: calc((100% - (8px * 1)) / 2);
  }
  #f_service .service_nav a {
    display: inline-flex;
    height: 48px;
    padding: 8px 4px 8px 44px;
    align-items: center;
    text-align: left;
    font-size: 12px;
    letter-spacing: 0;
  }
  #f_service .service_nav a::before {
    width: 18px;
    height: 18px;
    transform: translateX(-140%) translateY(-50%);
  }
  #f_service .service_nav #service_return a::before {
    width: 22px;
    height: 22px;
  }
  #f_service .service_box_ttl {
    margin: 0 0 32px 0;
  }
  #f_service .service_box_ttl span {
    font-size: 18px;
    padding: 0 12px 0 40px;
  }
  #f_service .service_box_ttl span::before {
    width: 22px;
    height: 22px;
    transform: translateX(-130%) translateY(-50%);
  }
  #f_service #return .service_box_ttl span::before {
    background-image: url(https://futaba.itembox.design/item/assets/images/common/icon_return_b.svg);
    width: 30px;
    height: 30px;
  }
  #f_service .service_box p {
    font-size: 13px;
    line-height: 1.8;
  }
  #f_service #rakuten .service_box p {
    text-align: center;
  }
  #f_service .service_box p:not(:last-child) {
    margin-bottom: 1em;
  }
  #f_service .service_box p.waring_txt {
    font-size: 10px;
    text-align: left;
  }
  #f_service .service_box .img_cont {
    width: 100%;
    margin: 0 auto;
  }
  #f_service #payment .service_box .img_cont {
    width: 100%;
  }
  #f_service #rakuten .service_box .img_cont {
    float: none;
    margin: 0 auto;
  }
  #f_service #packing .packing_cont {
    margin-top: 24px;
  }
  #f_service #packing .packing_cont ul {
    gap: 24px;
    flex-wrap: wrap;
  }
  #f_service #packing .packing_cont ul li {
    width: 100%;
  }
  #f_service #packing .packing_cont h4 {
    font-size: 16px;
  }
  #f_service #packing .packing_cont p {
    padding-left: 28px;
    margin-bottom: 0;
  }
  #f_service #packing .packing_cont p:first-child {
    margin-top: 16px;
  }
  #f_service #packing .packing_cont p::after {
    left: 2px;
    font-size: 16px;
  }
}
/*********************************************************/
/*** 実店舗のご紹介（フリーページ） ***/
/*********************************************************/
.borsa_info_map {
  width: 400px;
  height: 300px;
}
@media (max-width: 767px) {
  .borsa_info_map {
    width: 100%;
    margin: 0 auto;
  }
}
/*********************************************************/
/*** 商品グループ - ページ見出し（ブランド表示用） ***/
/*********************************************************/
.fs-body-category .brand_logo {
  display: none;
  width: 300px;
  margin: -32px auto 40px;
  border: 1px solid #d3d3d3;
}
/* ace TOKYO(エーストウキョウ) */
.fs-body-category-gr330 .brand_logo.gr330 {
  display: block;
}
/* ace. GENE(エースジーン) */
.fs-body-category-gr301 .brand_logo.gr301 {
  display: block;
}
/* AMERICAN TOURISTER(アメリカンツーリスター) */
.fs-body-category-gr723 .brand_logo.gr723 {
  display: block;
}
/* aniary(アニアリ) */
.fs-body-category-gr387 .brand_logo.gr387 {
  display: block;
}
/* BRIEFING(ブリーフィング) */
.fs-body-category-gr601 .brand_logo.gr601 {
  display: block;
}
/* CASTELBAJAC(カステルバジャック) */
.fs-body-category-gr393 .brand_logo.gr393 {
  display: block;
}
/* CREED(クリード) */
.fs-body-category-gr278 .brand_logo.gr278 {
  display: block;
}
/* DANTON(ダントン) */
.fs-body-category-gr715 .brand_logo.gr715 {
  display: block;
}
/* FARO(ファーロ) */
.fs-body-category-gr565 .brand_logo.gr565 {
  display: block;
}
/* HaNT(ハント) */
.fs-body-category-gr326 .brand_logo.gr326 {
  display: block;
}
/* LANVIN en Bleu(ランバンオンブルー) */
.fs-body-category-gr296 .brand_logo.gr296 {
  display: block;
}
/* LUC(ラック) */
.fs-body-category-gr231 .brand_logo.gr231 {
  display: block;
}
/* MAKAVELIC(マキャベリック) */
.fs-body-category-gr270 .brand_logo.gr270 {
  display: block;
}
/* master-piece(マスターピース) */
.fs-body-category-gr571 .brand_logo.gr571 {
  display: block;
}
/* Mila Schon(ミラ・ショーン) */
.fs-body-category-gr126 .brand_logo.gr126 {
  display: block;
}
/* PELLE MORBIDA(ペッレモルビダ) */
.fs-body-category-gr577 .brand_logo.gr577 {
  display: block;
}
/* PROTeCA(プロテカ) */
.fs-body-category-gr317 .brand_logo.gr317 {
  display: block;
}
/* renoma(レノマ) */
.fs-body-category-gr175 .brand_logo.gr175 {
  display: block;
}
/* RICARDO(リカルド) */
.fs-body-category-gr476 .brand_logo.gr476 {
  display: block;
}
/* Samsonite(サムソナイト) */
.fs-body-category-gr668 .brand_logo.gr668 {
  display: block;
}
/* SILVER LAKE CLUB(シルバーレイククラブ) */
.fs-body-category-gr371 .brand_logo.gr371 {
  display: block;
}
/* STONE&CLOTH(ストーン&クロス) */
.fs-body-category-gr499 .brand_logo.gr499 {
  display: block;
}
/* TIERRAL ティエラル */
.fs-body-category-gr695 .brand_logo.gr695 {
  display: block;
}
/* 吉田カバン LUGGAGE LABEL(ラゲッジレーベル) */
.fs-body-category-gr472 .brand_logo.gr472 {
  display: block;
}
/* 吉田カバン PORTER GIRL(ポーターガール) */
.fs-body-category-gr528 .brand_logo.gr528 {
  display: block;
}
/* 吉田カバン PORTER( ポーター) */
.fs-body-category-gr596 .brand_logo.gr596 {
  display: block;
}
/* 吉田カバン POTR(ピー・オー・ティー・アール) */
.fs-body-category-potr .brand_logo.potr {
  display: block;
}
/* ZERO HALLIBURTON(ゼロハリバートン) */
/*.fs-body-category-gr865 .brand_logo.gr865 {*/
/*  display: block;*/
/*}*/

/* ↓↓ 追加用：雛形  */
/* コメント→ブランド名 */
/* XX → 商品グループ番号を追加 */
.fs-body-category-XX .brand_logo.XX {
  display: block;
}

/*シリーズ用*/

.fs-body-category .series {
  display: none;
  width: 100%;
  margin: -32px auto 40px;
}

.fs-body-category-gr865 .series.gr865 {
  display: block;
}

.fs-body-category-gr866 .series.gr866 {
  display: block;
}

.fs-body-category-gr868 .series.gr868 {
  display: block;
}


@media (max-width: 767px) {
  .fs-body-category .brand_logo {
    width: 200px;
    margin: -10px auto 24px;
  }
}
