@charset "UTF-8";
/* ==========================================================================
  Base
  ========================================================================== */
/* ==========================================================================
  Grid
  ========================================================================== */
/* ==========================================================================
  Layout
  ========================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+Antique:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.cdnfonts.com/css/basier");
.ly_header {
  padding-top: 0px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: white;
  transition: transform 0.6s ease;
  z-index: 1000;
}
@media (min-width: 768px) {
  .ly_header {
    padding-right: 0;
    padding-left: 15px;
    transition: transform 0.3s ease;
  }
}
.ly_header_inner {
  max-width: 1470px;
  padding-right: 0px;
  padding-left: 0px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .ly_header_inner {
    padding-right: 0;
    padding-left: 15px;
  }
}
.ly_header.is_hide {
  transform: translateY(-100%);
}

.ly_cont {
  padding-right: 16px;
  padding-left: 16px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .ly_cont {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 768px) {
  .ly_cont_inner {
    width: 100%;
    max-width: 880px;
    margin-right: auto;
    margin-left: auto;
  }
}
.ly_cont_inner__wide {
  width: 100%;
}

/* ==========================================================================
  Element Modules
  ========================================================================== */
.el_lv2Heading {
  padding-bottom: 0px;
  border-bottom: 0;
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: bold;
  color: #1A1A1A;
  text-align: center;
  letter-spacing: 0.04em;
}

.el_lv3Heading {
  padding-bottom: 0px;
  border-bottom: 0;
  font-size: clamp(12.5px, 1.667vw, 20px);
  font-weight: bold;
  color: #000000;
  text-decoration: underline;
  text-align: center;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  text-underline-offset: 8px;
  font-weight: 400;
}

.el_lv4Heading {
  text-align: center;
  padding-bottom: 0px;
  border-bottom: 0;
  font-size: clamp(20px, 2.167vw, 26px);
  font-family: "Basier Square", sans-serif;
  letter-spacing: 0.04em;
  color: #1A1A1A;
}

.el_lv5Heading {
  color: #5BC1D8;
  font-size: clamp(11px, 1.333vw, 16px);
  font-family: "Basier Square", sans-serif;
  letter-spacing: 0.04em;
  text-align: center;
  border-right: 1px solid #E6E6E6;
  border-left: 1px solid #E6E6E6;
  padding-right: 1.6em;
  padding-left: 1.6em;
  margin-right: auto;
  margin-left: auto;
  width: fit-content;
  line-height: 1.25;
}

.el_btn {
  display: block;
  width: 150px;
  max-width: 100%;
  border-bottom: 1px solid #1A1A1A;
  color: #fff;
  text-decoration: none;
  background-color: transparent;
  font-size: 12.5px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  color: #1A1A1A;
}
@media (min-width: 768px) {
  .el_btn {
    font-size: 16px;
  }
}
.el_btn:visited, .el_btn:focus, .el_btn:hover {
  color: #1A1A1A;
  text-decoration: none;
}

.el_btn.el_btn__arrowRight {
  position: relative;
  padding-right: 10px;
}
.el_btn.el_btn__arrowRight::after {
  content: "";
  background-image: url("../img/arrow.svg");
  position: absolute;
  top: 50%;
  right: 0.83em;
  transform: translateY(-50%);
  width: 32px;
  height: 8px;
  background-size: 32px 8px;
}

.el_roundedBtn {
  display: inline-block;
  border: 1px solid #CCCCCC;
  border-radius: 2.75px;
  color: #fff;
  font-size: 1.1rem;
  text-align: center;
  text-decoration: none;
  background-color: white;
  padding: 0.5em 2em;
}
@media (min-width: 768px) {
  .el_roundedBtn {
    border-radius: 5.5px;
    padding: 0.5em 1.4em;
  }
}

/* ==========================================================================
  Block Modules
  ========================================================================== */
.bl_headerNav {
  display: flex !important;
  justify-content: space-around;
}
.bl_headerNav_item {
  flex-grow: 1;
  text-align: center;
}
.bl_headerNav_item:last-child .bl_headerNav_link::after {
  content: none;
}
.bl_headerNav_link {
  position: relative;
  display: block;
  padding: 15px 5px;
  border-bottom: 0;
  color: #1A1A1A;
  text-decoration: none;
}

.bl_footerNav {
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  row-gap: 16px;
  line-height: 1;
  margin-bottom: 16px;
}
.bl_footerNav_link {
  font-size: 12.5px;
}
.bl_footerNav_link:hover {
  text-decoration: none;
}
@media (min-width: 768px) {
  .bl_footerNav_link {
    font-size: 13px;
  }
}
.bl_footerNav_link span {
  padding: 0 0.8em;
}
.bl_footerNav__fz-s {
  column-gap: 20px;
  margin-bottom: 20px;
}
.bl_footerNav__fz-s .bl_footerNav_link {
  font-size: 10.5px;
}
@media (min-width: 768px) {
  .bl_footerNav__fz-m {
    justify-content: center;
  }
}
.bl_footerNav__fz-m .bl_footerNav_link {
  font-size: 11px;
  margin-right: 16px;
}
@media (min-width: 768px) {
  .bl_footerNav__fz-m .bl_footerNav_link {
    font-size: 12px;
  }
}
.bl_footerNav__btn {
  column-gap: 11.25px;
  margin-top: 8px;
  margin-bottom: 20px;
}
.bl_footerNav__btn .bl_footerNav_link {
  font-size: 11px;
}
@media (min-width: 768px) {
  .bl_footerNav__btn .bl_footerNav_link {
    font-size: 14px;
  }
}

.bl_tabNav_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  white-space: nowrap;
  column-gap: 12px;
}
@media (min-width: 768px) {
  .bl_tabNav_inner {
    flex-wrap: nowrap;
    justify-content: flex-start;
    margin-bottom: 0px;
    column-gap: 0px;
  }
}
.bl_tabNav_link {
  display: inline-block;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  margin-bottom: 10px;
  border-bottom: 4px solid transparent;
  color: #E6E5E5;
  text-decoration: none;
  transition: 0.25s;
}
.bl_tabNav_link:focus, .bl_tabNav_link:hover {
  border-bottom-color: currentColor;
  color: #5FC2D9;
  opacity: 0.75;
}
.bl_tabNav_link.is_active {
  border-bottom-color: currentColor;
  color: #5FC2D9;
}

/* ==========================================================================
  Programs
  ========================================================================== */
/* ==========================================================================
  Unique
  ========================================================================== */
/* header
 ========================================================================== */
@media (min-width: 768px) {
  .ly_header_inner {
    display: flex;
    justify-content: space-between;
  }
}

@media (min-width: 768px) {
  .bl_tabNav {
    width: 375px;
  }
}
@media (min-width: 992px) {
  .bl_tabNav {
    width: 420px;
  }
}
.bl_tabNav_inner {
  position: relative;
}
@media (min-width: 992px) {
  .bl_tabNav_inner {
    justify-content: space-between;
  }
}
.bl_tabNav_inner:before {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 40px;
  top: 50%;
  left: calc(50% - 1px);
  transform: translateY(-50%);
  background-color: #E6E5E5;
}
@media (min-width: 992px) {
  .bl_tabNav_inner:before {
    left: 220px;
  }
}
.bl_tabNav_link {
  margin-bottom: 0;
  padding-top: 26px;
  padding-bottom: 0;
  height: 75px;
}
@media (min-width: 992px) {
  .bl_tabNav_link {
    padding-top: 28px;
    padding-right: 0;
    padding-left: 0;
  }
}
.bl_tabNav_link__onlinestore {
  padding-top: 20px;
  padding-right: 30px;
  padding-left: 30px;
}
@media (min-width: 992px) {
  .bl_tabNav_link__onlinestore {
    padding-top: 16px;
    padding-right: 0;
    padding-left: 0;
  }
}
.bl_tabNav_link__onlinestore:focus, .bl_tabNav_link__onlinestore:hover {
  border-bottom-color: currentColor;
  color: #000000;
  opacity: 0.75;
}
.bl_tabNav_link__onlinestore.is_active {
  border-bottom-color: currentColor;
  color: #000000;
}

@media (min-width: 768px) {
  .bl_headerNav {
    width: 340px;
  }
}
@media (min-width: 992px) {
  .bl_headerNav {
    width: 440px;
  }
}
@media (min-width: 768px) {
  .bl_headerNav_link:focus, .bl_headerNav_link:hover, .bl_headerNav_link:active {
    color: inherit;
    text-decoration: none;
  }
}
@media (min-width: 768px) {
  .bl_headerNav_link {
    padding-bottom: 0;
  }
}
.bl_headerNav_wrap {
  display: block;
  text-align: center;
  width: 22px;
  margin: 0 auto 6px auto;
}
@media (min-width: 768px) {
  .bl_headerNav_wrap {
    width: 28px;
  }
}
.bl_headerNav_item:first-child .bl_headerNav_wrap {
  width: 18px;
}
@media (min-width: 768px) {
  .bl_headerNav_item:first-child .bl_headerNav_wrap {
    width: 20px;
  }
}
.bl_headerNav_item:nth-child(3) .bl_headerNav_wrap {
  width: 18px;
}
@media (min-width: 768px) {
  .bl_headerNav_item:nth-child(3) .bl_headerNav_wrap {
    width: 20px;
  }
}
.bl_headerNav_item:nth-child(5) .bl_headerNav_wrap {
  width: 18px;
}
@media (min-width: 768px) {
  .bl_headerNav_item:nth-child(5) .bl_headerNav_wrap {
    width: 20px;
  }
}
.bl_headerNav_label {
  display: block;
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .bl_headerNav_label {
    font-size: 13px;
  }
}

.bl_search {
  background-color: #F9F9F9;
  padding: 16px 40px;
  margin-top: 150px;
}
@media (min-width: 768px) {
  .bl_search {
    padding-right: 15px;
    margin-top: 75px;
  }
}
.bl_search_inner {
  max-width: 1440px;
  margin: 0 auto;
}
.bl_search form {
  align-items: center;
  display: flex;
  background: #fff;
  height: 32px;
  border-radius: 16px;
  border: 2px solid #CCCCCC;
  padding: 0 20px;
  max-width: 420px;
}
@media (min-width: 768px) {
  .bl_search form {
    margin-right: 0;
    margin-left: auto;
  }
}
.bl_search_input {
  flex: 1;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.bl_search_input input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 12px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 400;
}
@media (min-width: 768px) {
  .bl_search_input input {
    font-size: 14px;
  }
}
.bl_search_btn button {
  display: block;
  width: 16px;
  height: 16px;
  background: url("../img/header_mushimegane.png") center center no-repeat;
  background-size: contain;
  border: none;
  outline: none;
}

/* top main
 ========================================================================== */
.un_hero {
  background-color: #F9F9F9;
  padding-bottom: clamp(16px, 2.5vw, 30px);
}
.un_hero .slick-slide {
  width: 250px !important;
  padding: 0 4px;
}
@media (min-width: 768px) {
  .un_hero .slick-slide {
    width: auto !important;
    padding: 0;
  }
}
.un_hero .fs-pt-carousel {
  background-color: #F9F9F9;
}
.un_hero .slick-dots {
  justify-content: flex-end !important;
  max-width: 1440px;
  width: 100%;
  margin-right: auto !important;
  margin-left: auto !important;
  padding-right: 16px !important;
}
.un_hero .fs-c-slick .slick-dots li button {
  background-color: #F9F9F9;
}
.un_hero .fs-c-slick .slick-dots li button:before {
  opacity: 1;
  content: "●";
  color: #CCCCCC;
  font-size: 6px;
  background-color: transparent;
}
@media (min-width: 768px) {
  .un_hero .fs-c-slick .slick-dots li button:before {
    font-size: 8px;
  }
}
.un_hero .fs-c-slick .slick-dots li.slick-active button:before {
  background-color: #000000;
  color: #000000;
  content: "●";
  border-radius: 50%;
}

.un_category .fs-pt-menu a {
  margin: 0;
}
.un_category ul {
  display: flex;
  justify-content: center;
  column-gap: 8px;
  margin-top: 15px;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.un_category li a {
  display: block;
  border: 1px solid #CCCCCC;
  border-radius: clamp(14px, 1.458vw, 17.5px);
  font-size: clamp(12.5px, 1.333vw, 16px);
  text-align: center;
  padding: 0.1em 1.6em;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #333333;
}
.un_category li a:visited, .un_category li a:focus, .un_category li a:hover {
  color: #333333;
  text-decoration: none;
}

.un_pickUp,
.un_newItem {
  background-color: #F9F9F9;
  padding-top: clamp(40px, 6vw, 72px);
  padding-bottom: clamp(40px, 6vw, 72px);
}
.un_pickUp .el_lv5Heading,
.un_newItem .el_lv5Heading {
  margin-bottom: 0.8em;
}
.un_pickUp .el_lv3Heading,
.un_newItem .el_lv3Heading {
  margin-top: 2em;
  margin-bottom: 1.5em;
}
.un_pickUp .fs-c-productListCarousel,
.un_newItem .fs-c-productListCarousel {
  max-width: 1170px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.un_pickUp .fs-c-productListCarousel__ctrl,
.un_newItem .fs-c-productListCarousel__ctrl {
  display: none !important;
}
.un_pickUp .fs-c-productListCarousel__list,
.un_newItem .fs-c-productListCarousel__list {
  padding-left: 16px;
}
@media (min-width: 1200px) {
  .un_pickUp .fs-c-productListCarousel__list,
  .un_newItem .fs-c-productListCarousel__list {
    padding-left: 0;
  }
}
.un_pickUp .fs-c-productListCarousel__list__item,
.un_newItem .fs-c-productListCarousel__list__item {
  margin-right: 2px;
  margin-left: 2px;
  width: 160px;
  max-width: 160px;
}
@media (min-width: 768px) {
  .un_pickUp .fs-c-productListCarousel__list__item,
  .un_newItem .fs-c-productListCarousel__list__item {
    width: 224px;
    max-width: 224px;
    min-width: 0;
  }
}
@media (min-width: 992px) {
  .un_pickUp .fs-c-productListCarousel__list__item,
  .un_newItem .fs-c-productListCarousel__list__item {
    width: 264px;
    max-width: 264px;
  }
}
@media (min-width: 1200px) {
  .un_pickUp .fs-c-productListCarousel__list__item,
  .un_newItem .fs-c-productListCarousel__list__item {
    width: 287px;
    max-width: 287px;
  }
}
.un_pickUp .fs-c-productListItem__imageContainer,
.un_newItem .fs-c-productListItem__imageContainer {
  margin-bottom: 1em;
}
.un_pickUp .fs-c-productListItem__imageContainer img,
.un_newItem .fs-c-productListItem__imageContainer img {
  border-radius: 4px;
  border: 1px solid transparent;
}
@media (min-width: 768px) {
  .un_pickUp .fs-c-productListItem__imageContainer img,
  .un_newItem .fs-c-productListItem__imageContainer img {
    border-radius: 8px;
  }
}
.un_pickUp .fs-c-productListItem__productName,
.un_newItem .fs-c-productListItem__productName {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .un_pickUp .fs-c-productListItem__productName a:focus, .un_pickUp .fs-c-productListItem__productName a:hover, .un_pickUp .fs-c-productListItem__productName a:active,
  .un_newItem .fs-c-productListItem__productName a:focus,
  .un_newItem .fs-c-productListItem__productName a:hover,
  .un_newItem .fs-c-productListItem__productName a:active {
    color: inherit;
    text-decoration: none;
  }
}
.un_pickUp .fs-c-productName__name,
.un_newItem .fs-c-productName__name {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: clamp(11.5px, 1.167vw, 14px);
  line-height: 1.7143;
  margin-bottom: 0;
}
.un_pickUp .fs-c-productPrice__main__label,
.un_newItem .fs-c-productPrice__main__label {
  display: none;
}
.un_pickUp .fs-c-price__currencyMark,
.un_newItem .fs-c-price__currencyMark {
  display: none;
}
.un_pickUp .fs-c-price__value,
.un_newItem .fs-c-price__value {
  font-size: clamp(17.5px, 2vw, 24px);
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #1A1A1A;
  font-weight: 700;
  line-height: 1.5;
}
.un_pickUp .fs-c-productPrice__addon__label,
.un_newItem .fs-c-productPrice__addon__label {
  font-size: clamp(10.5px, 1.25vw, 15px);
}
.un_pickUp .fs-c-productPrice__addon:where(:not([class*="--listed"]))::before, .un_pickUp .fs-c-productPrice__main__addon:where(:not([class*="--listed"]))::before,
.un_newItem .fs-c-productPrice__addon:where(:not([class*="--listed"]))::before,
.un_newItem .fs-c-productPrice__main__addon:where(:not([class*="--listed"]))::before {
  content: "円 (";
  padding-left: 4px;
  font-size: clamp(10.5px, 1.25vw, 15px);
}

.un_newItem .fs-c-buttonContainer {
  display: none;
}

.un_pickUp {
  background-color: initial;
  padding-top: clamp(60px, 7.25vw, 87px);
  padding-bottom: 0;
}
.un_pickUp .el_lv2Heading {
  margin-bottom: 1em;
}
.un_pickUp .fs-c-productListItem__control > *:last-child {
  margin-left: 0;
}
.un_pickUp .fs-c-button--particular.fs-c-button--addToWishList--icon::before {
  color: #CCCCCC;
}

.un_ranking {
  padding-top: clamp(40px, 6vw, 72px);
}
@media (min-width: 768px) {
  .un_ranking_inner {
    max-width: 1170px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
  }
  .un_ranking_inner ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 6px;
    row-gap: 36px;
  }
  .un_ranking_inner li {
    width: calc(20% - 6px);
    position: relative;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .un_ranking_inner li a:focus, .un_ranking_inner li a:hover, .un_ranking_inner li a:active {
    color: inherit;
    text-decoration: none;
  }
}
@media (min-width: 768px) {
  .un_ranking_inner .image {
    margin-bottom: 1em;
  }
  .un_ranking_inner .image img {
    border-radius: 8px;
  }
}
.un_ranking .el_lv5Heading {
  margin-bottom: 0.5em;
}
.un_ranking .el_lv2Heading {
  margin-bottom: 1em;
}
.un_ranking .item_list_slider {
  padding-left: 10px;
}
.un_ranking .slick-slide a {
  position: relative;
  padding: 0;
  margin: 0 5px;
}
.un_ranking .rank {
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(25px, 4.167vw, 50px); /* バッジの大きさ */
  height: clamp(25px, 4.167vw, 50px);
  background: #47C1D6;
  color: #fff;
  font-weight: bold;
  font-size: clamp(10px, 1.25vw, 15px);
  line-height: 1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: clamp(4px, 0.833vw, 10px);
  padding-left: clamp(4px, 0.833vw, 10px);
  clip-path: polygon(0 0, 100% 0, 0 100%); /* 左上の三角形 */
  border-top-left-radius: 8px;
}
.un_ranking .image img {
  border-radius: 8px;
}
.un_ranking .line-2 {
  font-size: clamp(11.5px, 1.167vw, 14px);
}
.un_ranking .top_item_name {
  font-size: clamp(17.5px, 2vw, 24px);
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #1A1A1A;
  font-weight: 700;
  line-height: 1.5;
}
.un_ranking .top_item_name span {
  font-size: clamp(10.5px, 1.25vw, 15px);
  font-weight: 400;
  padding-left: 4px;
}
.un_ranking .fs-c-productName__name {
  margin-top: 1em;
}
.un_ranking .fs-c-productPrice__main__label {
  display: none;
}
.un_ranking .fs-c-price__currencyMark {
  display: none;
}
.un_ranking .fs-c-price__value {
  font-size: 17.5px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #1A1A1A;
  font-weight: 700;
}
.un_ranking .fs-c-productPrice__addon__label {
  font-size: 10.5px;
}
.un_ranking .fs-c-productPrice__addon:where(:not([class*="--listed"]))::before, .un_ranking .fs-c-productPrice__main__addon:where(:not([class*="--listed"]))::before {
  content: "円 (";
  padding-left: 4px;
}
.un_ranking .fs-c-buttonContainer {
  display: none;
}

.un_recentlyViewed {
  padding-top: clamp(40px, 6vw, 72px);
  padding-bottom: clamp(32px, 6.667vw, 80px);
}
.un_recentlyViewed .el_lv5Heading {
  margin-bottom: 0.5em;
}
.un_recentlyViewed .el_lv2Heading {
  margin-bottom: 1em;
}
.un_recentlyViewed .item_list_slider {
  padding-left: 10px;
}
@media (min-width: 768px) {
  .un_recentlyViewed .item_list_slider {
    max-width: 1170px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (min-width: 768px) {
  .un_recentlyViewed .slick-slide {
    width: 224px;
    max-width: 224px;
    min-width: 0;
  }
}
@media (min-width: 992px) {
  .un_recentlyViewed .slick-slide {
    width: 264px;
    max-width: 264px;
  }
}
@media (min-width: 1200px) {
  .un_recentlyViewed .slick-slide {
    width: 287px;
    max-width: 287px;
  }
}
.un_recentlyViewed .slick-slide a {
  padding: 0;
  margin: 0 5px;
}
.un_recentlyViewed .line-2 {
  font-size: clamp(11.5px, 1.167vw, 14px);
}
.un_recentlyViewed .top_item_name {
  font-size: clamp(17.5px, 2vw, 24px);
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #1A1A1A;
  font-weight: 700;
  line-height: 1.5;
}
.un_recentlyViewed .top_item_name span {
  font-size: clamp(10.5px, 1.25vw, 15px);
  font-weight: 400;
  padding-left: 4px;
}
.un_recentlyViewed .fs-c-productName__name {
  margin-top: 1em;
}
.un_recentlyViewed .fs-c-productPrice__main__label {
  display: none;
}
.un_recentlyViewed .fs-c-price__currencyMark {
  display: none;
}
.un_recentlyViewed .fs-c-price__value {
  font-size: 17.5px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #1A1A1A;
  font-weight: 700;
}
.un_recentlyViewed .fs-c-productPrice__addon__label {
  font-size: 10.5px;
}
.un_recentlyViewed .fs-c-productPrice__addon:where(:not([class*="--listed"]))::before, .un_recentlyViewed .fs-c-productPrice__main__addon:where(:not([class*="--listed"]))::before {
  content: "円 (";
  padding-left: 4px;
}
.un_recentlyViewed .fs-c-buttonContainer {
  display: none;
}

.un_brand {
  background-color: #F9F9F9;
  padding-top: clamp(40px, 6vw, 72px);
  padding-bottom: clamp(40px, 6vw, 72px);
}
.un_brand .el_lv5Heading {
  margin-bottom: 8px;
}
.un_brand .el_lv2Heading {
  margin-bottom: clamp(8px, 2vw, 24px);
}
.un_brand .el_lv3Heading {
  margin-top: 2em;
  margin-bottom: 1.4em;
}
.un_brand .fs-pt-column {
  grid-template-columns: 1fr 1fr 1fr;
  padding-right: 8px;
  padding-left: 8px;
}
.un_brand .fs-pt-column img {
  width: 100%;
}
@media (min-width: 768px) {
  .un_brand .fs-pt-column {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    max-width: 1100px;
    margin-right: auto;
    margin-left: auto;
  }
}
.un_brand .fs-pt-column__item:only-child {
  padding: 8px;
}
.un_brand .el_btn {
  margin-top: clamp(24px, 3.333vw, 40px);
  margin-right: auto;
  margin-left: auto;
}

.un_news {
  padding-top: clamp(40px, 6vw, 72px);
  padding-bottom: clamp(32px, 6.667vw, 80px);
}
@media (min-width: 768px) {
  .un_news {
    max-width: 1100px;
    margin-right: auto;
    margin-left: auto;
  }
}
.un_news .el_lv5Heading {
  margin-bottom: 8px;
}
.un_news .el_lv2Heading {
  margin-bottom: clamp(8px, 2vw, 24px);
}
.un_news ul {
  padding-right: 24px;
  padding-left: 24px;
}
.un_news li {
  padding-bottom: 18px;
  border-bottom: 1px solid #E6E6E6;
  font-size: clamp(12.5px, 1.25vw, 15px);
}
.un_news li:last-child {
  border: none;
}
@media (min-width: 768px) {
  .un_news li a:focus, .un_news li a:hover, .un_news li a:active {
    text-decoration: none;
    color: inherit;
  }
}
@media (min-width: 768px) {
  .un_news li a {
    display: flex;
  }
}
.un_news li span {
  display: block;
  font-size: clamp(10px, 1vw, 12px);
}
@media (min-width: 768px) {
  .un_news li span {
    width: 160px;
  }
}
.un_news .fs-pt-list--noMarker > li + li {
  margin-top: 18px;
}
.un_news .el_btn {
  margin-top: clamp(24px, 3.333vw, 40px);
  margin-right: auto;
  margin-left: auto;
}

.un_shopInformation {
  background-color: #F9F9F9;
  padding-top: clamp(40px, 6vw, 72px);
  padding-bottom: clamp(40px, 6vw, 72px);
  position: relative;
}
@media (min-width: 768px) {
  .un_shopInformation {
    max-width: 1100px;
    margin-right: auto;
    margin-left: auto;
    padding-right: min(90px, 7.5vw);
    padding-left: min(90px, 7.5vw);
  }
}
.un_shopInformation .el_lv5Heading {
  margin-bottom: 8px;
}
.un_shopInformation .el_lv2Heading {
  margin-bottom: clamp(8px, 2vw, 24px);
}
.un_shopInformation ul {
  padding-right: 24px;
  padding-left: 24px;
}
.un_shopInformation li {
  background-color: white;
  padding-bottom: 18px;
  border-bottom: 1px solid #E6E6E6;
  padding: 10px;
  font-size: clamp(12.5px, 1.25vw, 15px);
  line-height: 1.6;
}
.un_shopInformation li a {
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .un_shopInformation li a:focus, .un_shopInformation li a:hover, .un_shopInformation li a:active {
    text-decoration: none;
    color: #000000;
  }
}
.un_shopInformation li:last-child {
  border: none;
}
.un_shopInformation li span {
  display: block;
  width: 78px;
  flex-shrink: 0;
  margin-right: 10px;
}
@media (min-width: 768px) {
  .un_shopInformation li span {
    width: 88px;
    margin-right: 32px;
  }
}
.un_shopInformation .fs-pt-list--noMarker > li + li {
  margin-top: 16px;
}
.un_shopInformation .el_btn {
  margin-top: clamp(24px, 3.333vw, 40px);
  margin-right: auto;
  margin-left: auto;
}
.un_shopInformation_btn {
  display: block;
  position: absolute;
  width: 48px;
  bottom: 16px;
  right: 40px;
}
@media (min-width: 768px) {
  .un_shopInformation_btn {
    width: min(19.5vw, 234px);
    bottom: min(3.667vw, 44px);
    right: min(2vw, 24px);
  }
}

.un_banner {
  padding-top: clamp(40px, 8vw, 96px);
  padding-right: 24px;
  padding-left: 24px;
  max-width: 1100px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .un_banner {
    grid-template-columns: 1fr 1fr;
    column-gap: 18px;
  }
}
.un_banner_col2 .fs-pt-column {
  display: flex;
  column-gap: 16px;
}
.un_banner_col2 .fs-pt-column__item {
  padding-right: 0;
  padding-left: 0;
}

/* footer
 ========================================================================== */
.fs-l-footer {
  margin-top: 0px;
  padding: 36px 28px 28px 28px;
  background-color: #F9F9F9;
}

#f_area {
  background-color: transparent;
}

@media (min-width: 768px) {
  .un_footerWapper {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 40px;
    margin-bottom: 40px;
  }
}

.un_app {
  display: flex;
  column-gap: 12px;
  justify-content: center;
}
@media (min-width: 768px) {
  .un_app {
    column-gap: 16px;
  }
}
.un_app li:first-child {
  width: 86px;
}
@media (min-width: 768px) {
  .un_app li:first-child {
    width: 113px;
  }
}
.un_app li:nth-of-type(2) {
  width: 108px;
}
@media (min-width: 768px) {
  .un_app li:nth-of-type(2) {
    width: 142px;
  }
}

.un_icon {
  display: flex;
  margin: 32px auto;
  justify-content: center;
}
@media (min-width: 768px) {
  .un_icon {
    margin: 0;
  }
}

.un_sns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 32px;
  margin-right: 32px;
  border-right: 1px #000000 dotted;
  width: 124px;
  box-sizing: border-box;
}
.un_sns li:first-child {
  width: 28px;
}
.un_sns li:nth-of-type(2) {
  width: 28px;
}

.un_mailmagazine {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 116px;
  cursor: pointer;
}
.un_mailmagazine:hover {
  text-decoration: none;
}
@media (min-width: 768px) {
  .un_mailmagazine {
    width: auto;
    column-gap: 12px;
  }
}
.un_mailmagazine_ttl {
  width: 28px;
}
.un_mailmagazine_txt {
  font-size: 11px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  text-align: center;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .un_mailmagazine_txt {
    font-size: 12px;
  }
}

@media (min-width: 768px) {
  .un_footerNavWapper {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 16px;
    flex-wrap: wrap;
  }
}

.un_footerLogo {
  text-align: center;
  margin-top: 36px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}
@media (min-width: 768px) {
  .un_footerLogo {
    margin-top: 40px;
  }
}
.un_footerLogo_img {
  width: 150px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .un_footerLogo_img {
    width: 204px;
  }
}
.un_footerLogo small {
  font-size: 10px;
  color: #333333;
  display: block;
  margin: 10px 0;
}
@media (min-width: 768px) {
  .un_footerLogo small {
    font-size: 12px;
  }
}
.un_footerLogo span {
  font-size: 10px;
  line-height: 1.8421;
  display: block;
  color: #999999;
}
@media (min-width: 768px) {
  .un_footerLogo span {
    font-size: 12px;
  }
}

/* ==========================================================================
  Helpers
  ========================================================================== */
/* ==========================================================================
  futureshop 専用
  ========================================================================== */
.members_info {
  max-width: 1440px !important;
}

#onlinestore.fs-l-main {
  width: 100%;
  max-width: initial;
}

#main_area {
  margin: 0 auto;
}

#onlinestore #main_area {
  max-width: initial;
  width: 100%;
  padding-right: 0;
  padding-left: 0px;
}

@media screen and (min-width: 1200px) {
  .fs-l-main {
    width: auto;
    margin-left: auto;
    overflow: hidden;
  }
}
@media screen and (min-width: 1200px) {
  .fs-l-pageMain {
    margin-right: auto;
    margin-left: auto;
  }
}
/******************************************************
サイドエリア
******************************************************/
@media screen and (min-width: 1200px) {
  #side_gift.side_box {
    display: block;
  }
  #side_area {
    width: 200px;
    margin-right: initial;
    padding: initial;
    background: #f2f2f2;
  }
  #side_area a {
    color: #666;
    text-decoration: none;
  }
  #side_area .side_title {
    position: relative;
    margin-bottom: 2rem;
    padding: 0 0.5rem 1rem;
    color: #000;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.4;
    border-bottom: 1px solid #000;
  }
  #side_area .side_title span {
    font-size: 1.6rem;
  }
  #side_area .side_title:after {
    position: absolute;
    top: 0;
    right: 0.5rem;
  }
  #side_area .nav_title {
    display: block;
  }
  #side_area .side_title.category:after {
    content: url(https://ilex.itembox.design/item/images/pc/s_icon001.png);
  }
  #side_area .side_title.column:after {
    content: url(https://ilex.itembox.design/item/images/pc/s_icon002.png);
  }
  #side_area .side_title.shop:after {
    content: url(https://ilex.itembox.design/item/images/pc/s_icon003.png);
  }
  #side_area .side_title.beginner:after {
    content: url(https://ilex.itembox.design/item/images/pc/s_icon004.png);
  }
  #side_area .side_title.brand:after {
    content: url(https://ilex.itembox.design/item/images/pc/s_icon005.png);
  }
  #side_area .side_box {
    margin-bottom: initial;
  }
  #side_area ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  #side_area ul.first {
    padding: 2rem 2rem 3rem;
  }
  #side_area li {
    margin: 0;
    padding: 0;
  }
  #side_area ul.first > li:nth-child(n+2) {
    margin-top: 0;
  }
  #side_area ul span.toggle {
    position: relative;
    display: block;
    cursor: pointer;
    font-size: 1.4rem;
  }
  #side_area ul.first li span.toggle:after {
    position: absolute;
    top: 50%;
    right: 0;
    content: "\f078";
    font-family: "FontAwesome";
    color: #666;
  }
  #side_area ul.first > li > a {
    font-size: 1.4rem !important;
    display: block;
  }
  #side_area ul.first.small > li > a {
    font-size: 1.4rem;
    display: block;
  }
  #side_area ul.first li span.toggle.active:after {
    content: "\f077";
  }
  #side_area ul.second {
    display: none;
    padding: 0 1rem;
  }
  #side_area ul.second.block {
    display: block;
  }
  #side_area ul.second li:nth-child(n+2) {
    margin-top: 0.5em;
  }
  #side_area ul.second li {
    font-size: 1.4rem;
  }
  #side_area ul.second li a {
    position: relative;
    display: block;
  }
  #side_area ul.second li a:before {
    content: "";
  }
  #side_area .close_btn {
    display: block;
  }
}
#side_area {
  position: fixed;
  right: -320px;
  top: 150px !important;
  width: 300px;
  padding-left: 2rem;
  height: calc(100vh - 9rem);
  overflow: auto;
  transition: all 0.6s;
  z-index: 1002;
  box-sizing: border-box;
  background: transparent !important;
}
@media (min-width: 768px) {
  #side_area {
    top: 75px !important;
  }
}

#side_area.fixed {
  top: 6rem;
  height: calc(100vh - 6rem);
}

#side_area a {
  color: #666;
}

.side_cover {
  padding-bottom: 6rem;
  background: #fff;
  box-shadow: -5px 0 5px 0 rgba(0, 0, 0, 0.3);
}

#side_area.on {
  visibility: visible;
  right: 0;
}

#side_area .side_title {
  display: none;
}

#side_area .nav_title {
  padding: 0 2.5rem;
  line-height: 5rem;
  color: #4d4d4d;
  font-size: 1.6rem;
  font-weight: bold;
  background: #f1f1f1;
}

#side_area .nav_title span {
  margin-right: 1rem;
}

#side_area .nav_title span img {
  width: auto;
  height: 2.2rem;
}

#side_area .toggle {
  position: relative;
  display: block;
  color: #4d4d4d;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 5px 0;
}

#side_area .toggle:after {
  position: absolute;
  content: "\f078";
  top: 50%;
  right: 0;
  color: #666;
  margin-top: -0.5em;
  line-height: 1;
  font-family: "FontAwesome";
}

#side_area .toggle.active:after {
  content: "\f077";
}

#side_area ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#side_area .first {
  padding: 2rem 2rem 3rem;
}

#side_area .first > li > a {
  color: #4d4d4d;
  font-size: 1.4rem;
  font-weight: bold;
  display: inline-block;
  padding: 5px 0;
}

#side_area ul.first.small > li > a {
  color: #666;
  font-weight: normal;
}

#side_area .second {
  display: none;
  padding: 1rem;
  padding-left: 2rem;
}

#side_area .second.block {
  display: block;
}

#side_area .second li {
  position: relative;
  padding-left: 1rem;
}

#side_area .second li:nth-child(n+2) {
  margin-top: 0.5em;
}

#side_area .second li:before {
  position: absolute;
  content: "•";
  top: 0;
  left: 0;
}

#side_area .close_btn {
  position: absolute;
  top: 45px;
  left: 5px;
  z-index: 1003;
}

#side_area .close_btn img {
  width: auto;
  height: 3rem;
}

#side_gift.side_box .giftscene ul {
  width: 90%;
  margin: 0 auto;
  padding: 5% 0;
}

#side_area #side_gift.side_box .nav_title span img {
  height: 2.2rem;
}/*# sourceMappingURL=style.css.map */