@charset "UTF-8";
/* =====================
	トップページ
 ======================= */
:root {
  --vw: 1vw;
}
/** -------------------- COMMON -------------------- **/
.fs-l-pageMain .c-title__h2:before {
  font-size: 3.0rem;
}

.fs-l-pageMain .c-title__h2 span {
  font-size: 1.2rem;
}

/** -------------------- MV -------------------- **/
.p-mv .fs-pt-carousel__slide {
  display: block !important;
}

.p-mv .slick-dotted.slick-slider {
  margin: 0;
}

.p-mv .slick-dots {
  position: absolute;
  bottom: 24px;
  left: 0;
  width: 100%;
  padding: 0;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
}

.p-mv .slick-dots li {
  margin: 0;
}

.p-mv .slick-dots li button {
  background: var(--c_wht);
  opacity: 0.8;
  padding: 0;
  border-radius: 50%;
  border: 1px solid transparent;
}

.p-mv .slick-dots li button:before {
  display: none;
}

.p-mv .slick-dots li.slick-active button {
  background: var(--c_main);
  border-color: var(--c_main);
  opacity: 1.0;
}

/** -------------------- ATTENTION -------------------- **/
.p-attention {
  padding: 16px 0;
  border-bottom: 1px solid var(--c_border);
  text-align: center;
}

.p-attention a {
  color: var(--c_attention);
  text-decoration: underline;
}

.p-attention a:active, .p-attention a:visited {
  color: var(--c_attention);
}

/** -------------------- PICKUP -------------------- **/
.p-pickup {
  margin: 32px 0 64px;
}

.p-pickup__list {
  margin: 0 -20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.p-pickup__list__item a {
  position: relative;
  display: block;
  color: var(--c_wht);
}

.p-pickup__list__item a:before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--c_black);
  opacity: 0.55;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: var(--anim);
  transition: var(--anim);
}

.p-pickup__list__item__bg {
  position: relative;
  z-index: -1;
  overflow: hidden;
}

.p-pickup__list__item__bg img {
  -webkit-transition: var(--anim);
  transition: var(--anim);
}

.p-pickup__list__item__name {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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;
  row-gap: 5px;
}

.p-pickup__list__item__name__eng {
  font-family: var(--font_eng);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
}

.p-pickup__list__item__name__jp {
  font-size: 1.2rem;
  font-weight: 500;
}

.p-present {
  margin: 20px 0 0;
}

.p-present__bnr {
  background: var(--c_bg_g);
  padding: 32px 20px;
  margin: 0 -20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px 10px;
}

.p-present__bnr__title {
  width: 59px;
}

.p-present__bnr__txt {
  letter-spacing: 0.1em;
  line-height: 1.69231;
}

.p-present__bnr__txt span {
  font-family: var(--font_eng);
  font-weight: 500;
}

/** -------------------- RANKING -------------------- **/
.p-ranking {
  margin: 64px 0;
}

.p-ranking__tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.p-ranking__tab__item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-family: var(--font_eng);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  padding: 0 0px 16px;
  position: relative;
  -webkit-transition: var(--anim);
  transition: var(--anim);
}

.p-ranking__tab__item:after {
  content: "";
  width: 0;
  height: 4px;
  background: var(--c_main);
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: var(--anim);
  transition: var(--anim);
}

.p-ranking__tab__item.is-current {
  font-weight: 700;
  color: var(--c_main);
}

.p-ranking__tab__item.is-current:after {
  width: 100%;
}

.p-ranking__tab__wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  margin: 0 -20px 32px;
  padding: 0 20px;
  border-bottom: 1px solid var(--c_border);
	font-weight: bold;
}

.p-ranking__products {
  display: none;
  opacity: 0;
}

.p-ranking__products.is-current {
  display: block;
  -webkit-animation: fadein 1.2s forwards;
          animation: fadein 1.2s forwards;
}

.p-ranking__list,
.p-ranking .fr3-productListStatic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px 16px;
  padding: 0;
}

.p-ranking__list__item,
.p-ranking .fr3-item {
  width: calc((100% - 16px) / 2);
  counter-increment: cnt;
}

.p-ranking__list__item:first-child a:before,
.p-ranking .fr3-item:first-child a:before {
  background: #D0B62B;
}

.p-ranking__list__item:nth-child(2) a:before,
.p-ranking .fr3-item:nth-child(2) a:before {
  background: #778188;
}

.p-ranking__list__item:nth-child(3) a:before,
.p-ranking .fr3-item:nth-child(3) a:before {
  background: #AD8154;
}

.p-ranking__list__item:nth-child(n+5),
.p-ranking .fr3-item:nth-child(n+5) {
  width: calc((100% - 32px) / 3);
}

.p-ranking__list__item a,
.p-ranking .fr3-item a {
  position: relative;
  display: block;
}

.p-ranking__list__item a:before,
.p-ranking .fr3-item a:before {
  content: counter(cnt);
  width: 24px;
  height: 24px;
  background: var(--c_text);
  color: var(--c_wht);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--font_eng);
  font-size: 1.2rem;
  font-weight: 700;
  z-index: 2;
}

.p-ranking .fr3-item__rankContainer {
  display: none;
}

.p-ranking__list__item .pic,
.p-ranking .fr3-item__imageContainer {
  margin: 0 0 16px;
}

.p-ranking__list__item .name,
.p-ranking .fr3-item__productName {
  font-size: 1.2rem;
  line-height: 1.75;
  margin: 16px 0 0;
}

.p-ranking__list__item .price,
.p-ranking .fr3-item__productPrice {
  font-size: 1.2rem;
  line-height: 1.0;
  margin: 16px 0 0;
}

.p-ranking__list__item .price span,
.p-ranking .fr3-item__productPrice__price {
  font-family: var(--font_eng);
  font-size: 1.3rem;
}

@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1.0;
  }
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1.0;
  }
}

/** -------------------- SPECIAL -------------------- **/
.p-special {
  margin: 64px 0 32px;
}

.p-special__list__item {
  padding: 24px 0 0;
  border-top: 1px solid var(--c_border);
}

.p-special__list__item__title {
  text-align: center;
  margin: 0 0 24px;
}

.p-special__list__item__brand {
  color: var(--c_text_lg);
  font-family: var(--font_eng);
  font-size: 1.4rem;
  letter-spacing: 0.14em;
  line-height: 1.28571;
  margin: 0 0 12px;
}

.p-special__list__item__name {
  font-family: var(--font_title);
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  line-height: 1.08333;
  margin: 12px 0 16px;
}

.p-special__list__item__jp {
  letter-spacing: 0.15em;
  line-height: 1.0;
  margin: 16px 0 0;
}

.p-special__list__item__link {
  margin: 24px 0 16px;
}

.p-special__list__item__img img {
  width: 100%;
}

/** -------------------- keywordSearch -------------------- **/
.p-keywordSearch {
  padding: 64px 0;
  margin: 32px 0 64px;
  background: #121212;
  color: var(--c_wht);
}

.p-keywordSearch__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.p-keywordSearch__form__input {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  border: 0;
  padding: 16px 16px 16px 40px;
  background: url(../images/global/icon_search.png) no-repeat left 16px center/15px, var(--c_wht);
}

.p-keywordSearch__form__btn {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 80px;
  /*height: 56px;*/
  background: var(--c_blk-pnk);
  border: 2px solid var(--c_blk-pnk);
  color: var(--c_wht);
  font-family: var(--font_eng);
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  text-align: center;
  position: relative;
  z-index: 2;
}

.p-keywordSearch__form__btn:before {
  content: "";
  width: 0;
  height: 100%;
  background: var(--c_wht);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  -webkit-transition: var(--anim);
  transition: var(--anim);
}

.p-keywordSearch__form__btn:hover {
  opacity: 1.0;
  color: var(--c_main);
}

.p-keywordSearch__form__btn:hover:before {
  width: 100%;
}

.p-keywordSearch__form div.poplink {
  top: 100%;
  left: 0;
  width: 100%!important;
  z-index: 300;
}

.p-keywordSearch__hotword {
  margin: 40px 0 0;
}

.p-keywordSearch__hotword__title {
  font-family: var(--font_title);
  font-size: 1.8rem;
  line-height: 1.11111;
  margin: 0 0 20px;
}

.p-keywordSearch__hotword__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px 20px;
}

.p-keywordSearch__hotword__list > li a {
  color: var(--c_wht);
  display: block;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--c_text_g);
}

.p-keywordSearch__hotword__list > li + li {
  margin: 0;
}

/** -------------------- RECOMMEND -------------------- **/
.p-sliderArea {
  margin: 64px 0;
}

.p-productsSlider {
  padding: 64px 0;
  overflow: hidden;
}

.p-productsSlider:nth-child(odd) {
  background: var(--c_bg_w);
}

.p-productsSlider:nth-child(even):last-child {
  padding-bottom: 0;
}

.p-productsSlider .fs-p-heading--lv2 {
  display: none;
}

.p-productsSlider .fr3-productListCarousel {
  grid-template-columns: 100%;
  margin: 0 -20px;
}

.p-productsSlider .fr3-productListCarousel__slides {
  gap: 0;
}

.p-productsSlider .fr3-productListCarousel__slides:after {
  content: "";
  flex: 0 0 20px;
}

.p-productsSlider .fr3-productListCarousel .fr3-productListCarousel__ButtonContainer {
  display: none;
}

.p-productsSlider .fr3-productListCarousel__responsive_2 .fr3-productListCarousel__slide {
  flex: 0 0 calc((100% - 16px * 1) / 2.5);
  padding-left: 20px;
  margin-right: -4px;
}

.p-productsSlider .fr3-productListCarousel__responsive_2 .fr3-productListCarousel__slide:last-child {
  margin-right: 0;
}

.p-productsSlider__wrapper {
  overflow-x: scroll;
  overflow-y: hidden;
  padding: 0 20px;
  margin: 0 0 48px;
}

.p-productsSlider__wrapper:last-child {
  margin-bottom: 0;
}

.p-productsSlider .fr3-productListStatic {
  padding: 0;
  display: flex;
  gap: 0 16px;
}

.p-productsSlider .fr3-productListStatic:after {
  content: "";
  flex: 0 0 4px;
  height: 1px;
}

.p-productsSlider .fr3-productListStatic .fr3-item {
  flex: 0 0 130px;
}

.p-productsSlider .fr3-productListCarousel__slide a {
  position: relative;
}

.p-productsSlider .fr3-item__imageContainer {
}

.p-productsSlider .fr3-item__productName {
}

.p-productsSlider .fr3-item__productPrice {
}

.p-sale .fr3-productListCarousel__slide a:before {
  content: "SALE";
  font-family: var(--font_eng);
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  background: var(--c_main);
  color: var(--c_wht);
  padding: 4px 8px;
  position: absolute;
  top: 0;
  left: 0;
}

.p-sale .fr3-item__productPrice {
  color: var(--c_attention);
  font-weight: 700;
}

.p-outlet .fr3-productListCarousel__slide a:before {
  content: "OUTLET";
  font-family: var(--font_eng);
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  background: var(--c_main);
  color: var(--c_wht);
  padding: 4px 8px;
  position: absolute;
  top: 0;
  left: 0;
}

.p-outlet .fr3-item__productPrice {
  color: var(--c_attention);
  font-weight: 700;
}

.p-productsSlider__list {
  margin: 0 0 48px;
}

.p-productsSlider__list:last-child {
  margin-bottom: 0;
}

.p-productsSlider__list .slick-list {
  overflow: visible;
}

.p-productsSlider__list .slick-track {
  margin: 0;
}

.p-productsSlider__list__item {
  margin: 0 16px 0 0;
}

.p-productsSlider__list__item a {
  position: relative;
}

.p-productsSlider__list__item .pic {
  margin: 0 0 8px;
}

.p-productsSlider__list__item .brand {
  font-family: var(--font_mix);
  font-size: 1.2rem;
  line-height: 1.0;
  margin: 8px 0;
  color: var(--c_text_lg);
}

.p-productsSlider__list__item .name {
  font-size: 1.2rem;
  line-heght: 1.91667;
  margin: 8px 0 12px;
}

.p-productsSlider__list__item .price {
  font-size: 1.2rem;
  line-height: 1.0;
  margin: 12px 0 0;
}

.p-productsSlider__list__item .price span {
  font-family: var(--font_eng);
  font-size: 1.3rem;
}

.p-sale .p-productsSlider__list__item a:before {
  content: "SALE";
  font-family: var(--font_eng);
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  background: var(--c_main);
  color: var(--c_wht);
  padding: 4px 8px;
  position: absolute;
  top: 0;
  left: 0;
}

.p-sale .p-productsSlider__list__item .price {
  color: var(--c_attention);
  font-weight: 700;
}

.p-outlet .p-productsSlider__list__item a:before {
  content: "OUTLET";
  font-family: var(--font_eng);
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  background: var(--c_main);
  color: var(--c_wht);
  padding: 4px 8px;
  position: absolute;
  top: 0;
  left: 0;
}

.p-outlet .p-productsSlider__list__item .price {
  color: var(--c_attention);
  font-weight: 700;
}

/** -------------------- TOPICS -------------------- **/
.p-topics {
  margin: 64px 0;
}

.p-topics__list .fs-pt-column__item {
  padding: 0;
  margin: 0 0 20px;
  gap: 12px 16px;
  grid-template-columns: 40% 1fr;
}

.p-topics__list .fs-pt-column__item:last-child {
  margin-bottom: 0;
}

.p-topics__list .fs-pt-column__item .fs-pt-column__image {
  grid-row: span 2;
}

.p-topics__list .fs-pt-column__item .fs-pt-column__heading {
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.46154;
  color: var(--c_text);
  margin: 0;
  -ms-flex-item-align: center;
      align-self: center;
}

.p-topics__list .fs-pt-column__item .fs-pt-column__description {
  font-size: 1.2rem;
  line-height: 1.75;
  color: var(--c_text_g);
  margin: 0;
}

/** -------------------- MAGAZINE -------------------- **/
.p-magazine {
  margin: 64px 0;
}

.p-magazine__img {
  margin: 0 0 40px;
}

.p-magazine__img img {
  width: 100%;
}

.p-magazine__title {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-magazine__title:before {
  display: none;
}

.p-magazine__title > img {
  width: 174px;
}

.p-magazine__list {
  margin: 0 0 40px;
}

.p-magazine__list__item {
  margin: 0 0 32px;
}

.p-magazine__list__item:last-child {
  margin-bottom: 0;
}

.p-magazine__list__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}

.p-magazine__list__item .thumb {
  width: 140px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-magazine__list__item .txtbox {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.p-magazine__list__item .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: var(--c_text_g);
}

.p-magazine__list__item .category {
  font-size: 1.0rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.p-magazine__list__item .category span {
  display: block;
  padding: 4px 10px;
  border: 1px solid var(--c_border);
  border-radius: 4px;
}

.p-magazine__list__item .date {
  font-family: var(--font_eng);
  font-size: 1.1rem;
  line-height: 1.0;
  margin-left: auto;
}

.p-magazine__list__item .title {
  font-size: 1.2rem;
  line-height: 1.75;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin: 10px 0 0;
}

/** -------------------- History -------------------- **/
.p-history {
  margin: 64px 0;
}

.p-history.p-productsSlider {
  padding: 0;
  background: none;
}

.p-history .fr3-productListStatic .fr3-item {
  flex: 0 0 80px;
}

.p-history .fr3-item__productName {
  margin-bottom: 0;
}

.p-history .fr3-item__productPrice {
  display: none;
}

.p-history__scroll {
  overflow-x: auto;
  overflow-y: hidden;
  margin: -20px;
}

.p-history__list {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0 20px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}

.p-history__list__item {
  width: 80px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-history__list__item .pic {
  margin: 0 0 8px;
}

.p-history__list__item .name {
  font-size: 1.2rem;
  line-height: 1.75;
}

/** -------------------- Instagram -------------------- **/
.p-instagram {
  margin: 64px 0;
}

.p-instagram__vsm {
  margin: 0 0 32px;
}

.p-instagram__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin: 0 0 32px;
}

/** -------------------- News / Shoplist -------------------- **/
.p-newsShoplist {
  margin: 64px 0;
}

/** -------------------- News -------------------- **/
.p-news__list {
  border-bottom: 1px solid var(--c_border);
}

.p-news__list__item {
  border-top: 1px solid var(--c_border);
}

.p-news__list__item a {
  padding: 24px 0;
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}

.p-news__list__item .date {
  font-family: var(--font_eng);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.0;
  color: var(--c_main);
}

.p-news__list__item .category {
  font-family: var(--font_mix);
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  line-height: 1.0;
}

.p-news__list__item .category span {
  padding: 4px 8px;
  border: 1px solid var(--c_border);
  display: inline-block;
}

.p-news__list__item .title {
  grid-column: span 2;
  font-size: 1.3rem;
  line-height: 1.46154;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/** -------------------- Shoplist -------------------- **/
.p-shoplist {
  margin: 64px 0 0;
}

.p-shoplist__img {
  margin: 0 0 24px;
}

.p-shoplist__txt {
  letter-spacing: 0.1em;
  line-height: 1.76923;
  margin: 24px 0 40px;
}

/** -------------------- Service -------------------- **/
.p-service {
  margin: 64px 0;
  padding-top: 40px;
  border-top: 1px solid var(--c_border);
}

.p-service:last-of-type {
  margin-bottom: 0;
}

.p-service__title {
  text-align: center;
  font-family: var(--font_title);
  font-size: 3.0rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin: 0 0 16px;
}

.p-service__lead {
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.91667;
  letter-spacing: 0.1em;
  margin: 16px 0 32px;
}

.p-service__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 32px 0 0;
  gap: 32px 5px;
}

.p-service__list__item {
  text-align: center;
}

.p-service__list__item__icon {
  width: 55px;
  margin: 0 auto 10px;
}

.p-service__list__item__txt {
  font-family: var(--font_mix);
  font-size: 1.2rem;
  line-height: 1.25;
}

.p-service__list__item__txt strong {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--c_main);
  display: inline-block;
  margin: 4px 0 0;
}

.p-service__list__item__txt strong.sizeL {
  font-size: 1.8rem;
}

/* タブレット縦以上
  ------------------------ */
@media (min-width: 768px) {
  .p-pickup__list {
    grid-template-columns: repeat(4, 1fr);
  }
  .p-ranking__list__item,
  .p-ranking .fr3-item {
    width: calc((100% - 16px * 2) / 3);
  }
  .p-ranking__list__item:nth-child(n+7),
  .p-ranking .fr3-item:nth-child(n+7) {
    width: calc((100% - 16px * 3) / 4);
  }
  .p-special {
    margin-bottom: 0;
  }
  .p-special__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .p-special__list__item {
    border-right: 1px solid var(--c_border);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-special__list__item:last-child {
    border-right: 0;
  }
  .p-special__list__item__title {
    margin: auto 0;
  }
  .p-keywordSearch {
    margin-top: 0;
  }
  .p-productsSlider .fr3-productListCarousel__responsive_2 .fr3-productListCarousel__slide {
    flex: 0 0 calc((100% - 16px * 1) / 3.5);
  }
  .p-productsSlider .fr3-productListStatic .fr3-item {
    flex: 0 0 150px;
  }
  .p-history .fr3-productListStatic .fr3-item {
  }
  .p-topics__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .p-history .fr3-productListStatic .fr3-item {
    flex: 0 0 120px;
  }
  .p-history__list__item {
    width: 160px;
  }
  .p-instagram__list {
    grid-template-columns: repeat(4, 1fr);
  }
  .p-service__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* タブレット横以上
  ------------------------ */
@media (min-width: 981px) {
  .fs-l-pageMain .c-title__h2:before {
    font-size: 4.8rem;
  }
  .fs-l-pageMain .c-title__h2 span {
    font-size: 1.4rem;
  }
  .p-mv .slick-dots {
    bottom: 20px;
  }
  .p-mv .slick-arrow {
    background: url(../images/common/arrow.png) no-repeat center/16px, var(--c_wht);
    width: 55px;
    height: 55px;
    border-radius: 50%;
  }
  .p-mv .slick-arrow:before {
    display: none;
  }
  .p-mv .slick-prev {
    left: 32px;
    -webkit-transform: translate(0, -50%) scale(-1, 1);
            transform: translate(0, -50%) scale(-1, 1);
  }
  .p-mv .slick-next {
    right: 32px;
  }
  .p-attention {
    padding: 12px 0;
  }
  .p-pickup {
    margin: 48px 0 100px;
  }
  .p-pickup__list {
    margin: 0;
    gap: 8px;
  }
  .p-pickup__list__item a:hover {
    opacity: 1.0;
  }
  .p-pickup__list__item a:hover:before {
    opacity: 0.3;
  }
  .p-pickup__list__item a:hover .p-pickup__list__item__bg img {
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
  }
  .p-pickup__list__item__name__eng {
    font-size: 2.6rem;
  }
  .p-pickup__list__item__name__jp {
    font-size: 1.5rem;
    font-weight: 400;
  }
  .p-present {
    margin: 40px 0 0;
  }
  .p-present__bnr {
    padding: 20px;
    margin: 0;
    gap: 0 24px;
  }
  .p-present__bnr__title {
    width: 72px;
  }
  .p-present__bnr__txt {
    margin-right: 16px;
  }
  .p-ranking {
    margin: 100px 0;
    overflow: hidden;
  }
  .p-ranking__tab {
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
    width: auto;
  }
  .p-ranking__tab__item {
    font-size: 1.4rem;
    cursor: pointer;
	font-weight: 500;
    font-family: var(--font_ja);
  }
  .p-ranking__tab__wrapper {
    overflow: visible;
    margin: 0 0 52px;
    padding: 0;
    border: 0;
    position: relative;
  }
  .p-ranking__tab__wrapper:before {
    content: "";
    width: 100vw;
    height: 1px;
    background: var(--c_border);
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .p-ranking__list,
  .p-ranking .fr3-productListStatic {
    gap: 64px 76px;
  }
  .p-ranking__list__item,
  .p-ranking .fr3-item {
    width: calc((100% - (76px * 4)) / 5) !important;
  }
  .p-ranking__list__item a:before,
  .p-ranking .fr3-item a:before {
    width: 32px;
    height: 32px;
    font-size: 1.4rem;
  }
  .p-ranking__list__item .pic,
  .p-ranking .fr3-item__imageContainer {
    margin-bottom: 24px;
  }
  .p-ranking__list__item .name,
  .p-ranking .fr3-item__productName {
    font-size: 1.3rem;
    margin: 24px 0 20px;
  }
  .p-ranking__list__item .price span,
  .p-ranking .fr3-item__productPrice__price {
    font-size: 1.4rem;
  }
  .p-special {
    margin: 100px 0 0;
  }
  .p-special__list__item {
    padding: 40px 0 0;
  }
  .p-special__list__item__brand {
    font-size: 1.6rem;
    margin-bottom: 16px;
  }
  .p-special__list__item__name {
    font-size: 3.0rem;
    margin: 16px 0 20px;
  }
  .p-special__list__item__jp {
    font-size: 1.4rem;
    margin: 20px 0 0;
  }
  .p-special__list__item__link {
    margin: 32px 0 20px;
  }
  .p-keywordSearch {
    padding: 120px 0;
    margin: 0 0 100px;
  }
  .p-keywordSearch .p-inner {
    max-width: 1080px;
  }
  .p-keywordSearch__form__input {
    font-size: 1.6rem;
    padding: 20px 20px 20px 68px;
    background-size: 26px;
    background-position: left 20px center;
  }
  .p-keywordSearch__form__btn {
    width: 200px;
    height: 64px;
    font-size: 1.8rem;
  }
  .p-keywordSearch__hotword {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
  .p-keywordSearch__hotword__title {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    font-size: 3.2rem;
    margin: 0;
  }
  .p-keywordSearch__hotword__list {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    gap: 24px 32px;
    max-height: calc(((1.75em + 6px + 1px) * 3) + 24px + 24px);
    /*overflow: hidden;*/
  }
  .p-sliderArea {
    margin: 100px 0;
  }
  .p-productsSlider {
    padding: 100px 0;
  }
  .p-productsSlider__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .p-productsSlider__arrows {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .p-productsSlider__arrows .slick-arrow, .p-productsSlider__arrow__button {
    width: 24px;
    height: 24px;
    background: url(../images/common/arrow.png) no-repeat center/contain;
    position: relative;
    -webkit-transform: none;
            transform: none;
    top: auto;
    appearance: none;
    border: 0;
  }
  .p-productsSlider__arrows .slick-arrow:before {
    display: none;
  }
  .p-productsSlider__arrows .slick-arrow.slick-disabled,
  .p-productsSlider__arrow__button.is-disabled {
    opacity: 0.4;
    pointer-events: none;
  }
  .p-productsSlider__arrows .slick-prev, .p-productsSlider__arrow__button--prev {
    left: auto;
    -webkit-transform: scale(-1, 1);
            transform: scale(-1, 1);
  }
  .p-productsSlider__arrows .slick-next {
    right: auto;
    -webkit-transform: none;
            transform: none;
  }
  .p-productsSlider .p-inner {
    position: relative;
  }
  .p-productsSlider__wrapper {
    margin: 0 0 40px;
  }
  .p-productsSlider .fr3-productListCarousel {
    margin: 0;
  }
  .p-productsSlider .fr3-productListCarousel__slides {
    gap: 0 64px;
  }
  .p-productsSlider .fr3-productListCarousel__slides:after {
    display: none;
  }
  .p-productsSlider .fr3-productListCarousel__responsive_2 .fr3-productListCarousel__slide {
    flex: 0 0 180px;
    margin: 0;
    padding: 0;
  }
  .p-productsSlider .fr3-productListCarousel .fr3-productListCarousel__ButtonContainer {
    display: block;
    width: 24px;
    position: absolute;
    right: 20px;
    top: 17px;
  }
  .p-productsSlider .fr3-productListCarousel .fr3-productListCarousel__ButtonContainer .fr3-productListCarousel__Button {
    width: 100%;
    padding-top: 100%;
    background: url(../images/common/arrow.png) no-repeat center /contain;
  }
  .p-productsSlider .fr3-productListCarousel .fr3-productListCarousel__ButtonContainer .fr3-productListCarousel__Button img {
    display: none;
  }
  .p-productsSlider .fr3-productListCarousel .fr3-productListCarousel__ButtonContainer:first-child {
    right: 84px;
    transform: scale(-1, 1);
  }
  .p-productsSlider .fr3-productListCarousel__slides::-webkit-scrollbar {
    opacity: 0;
    visibility: hidden;
  }
  .p-productsSlider__wrapper::-webkit-scrollbar {
    opacity: 0;
    visibility: hidden;
  }
  .p-productsSlider__wrapper .flywheel-recommend__frame {
    max-width: 1200px;
    margin: 0 auto;
  }
  .p-productsSlider .fr3-productListStatic {
    gap: 0 64px;
  }
  .p-productsSlider .fr3-productListStatic .fr3-item {
    flex: 0 0 auto;
    width: 15%;
  }
  .p-productsSlider .fr3-productListStatic:after {
    display: none;
  }
  .p-productsSlider .fr3-item__productName {
    font-size: 1.3rem;
  }
  .p-productsSlider__list {
    margin: 0 0 40px;
    padding: 0;
  }
  .p-productsSlider__list__item {
    margin: 0 64px 0 0;
  }
  .p-productsSlider__list__item .pic {
    marign: 0 0 12px;
  }
  .p-productsSlider__list__item .brand {
    margin: 12px 0 8px;
  }
  .p-productsSlider__list__item .name {
    font-size: 1.3rem;
  }
  .p-productsSlider__list__item .price span {
    font-size: 1.4rem;
  }
  .p-topics {
    margin: 100px 0;
  }
  .p-topics__list {
    grid-template-columns: repeat(4, 1fr);
  }
  .p-topics__list .fs-pt-column__item {
    margin: 0;
    display: block;
  }
  .p-topics__list .fs-pt-column__item .fs-pt-column__image {
    margin: 0 0 12px;
  }
  .p-topics__list .fs-pt-column__item .fs-pt-column__heading {
    font-size: 1.4rem;
    margin: 16px 0;
    display: block;
  }
  .p-topics__list .fs-pt-column__item .fs-pt-column__description {
    font-size: 1.3rem;
  }
  .p-magazine {
    margin: 140px 0 100px;
    position: relative;
  }
  .p-magazine__img {
    width: calc((100% - 1200px) / 2 + (600px - 48px));
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
  }
  .p-magazine__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-magazine__contents {
    width: 50%;
    margin-left: auto;
    padding: 40px 28px 28px;
  }
  .p-magazine__title > img {
    width: 216px;
  }
  .p-magazine__list__item a {
    -webkit-column-gap: 28px;
       -moz-column-gap: 28px;
            column-gap: 28px;
  }
  .p-magazine__list__item .category {
    font-size: 1.2rem;
  }
  .p-magazine__list__item .date {
    font-size: 1.4rem;
  }
  .p-magazine__list__item .title {
    font-size: 1.4rem;
    line-height: 1.71429;
    margin-top: 4px;
  }
  .p-history {
    margin: 100px 0;
    padding: 40px 0 60px!important;
    border-top: 1px solid var(--c_border);
    border-bottom: 1px solid var(--c_border);
  }
  .p-history .fr3-productListStatic {
    gap: 0 calc(12.5% / 6);
  }
  .p-history .fr3-productListStatic .fr3-item {
    width: 12.5%;
  }
  .p-history__scroll {
    overflow: hidden;
    margin: 0;
  }
  .p-history__list {
    width: auto;
    padding: 0;
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
  }
  .p-history__list__item {
    width: calc((100% - 24px * 6) / 7);
  }
  .p-history__list__item .pic {
    margin: 0 0 12px;
  }
  .p-history__list__item .name {
    font-size: 1.3rem;
  }
  .p-instagram {
    margin: 100px 0;
  }
  .p-instagram__container {
    display: grid;
    grid-template-columns: auto auto;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .p-instagram__vsm {
    grid-column: span 2;
    grid-row: 2;
    margin: 0;
  }
  .p-instagram__list {
    grid-column: span 2;
    grid-row: 2;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin: 0;
  }
  .p-instagram__link {
    grid-row: 1;
    grid-column: 2 / 3;
  }
  .p-newsShoplist {
    margin: 100px 0;
  }
  .p-newsShoplist__container {
    display: grid;
    grid-template-columns: 45% 50%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .p-news__list__item:first-child {
    border-top: 0;
  }
  .p-news__list__item:first-child a {
    padding-top: 0;
  }
  .p-news__list__item a {
    gap: 16px;
  }
  .p-news__list__item .date {
    font-size: 1.3rem;
  }
  .p-news__list__item .title {
    font-size: 1.4rem;
  }
  .p-shoplist {
    margin: 0;
  }
  .p-shoplist__img {
    margin-bottom: 32px;
  }
  .p-shoplist__txt {
    margin: 32px 0 40px;
  }
  .p-service {
    margin: 100px 0;
    padding-top: 64px;
  }
  .p-service .p-inner {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .p-service__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 32px;
       -moz-column-gap: 32px;
            column-gap: 32px;
    margin: 0 0 32px;
    padding-left: 5px;
  }
  .p-service__title {
    font-size: 4.8rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .p-service__lead {
    font-size: 1.4rem;
    margin: 0;
  }
  .p-service__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 64px;
  }
  .p-service__list__item {
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
  }
  .p-service__list__item__icon {
    width: 64px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin: 0;
  }
  .p-service__list__item__txt {
    font-size: 1.3rem;
  }
  .p-service__list__item__txt strong {
    font-size: 1.8rem;
    margin-top: 8px;
  }
}

/* PCのみ
  ------------------------ */
@media (min-width: 1241px) {
  .p-productsSlider .fr3-productListStatic:after {
    display: block;
    flex: 0 0 auto;
    width: calc((var(--vw) * 100 - 1200px) / 2 - 64px);
  }
}