@charset "utf-8";

body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans",'Noto Sans JP', sans-serif;
  font-size: 1.4rem;
  color: #383838;
}

/* -------------------------------
共通
------------------------------- */
.arrow-down {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 11px;
  height: 11px;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
}

.arrow-right {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 11px;
  height: 11px;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
}

.arrow-down.open {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 11px;
  height: 11px;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(25%) rotate(-45deg);
}


.icon-plus {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 13px;
  height: 0.1em;
  background: currentColor;
  border-radius: 0.1em;
  position: relative;
}

.icon-plus::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
}

.icon-plus.active::before {
  display: none;
  transition: 0.3s;
}



.fadein {
  opacity : 0.1;
  transform : translate(0, 50px);
  transition : all 1.5s;
  } 
.fadein.scrollin {
  opacity : 1;
  transform : translate(0, 0);
}



/* -------------------------------
ヘッダー
------------------------------- */


/* header */

header .header_info {
  background-color: var(--main-color);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
}

header .header_info2 {
  background:#efefef;
  color:#222;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 32px;
}

header .header_info2 p span{
  color: #E54854;
}


header .header_info a{
  color: #fff;
}

header .header_info a:hover{
  color: #fff !important;
}


header .header_main {
  height: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .header_main .f_wrap {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

header .header_main_logo img {
  width: 150px;
}

header .header_main_logo {
  padding-left: 50px;
}


.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}

.menu-trigger {
  position: relative;
  width: 35px;
  height: 20px;
}
a.menu-trigger:link,a.menu-trigger:visited {
  color: #333;
}

.menu-trigger:hover {
  color: #000;
}

.menu-trigger span:not(:last-child) {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #666666;
}

.menu-trigger span:nth-of-type(1) {
  top: 0;
}

.menu-trigger span:nth-of-type(2) {
  top: 10px;
}

.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

.menu-trigger span.menu_title {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  bottom: -8px;
  font-size: 11px;
}

.menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(11px) rotate(-45deg);
  transform: translateY(11px) rotate(-45deg);
}

.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}

.menu-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-9px) rotate(45deg);
  transform: translateY(-9px) rotate(45deg);
}

/* .menu-trigger.active span.menu_title {
	opacity: 0;
} */
a:hover.menu-trigger {
  color: #000 !important;
}



header .header_btn {
  display: flex;
  gap: 30px;
}

header .header_btn>div, header .header_btn>a {
  font-size: 11px;
  text-align: center;
  cursor: pointer;
  position: relative;
}

header .header_btn>a .fs-client-cart-count {
  position: absolute;
  right: -10px;
  top: -10px;
  background-color: var(--main-color);
  color: white;
  border-radius: 10px;
  width: 18px;
  height: 18px;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 2px;
}


header .header_btn>div>img, header .header_btn>a>img {
  width: 25px;
  height: auto;
}



/* -------------------------------
検索モーダル
------------------------------- */



/* -------------------------------
Modal
------------------------------- */
body {
  position: relative;
}

body.modal_open {
  /* overflow: hidden; */
}


.search_modal_wrap_outer.open {
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  padding-top: 5vh;

}

.search_modal_wrap {
  display: none;
}

.search_modal_wrap.open {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1005;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.search_modal_wrap .search_modal {
  display: none;
}

.search_modal_wrap .search_modal .close img {
  width: 35px;
}

.search_modal_wrap .search_modal.open {
  display: block;
  background-color: #fff;
  max-width: 675px;
  width: 100%;
  position: absolute;
  /* height: 90vh; */
  /* overflow-y: scroll; */
  z-index: 1010;
  top: 20vh;
}

.search_modal_wrap .close {
  position: absolute;
  right: -40px;
  top: -55px;
  cursor: pointer;
}

.search_modal .search_modal_title {
  padding: 20px 44px;
  border-bottom: 1px solid #eaeaea;
  font-size: 22px;
  position: relative;
}

.search_modal_wrap .search_modal .search_modal_body {
  padding: 21px 44px 0;
}

.search_modal_wrap .search_modal .search_modal_body table {
  width: 100%;
}

.search_modal_wrap .search_modal .search_modal_body th {
  vertical-align: top;
  /* padding-right: 35px; */
  padding-top: 32px;
  padding-bottom: 25px;
  height: 70px;
  text-align: left;
  min-width: 125px;
}

.search_modal_wrap .search_modal .search_modal_body td {
  padding: 13px 0;
}

.search_modal_wrap .search_modal .search_modal_body td input {
  padding: 15px 10px;
}


.search_modal_wrap .search_modal .search_modal_body .category .next_toggle, .search_modal_wrap .search_modal .search_modal_body .size .next_toggle {
  border-bottom: 1px solid #CBCBCB;
  cursor: pointer;
  padding: 15px 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.search_modal_wrap .search_modal .search_modal_body .category .next_toggle {
  border-top: none;
  border-left: none;
  border-right: none;
}



.search_modal_wrap .search_modal .search_modal_body .size .next_toggle+div {
  padding-top: 17px;
  display: none;
}

.search_modal_wrap .search_modal .search_modal_body .size ul.wrap {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 12px;
  gap: 11px;
  justify-content: flex-start;
}

.search_modal_wrap .search_modal .search_modal_body .size ul.wrap li div {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #eaeaea;
  width: 82px;
  height: 41px;
}

.search_modal_wrap .search_modal .search_modal_body .color>div {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.search_modal_wrap .search_modal .search_modal_body .color>div img {
  border: 2px solid #fff;
}




.search_modal_wrap .search_modal .search_modal_body .type>div {
  display: flex;
  gap: 10px;
}

.search_modal_wrap .search_modal .search_modal_body .type>div label div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 175px;
  height: 50px;
  background-color: #f4f4f4;
}

.search_modal_wrap .search_modal .search_modal_body .price>div {
  display: flex;
  gap: 10px;
  align-items: center;
}

.search_modal_wrap .search_modal .search_modal_body .price>div>input {
  width: 175px;
}

.search_modal_wrap .search_modal .search_modal_body .stock>div {
  display: flex;
  gap: 10px;
}

.search_modal_wrap .search_modal .search_modal_body .stock>div label div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 175px;
  height: 50px;
  background-color: #f4f4f4;
}

.search_modal input.size_select, .search_modal input.color_type, .search_modal input[name="nostock"], .search_modal input[name="tag"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.search_modal input.color_type:checked+img {
  border: 2px solid var(--main-color) !important;
  border-radius: 27px;
}

.search_modal input.size_select:checked+div, .search_modal input[name="nostock"]:checked+div, .search_modal input[name="tag"]:checked+div {
  background-color: #8E8E8E !important;
  color: white;
}



.search_modal_wrap .search_modal .search_modal_foot {
  padding: 40px 44px;
}

.search_modal_wrap .search_modal .search_modal_foot input, .search_modal_wrap .search_modal .search_modal_foot div.search_form_reset {
  width: 100%;
  background-color: var(--main-color);
  color: #fff;
  border: 1px solid var(--main-color);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 66px;
  margin-bottom: 15px;
  text-align: center;
  cursor: pointer;
}

.search_modal_wrap .search_modal .search_modal_foot input:hover {
  color: var(--main-color);
  border: 1px solid var(--main-color);
  background-color: white;
}

.search_modal_wrap .search_modal .search_modal_foot div.search_form_reset {
  color: var(--main-color);
  border: 1px solid var(--main-color);
  background-color: white;
  text-align: center;
}

.search_modal_wrap .search_modal .search_modal_foot div.search_form_reset:hover {
  background-color: var(--main-color);
  color: white;
}



/* -------------------------------
メニュー
------------------------------- */
.overlay {
  min-height: 100vh;
  width: 100vw;
  background-color: #F4F4F4;
  display: none;
}


.overlay .overlay_head {
  padding: 25px 0;
}

.overlay .overlay_head .f_wrap {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  max-width: 1180px;
  margin: 0 auto;
}

.overlay .overlay_head .f_wrap img {
  max-width: 275px;
}

.overlay .overlay_head .f_wrap>a {
  display: flex;
  background-color: white;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 275px;
  height: 115px;
  cursor: pointer;
  font-size: 16px;
}

.overlay .overlay_head_login {
  display: none;
}


.overlay .overlay_head .f_wrap>a:hover {
  background-color: #E8F2FA;
}

.overlay .overlay_head .f_wrap>a img {
  max-width: 35px;
  max-height: 35px;
  margin-bottom: 15px;
}

.overlay .overlay_head .overlay_head_login {
  display: none;
}

.overlay .overlay_body {
  background-color: white;
  padding: 55px 0;
}

.overlay .overlay_body .overlay_body_inner {
  max-width: 1180px;
  margin: 0 auto;
}

.overlay .overlay_body .overlay_body_inner .f_wrap {
  display: flex;
  margin-bottom: 40px;
  font-size: 16px;
}
.overlay .overlay_body .overlay_body_inner .f_wrap li {
  line-height: 1.9;
}
.overlay .overlay_body .overlay_body_inner .f_wrap>a {
  cursor: pointer;
  padding: 0 28px;
}

.overlay .overlay_body .overlay_body_inner .f_wrap>a:first-child {
  padding-left: 0;
}

.overlay .overlay_body .overlay_body_inner .f_wrap>a:last-child {
  padding-right: 0;
}

.overlay .overlay_body .overlay_body_inner .select_type {
  width: 100%;
  display: flex;
  height: 65px;
  border-bottom: 2px solid #EAEAEA;
}

.overlay .overlay_body .overlay_body_inner .select_type div {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-basis: 50%;
  cursor: pointer;
  font-size: 16px;
}

.overlay .overlay_body .overlay_body_inner .select_type div.active {
  background-color: #E8F2FA;
}


.overlay_body_inner .toggle_wrap {
  display: none;
}

.overlay_body_inner .toggle_wrap.active {
  display: flex;
}

.overlay_body_inner .toggle_wrap .f_wrap {
  display: flex;
  width: 100%;
  justify-content: space-between;
}


.overlay_body_inner .toggle_wrap .f_wrap .select_type_category_h {
  margin-bottom: 5px;
  margin-top: 30px;
  font-size: 16px;
}
.overlay_body_inner .toggle_wrap .f_wrap .select_type_category_h + .select_type_category_h {
  margin-top: 15px;
}

.overlay_body_inner .toggle_wrap .f_wrap .select_type_category_h a {
  font-weight: bold;
}

.overlay_body_inner .toggle_wrap .f_wrap .select_type_category_h .icon-plus {
  display: none;
}

.overlay_body_inner .toggle_wrap .f_wrap .select_type_category_h .arrow-right {
  display: none;
}

.overlay_body_inner .toggle_wrap .brand_group {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
  row-gap: 40px;
  width: 100%;
  justify-content: flex-start;
  padding-top: 45px;

}

.overlay_body_inner .toggle_wrap .brand_group a {
  display: flex;
  flex-direction: column;
  flex-basis: 18%;

  text-align: center;
  font-size: 20px;
  letter-spacing: 2px;
}

.overlay_body_inner .toggle_wrap .brand_group a>div:first-child {
  margin-bottom: 20px;
}

.overlay_body_inner .toggle_wrap .brand_group a img {
  border: 1px solid #eaeaea;
}



/* -------------------------------
FOOTER
------------------------------- */
footer {
  padding-top: 70px;
  background-color: #FAFAFA;
}

footer .footer_head .footer_head_link {
  display: flex;
  justify-content: center;
  gap: 65px;
  font-size: 16px;
}

footer .footer_head_sns {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 65px 0 50px;
}

footer .footer_head_sns img {
  width: 26px;
}

footer .footer_foot {
  border-top: 1px solid #EAEAEA;
  display: flex;
  justify-content: space-between;
  padding: 45px 0;
}

footer .footer_foot .f_wrap {
  display: flex;
  justify-content: space-between;

}

footer .footer_foot>.f_wrap {
  width: 100%;
  padding: 0 30px;
}

footer .footer_foot>.f_wrap>.f_wrap {
  gap: 45px;
}

footer .footer_foot>.f_wrap>.f_wrap a {
  color: #ababab;
}

footer .footer_head_sns_pc {
  display: flex;
}

footer .footer_foot .footer_head_sns_mb {
  display: none;
}

footer .footer_foot .copywrite {
  color: #ababab;
}








.fs-c-loginForm .fs-c-buttonContainer--memberRegister a:link,.fs-c-buttonContainer--memberRegister a:visited {
  color: #fff;
}








@media screen and (max-width: 768px) {


  /* -------------------------------
ヘッダーモバイル
------------------------------- */
  header .header_info {
    height: 35px;
  }

  header .header_main {
    height: 80px;
  }
  header .header_main_logo img {
    width: 140px;
  }
  header .header_btn {
    gap: 15px;
  }

  /* -------------------------------
検索モーダル モバイル
------------------------------- */
  .search_modal_wrap {
    padding: 20px;
  }

  .search_modal_wrap .search_modal.open {
    width: 93%;
  }

  .search_modal_wrap .search_modal .search_modal_body {
    padding: 3px 26px 0;
  }

  .search_modal_wrap .search_modal .search_modal_body .size ul.wrap li {
    width: 22%
  }

  .search_modal_wrap .search_modal .search_modal_body .size ul.wrap {
    justify-content: flex-start;
  }

  .search_modal_wrap .search_modal .search_modal_body table, .search_modal_wrap .search_modal .search_modal_body tbody {
    display: block;
  }

  .search_modal_wrap .search_modal .search_modal_body tr {
    display: block;
    width: 100%;
  }

  .search_modal_wrap .search_modal .search_modal_body th {
    width: 100%;
    display: block;
    padding-right: 0;
    vertical-align: unset;
    /* padding-right: 35px; */
    padding-top: 20px;
    padding-bottom: 0px;
    height: auto;
    text-align: left;
    min-width: auto;
    font-size: 16px;
  }

  .search_modal_wrap .search_modal .search_modal_body td {
    width: 100%;
    display: block;
  }

  .search_modal_wrap .search_modal .search_modal_body .price>div>input {
    width: 34.6%;
  }

  .search_modal_wrap .search_modal .search_modal_body .type>div>div {
    width: 45.3%;
  }

  .search_modal_wrap .search_modal .search_modal_body .stock>div>div {
    width: 45.3%;
  }

  .search_modal_wrap .close {
    right: 0px;
    top: -40px;
  }

  .search_modal_wrap .search_modal .search_modal_body .stock>div label div {
    max-width: 100%;
  }

  .search_modal_wrap .search_modal .search_modal_body .type>div label div {
    max-width: 100%;
  }

  .search_modal_wrap .search_modal .search_modal_body .size ul.wrap li div {
    height: 34px;
  }

  .search_modal_wrap .search_modal .search_modal_foot {
    padding: 30px 34px;
  }


  /* -------------------------------
メニュー
------------------------------- */
  .overlay .overlay_head_login {
    display: block;
  }

  .overlay .overlay_head_login {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    padding: 28px;
    border-top: 1px solid #f4f4f4;
  }

  .overlay .overlay_head_login>div {
    background-color: #383838;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 54px;
    border-radius: 1px;
  }
  .overlay .overlay_head_login>div img{
    width: 20px;
    margin-right: 20px;
  }

  .overlay .overlay_head {
    padding: 20px;

  }

  .overlay .overlay_head>.f_wrap {
    gap: 2%;
  }

  .overlay .overlay_head .f_wrap>a {
    height: 87px;
    font-size: 12px;
  }
  .overlay .overlay_head .f_wrap>a span.mb_none {
    display: none;
  }

  .overlay .overlay_head .f_wrap>a img {
    margin-bottom: 5px;
  }

  .overlay .overlay_head .f_wrap>a:first-child {
    display: none;
  }

  .overlay .overlay_body {
    padding: 0;
  }


  .overlay .overlay_body .overlay_body_inner>.f_wrap {
    flex-direction: column;
    padding: 20px;
    row-gap: 10px;
    margin-bottom: 0;
  }

  .overlay .overlay_body .overlay_body_inner .f_wrap span {
    display: none;
  }

  .overlay .overlay_body .overlay_body_inner .f_wrap>a {
    display: flex;
    width: 100%;
    border: 1px solid #D1D1D1;
    border-radius: 1px;
    justify-content: center;
    align-items: center;
    height: 54px;
  }


  .overlay .overlay_body .select_type_category .f_wrap {
    flex-direction: column;
  }

  .overlay .overlay_body .select_type_category li {
    padding: 12px 44px;
  }

  .overlay_body_inner .toggle_wrap>.f_wrap .select_type_category_h {
    margin-top: 0;
    margin-bottom: 0;
    background-color: #F7F7F7;
    padding: 14px 34px;
    border-top: 1px solid #CCCCCC;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .overlay .overlay_body .select_type_category .h_category {
    display: none;
  }

  .overlay_body_inner .toggle_wrap .brand_group {
    padding: 20px;
    row-gap: 33px;
  }

  .overlay_body_inner .toggle_wrap .brand_group a {
    flex-basis: 46%;
  }

  .overlay_body_inner .toggle_wrap .brand_group a h6 {
    font-size: 14px;
  }

  .overlay_body_inner .toggle_wrap .brand_group a>div:first-child {
    margin-bottom: 16px;
  }



  .overlay_body_inner .toggle_wrap .f_wrap .select_type_category_h .icon-plus {
    display: block;
    width: 19px;
  }

  .overlay_body_inner .toggle_wrap .f_wrap .select_type_category_h .arrow-right {
    display: block;
  }

  .overlay .overlay_body .overlay_body_inner .select_type div {
    font-size: 16px;
  }
  .overlay .overlay_body .overlay_body_inner .select_type div > span:first-child {
    display: none;
  }

  .overlay_body_inner .toggle_wrap .f_wrap .select_type_category_h + .select_type_category_h {
    margin-top: 0;
  }


  /* -------------------------------
フッター モバイル
------------------------------- */

  footer .footer_head {
    padding: 30px 40px;
  }

  footer .footer_head .footer_head_link {
    flex-direction: column;
    gap: 25px;
  }

  footer .footer_foot {
    padding: 30px 10px;
  }

  footer .footer_foot .f_wrap {
    flex-direction: column;
  }

  footer .footer_foot>.f_wrap>.f_wrap {
    flex-direction: column;
    gap: 15px;
  }

  footer .footer_head_sns_pc {
    display: none;
  }

  footer .footer_foot .footer_head_sns_mb {
    display: flex;
  }

  footer .footer_foot .copywrite {
    text-align: center;
  }

  .fs-c-breadcrumb .fs-c-breadcrumb__list{
    font-size: 11px;
    letter-spacing: 0;
    padding: 20px ;
  }

  .product_history .title, .product_together .title{
    margin:40px 0;
  }
  .n_wide.product_together{
    padding: 20px;
  }

  .c_item_wrap.n_wide{
    padding: 20px;
  }

}

/* プレスリリース */

section#press {
  border-top: solid 1px #eaeaea;
}

#press .press-item {
  display: block; /* リンクをブロック要素にする */
  padding: 18px 0px 15px 0px; /* 余白を設定 */
  border-bottom: 1px solid #f1f1f1; /* 下線を設定 */
  color: black; /* リンクの色 */
  text-decoration: none; /* 下線を消す */
}

#press .press-item:last-child {
  border-bottom: none; /* 最後の要素には線を表示しない */
}

.fs-c-heading--page{
  border-bottom:none;

}

@media (max-width: 768px) {
  #press .press-item {
    line-height: 2.5rem;
  }
  body:not(#fs_Top):not(#fs_ProductDetails) .fs-l-main {
    padding:0 20px;
    }

    #fs_Top section h2 .en, #fs_ProductDetails section h2 .en{
      font-size:32px;
    }


    .footer_head .footer_head_link a{
      color: #000;
    }
}



/* 買い物かごのお薦め商品編集 */

#fs_ShoppingCart .fs-c-heading--page{
  text-align: left;
}

#fs_ShoppingCart  .fs-c-featuredProduct{
  margin-top: 5rem;
}

#fs_ShoppingCart section h2{
  text-align: left;
  margin: 0;
  align-items: flex-start;
}

#fs_ShoppingCart .fs-c-wishlistProduct__title, .fs-c-featuredProduct__title{
  border-bottom:none;
}

#fs_ShoppingCart .fs-c-heading--page{
  padding: 0 0 10px 0;
}

#fs_ShoppingCart .fs-p-announcement__title{
  margin-bottom: 2rem;
}

#fs_ShoppingCart .fs-c-featuredProduct__header{
  margin-bottom: 2rem;
}

#fs_ShoppingCart .slick-initialized .slick-slide{
  box-shadow: none;

}

#fs_ShoppingCart .fs-c-productListItem__imageContainer{
  margin-bottom: 2rem;
}


#fs-checkout-payHere-container .fs-c-button__label {
  color:#fff;
}

.fs-c-addressBookList__form a.fs-c-button--addToAddressbook.fs-c-button--secondary{
  color: #fff;
}

#fs_form a.fs-c-button--change.fs-c-button--primary {
  color: #fff;
}

.fs-c-button--primary{
  background-color: #71bce4;
  border:none;
}