@charset "UTF-8";
/* =====================
	トップページ
 ======================= */
/** -------------------- MV -------------------- **/
.index-mv {
  overflow: hidden;
}
.index-mv .index-mv-container {
  max-width: 540px;
  margin: 0 auto;
}
.index-mv .slick-list {
  overflow: visible;
}
.index-mv .fs-pt-carousel__slide {
  display: block !important;
}
.index-mv .fs-c-slick .slick-slide {
  position: relative;
}
.index-mv .fs-c-slick .slick-slide::after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
}
.index-mv .fs-c-slick .slick-slide.slick-active::after {
  display: none;
}
.index-mv .fs-c-slick .slick-slide img {
  width: 100%;
}
.index-mv .fs-c-slick .slick-dots {
  margin: 18px 0 0;
  padding: 0;
  gap: 7px;
}
.index-mv .fs-c-slick .slick-dots li {
  display: block;
  padding: 1.5px;
  width: 8px;
  height: 8px;
}
.index-mv .fs-c-slick .slick-dots li button {
  width: 100%;
  height: 100%;
  background: #DCD7D7;
  border-radius: 50%;
  padding: 0;
}
.index-mv .fs-c-slick .slick-dots li button::before {
  display: none;
}
.index-mv .fs-c-slick .slick-dots li.slick-active {
  padding: 0;
}
.index-mv .fs-c-slick .slick-dots li.slick-active button {
  background: var(--c_text);
}

/** -------------------- 重要なお知らせ -------------------- **/
.index-attention {
  padding: 20px 0 30px;
}

/** -------------------- TOPICS -------------------- **/
.index-topics {
  background: var(--c_bg);
  padding: 60px 0 50px;
  position: relative;
}
.index-topics:first-child::before {
  content: "";
  width: 100%;
  height: 60px;
  background: var(--c_bg);
  position: absolute;
  bottom: calc(100% - 1px);
  left: 0;
  z-index: -1;
}
.index-topics .index-topics-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 11px;
}
@media (min-width: 491px) {
  .index-topics .index-topics-list {
    grid-template-columns: repeat(auto-fit, minmax(auto, 224px));
    justify-content: center;
  }
}
.index-topics .index-topics-list a {
  display: block;
  position: relative;
}
.index-topics .index-topics-list .image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.index-topics .index-topics-list .image::before {
  content: "";
  width: 100%;
  height: 52px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.index-topics .index-topics-list .image img {
  width: 100%;
  transition: var(--anim);
}
.index-topics .index-topics-list .text {
  position: absolute;
  bottom: 16px;
  left: 0;
  width: 100%;
  text-align: center;
  color: var(--c_wht);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  z-index: 5;
}
.index-topics .index-topics-list .title {
  text-align: center;
  padding: 5px 15px 0;
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  min-height: 3em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/** -------------------- 神戸フランツのベストセラー -------------------- **/
.index-bestseller {
  padding: 60px 0;
}

/** -------------------- 人気ランキング -------------------- **/
.index-ranking {
  padding: 60px 0 80px;
  position: relative;
}
.index-ranking .index-ranking-bg {
  position: absolute;
  right: 16px;
  top: -50px;
  width: 102px;
  z-index: -1;
}

/** -------------------- 商品を探す -------------------- **/
.index-search {
  background: var(--c_bg);
  padding: 50px 0 60px;
}
.index-search .index-search-form {
  position: relative;
}
.index-search .index-search-form input {
  appearance: none;
  width: 100%;
  border: 1px solid var(--c_border);
  background: var(--c_wht);
  border-radius: 100px;
  font-family: var(--font_ja);
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  padding: 14px 54px 14px 20px;
}
.index-search .index-search-form button {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.index-search .index-search-subttl {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin: 30px 0 20px;
}
.index-search .index-search-subttl:first-child {
  margin-top: 0;
}
.index-search .index-search-subttl:last-child {
  margin-bottom: 0;
}
.index-search .index-search-category {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
  font-size: 1.3rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media (min-width: 372px) {
  .index-search .index-search-category {
    grid-template-columns: repeat(auto-fit, minmax(auto, 100px));
    justify-content: center;
  }
}
.index-search .index-search-category > * {
  display: flex;
  justify-content: center;
}
.index-search .index-search-category .image {
  max-width: 100px;
  margin: 0 auto 10px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--c_red);
}
.index-search .index-search-category .image img {
  width: 100%;
  transition: var(--anim);
}
.index-search .index-search-price {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 12px;
}
.index-search .index-search-price a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-family: var(--font_eng);
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.05em;
  background: var(--c_wht);
  border: 1px solid var(--c_border);
  border-radius: 100px;
  padding: 16px;
}

/** -------------------- お知らせ・メディア情報 -------------------- **/
.index-flex-container {
  margin: 90px auto 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px 75px;
}

.index-news {
  flex: 0 1 100%;
}
.index-news .index-news-tab {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  border-bottom: 1px solid var(--c_border);
}
.index-news .index-news-tab > * {
  cursor: pointer;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font_eng);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  background: #EEEEEE;
  color: var(--c_gray);
  padding: 7px;
  border: 1px solid var(--c_border);
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  position: relative;
}
.index-news .index-news-tab > *.is-current {
  background: var(--c_wht);
  color: var(--c_red);
  padding: 10px 7px;
}
.index-news .index-news-tab > *.is-current::before {
  content: "";
  width: 100%;
  height: 2px;
  background: var(--c_wht);
  position: absolute;
  bottom: -1px;
  left: 0;
}
.index-news .index-news-content {
  display: none;
  opacity: 0;
}
.index-news .index-news-content.is-current {
  display: block;
  animation: fadeIn 0.4s 1 forwards;
}
.index-news .index-news-box {
  border: 1px solid var(--c_border);
  border-top: 0;
  border-radius: 0 0 10px 10px;
  padding: 20px 15px;
  margin-bottom: 20px;
  max-height: 270px;
  overflow-y: auto;
  overflow-x: hidden;
}
.index-news .news-list-item {
  padding: 10px 0;
  border-bottom: 1px solid var(--c_border);
  font-size: 1.3rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.index-news .news-list-item:first-child {
  padding-top: 0;
}
.index-news .news-list-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.index-news .news-list-item + .news-list-item {
  margin-top: 0;
}
.index-news .news-list-item a {
  display: block;
  position: relative;
  padding-right: 30px;
}
.index-news .news-list-item a::after {
  content: "";
  width: 15px;
  height: 15px;
  background: url(../images/common/arrow.png) no-repeat center/contain;
  position: absolute;
  right: 0;
  top: 50%;
  transform: tralsateY(-50%);
  filter: var(--filter_gray);
}
.index-news .news-list-item .date {
  margin-bottom: 4px;
  font-family: var(--font_mix);
  font-size: 1.2rem;
  color: var(--c_gray);
}
.index-news .news-list-item .title {
  font-size: 1.3rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.index-news .news-list-item .category {
  display: none;
}
.index-news .news-list-item .date02 {
  display: none;
}
.index-news .media-list-item {
  padding: 10px 0;
  border-bottom: 1px solid var(--c_border);
  font-size: 1.3rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.index-news .media-list-item:first-child {
  padding-top: 0;
}
.index-news .media-list-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.index-news .media-list-item + .news-list-item {
  margin-top: 0;
}
.index-news .media-list-item a {
  display: block;
  position: relative;
  padding-right: 30px;
}
.index-news .media-list-item a::after {
  content: "";
  width: 15px;
  height: 15px;
  background: url(../images/common/arrow.png) no-repeat center/contain;
  position: absolute;
  right: 0;
  top: 50%;
  transform: tralsateY(-50%);
  filter: var(--filter_gray);
}
.index-news .media-list-item .date {
  margin-bottom: 4px;
  font-family: var(--font_mix);
  font-size: 1.2rem;
  color: var(--c_gray);
}
.index-news .media-list-item .title {
  font-size: 1.3rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.index-news .media-list-item .category {
  display: none;
}
.index-news .media-list-item .date02 {
  display: none;
}

/** -------------------- 催事情報 -------------------- **/
.index-event {
  flex: 0 1 100%;
}
.index-event .index-event-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 16px;
  margin-bottom: 30px;
}
.index-event .index-event-header .p-ttl01 {
  flex-shrink: 0;
  flex-grow: 2;
  margin: 0;
}
.index-event .index-event-header-note {
  flex: 1 0 165px;
  font-size: 1.1rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--c_gray);
}
.index-event .index-event-box {
  background: var(--c_bg_gray);
  padding: 20px 15px 20px 20px;
  border-radius: 10px;
  max-height: 165px;
  overflow-y: auto;
  overflow-x: hidden;
  margin-bottom: 20px;
}
.index-event .event-list-item, .index-event .event-list a {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 5px 16px;
  font-size: 1.3rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
.index-event .event-list-item + .event-list-item {
  margin-top: 30px;
}
.index-event .event-list a {
  flex: 0 1 100%;
  padding-right: 32px;
  position: relative;
}
.index-event .event-list a::after {
  content: "";
  width: 15px;
  height: 15px;
  background: url(../images/common/arrow.png) no-repeat center/contain;
  filter: var(--filter_gray);
  position: absolute;
  right: 3px;
  bottom: 3px;
}
.index-event .event-list .category, .index-event .event-list .detail {
  display: none;
}
.index-event .event-list .date {
  flex-shrink: 0;
  color: var(--c_red);
  font-family: var(--font_eng);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
}
.index-event .event-list .place {
  color: var(--c_red);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
}
.index-event .event-list .title {
  flex: 0 1 100%;
  font-size: 1.3rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

/** -------------------- ギフトにおすすめ -------------------- **/
.index-gift {
  padding: 50px 0 60px;
  background: var(--c_bg);
}
.index-gift .index-gift-more {
  margin-top: 40px;
}

/** -------------------- レビューで高評価の商品 -------------------- **/
.index-bestreviewed {
  padding: 60px 0 80px;
}

/** -------------------- スタッフのおすすめ紹介 -------------------- **/
.index-staffpicks {
  background: url(../images/index/staffpicks_deco_sp.png) no-repeat right top/229px, var(--c_red);
  padding: 50px 0;
}
.index-staffpicks .p-ttl01--icon01 {
  color: var(--c_wht);
}
.index-staffpicks .p-ttl01--icon01::before {
  filter: var(--filter_wht);
}
.index-staffpicks .index-staffpicks-list {
  margin: 0 -16px;
  padding: 0 16px;
}
.index-staffpicks .index-staffpicks-list-item .image {
  position: relative;
  max-width: 280px;
  padding: 10px;
  margin: 0 auto;
}
.index-staffpicks .index-staffpicks-list-item .image::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/index/staffpicks_frame.png) no-repeat center/contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.index-staffpicks .index-staffpicks-list-item .image::after {
  content: "";
  width: 90px;
  height: 100px;
  background: url(../images/index/staffpicks_frame_sp.png) no-repeat center/contain;
  position: absolute;
  bottom: 0;
  right: -22px;
  z-index: 1;
}
.index-staffpicks .index-staffpicks-list-item .image img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
}
.index-staffpicks .index-staffpicks-list-item .name {
  text-align: center;
  margin-top: 20px;
  color: var(--c_wht);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.index-staffpicks .index-staffpicks-list-item .comment {
  max-width: 600px;
  margin: 30px auto 0;
  background: var(--c_wht);
  padding: 20px 30px;
  border-radius: 40px;
  font-size: 1.3rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  position: relative;
}
.index-staffpicks .index-staffpicks-list-item .comment:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 7px 14px 7px;
  border-color: transparent transparent var(--c_wht) transparent;
  position: absolute;
  bottom: calc(100% - 2px);
  left: 50%;
  transform: translateX(-50%);
}
.index-staffpicks .index-staffpicks-list-item .comment p + p {
  margin-top: 10px;
}
.index-staffpicks .index-staffpicks-list-item .staff {
  text-align: right;
  color: var(--c_red);
  font-weight: 500;
}
.index-staffpicks .index-staffpicks-list .swiper-pagination {
  position: relative;
  top: auto;
  bottom: auto;
  left: auto;
  margin-top: 25px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
}
.index-staffpicks .index-staffpicks-list.swiper-horizontal .swiper-pagination-bullet {
  display: block;
  padding: 1.5px;
  width: 8px;
  height: 8px;
  margin: 0;
  background: none;
  opacity: 1;
}
.index-staffpicks .index-staffpicks-list.swiper-horizontal .swiper-pagination-bullet::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #DCD7D7;
  border-radius: 50%;
  display: block;
}
.index-staffpicks .index-staffpicks-list.swiper-horizontal .swiper-pagination-bullet.swiper-pagination-bullet-active {
  padding: 0;
}
.index-staffpicks .index-staffpicks-list.swiper-horizontal .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  background: var(--c_text);
}
.index-staffpicks .index-staffpicks-list .swiper-button {
  width: 40px;
  height: 40px;
  background: url(../images/index/slider_arrow.png) no-repeat center/contain;
  filter: var(--filter_wht);
  margin: 0;
  top: 120px;
}
.index-staffpicks .index-staffpicks-list .swiper-button svg {
  display: none;
}
.index-staffpicks .index-staffpicks-list .swiper-button-prev {
  left: 3px;
  transform: scale(-1, 1);
}
.index-staffpicks .index-staffpicks-list .swiper-button-next {
  right: 3px;
}

/** -------------------- みなさまの素敵なご投稿 -------------------- **/
.index-voice {
  padding: 60px 0 30px;
}

/** -------------------- サービス紹介 -------------------- **/
.index-service {
  padding: 30px 0 60px;
}
.index-service .index-service-list {
  display: grid;
  grid-template-columns: 100%;
  gap: 16px 32px;
}

/** -------------------- ABOUT -------------------- **/
.index-about {
  background: url(../images/index/about_bg_sp.jpg) no-repeat top center/100%, #1C1C1E;
  padding: 172px 0 56px;
  color: var(--c_wht);
}
.index-about a {
  color: var(--c_wht);
}
.index-about .index-about-container {
  padding: 0 14px;
}
.index-about .index-about-ttl {
  color: var(--c_red);
  font-family: var(--font_eng);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.index-about .index-about-catchcopy {
  font-family: var(--font_serif);
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 20px;
}
.index-about .index-about-txt {
  margin-bottom: 30px;
}

/** -------------------- 店舗情報 -------------------- **/
.index-store {
  padding: 50px 0 80px;
}
.index-store:last-child {
  padding-bottom: 0;
  margin-bottom: -20px;
}
.index-store .index-store-img {
  margin-bottom: 30px;
}
.index-store .index-store-img img {
  border-radius: 6px;
}
.index-store .index-store-ttl {
  display: flex;
  align-items: center;
  column-gap: 16px;
  color: var(--c_red);
  margin-bottom: 20px;
}
.index-store .index-store-ttl-eng {
  font-family: var(--font_eng);
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
}
.index-store .index-store-ttl-jp {
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
.index-store .index-store-txt {
  margin-bottom: 30px;
}

/* スマホのみ
  ------------------------ */
@media (max-width: 1199px) {
  .index-voice .index-voice-box {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 16px;
    margin: 0 -16px;
    display: flex;
  }
  .index-voice .letroUgcsetContainer {
    flex-shrink: 0;
  }
  .index-voice .letroUgcsetContainer[data-letro-template="1"] .letroUgcsetContents {
    flex-wrap: nowrap !important;
  }
  .index-voice .letroUgcsetContainer[data-contents=letro-ugcset] .letroUgcsetContents .letroUgcsetPost {
    flex: 0 0 135px;
  }
  .index-voice .letroUgcsetContainer[data-contents=letro-ugcset] .letroUgcsetWrapper .letroUgcsetConsumerProtection.isMobile {
    align-items: flex-start !important;
    margin: 0 !important;
  }
  .index-voice .letroUgcsetContainer[data-contents=letro-ugcset] .letroUgcsetWrapper .letroUgcsetConsumerProtection.isMobile .letroUgcsetPromotionLabel {
    text-align: left !important;
  }
  .index-voice .letroUgcsetContainer[data-contents=letro-ugcset] .letroUgcsetWrapper .letroUgcsetWatermark {
    transform-origin: left !important;
    text-align: left !important;
    margin: 0 !important;
  }
}
/* PC
  ------------------------ */
@media (min-width: 1200px) {
  /** -------------------- MV -------------------- **/
  .index-mv {
    position: relative;
  }
  .index-mv .index-mv-container {
    max-width: 1070px;
    padding: 0 30px;
  }
  .index-mv .fs-pt-carousel {
    position: inherit;
  }
  .index-mv .fs-pt-carousel__track {
    position: inherit;
  }
  .index-mv .fs-c-slick .slick-slide {
    padding: 0 5px;
  }
  .index-mv .fs-c-slick .slick-slide::after {
    width: calc(100% - 10px);
    left: 5px;
  }
  .index-mv .fs-c-slick .slick-dots {
    margin: 17px 0 0;
    gap: 8px;
  }
  .index-mv .fs-c-slick .slick-dots li {
    padding: 2px;
    width: 12px;
    height: 12px;
  }
  .index-mv .fs-c-slick .slick-arrow {
    width: 40px;
    height: 40px;
    background: url(../images/index/slider_arrow.png) no-repeat center/contain;
  }
  .index-mv .fs-c-slick .slick-arrow::before {
    display: none;
  }
  .index-mv .fs-c-slick .slick-prev {
    left: 50px;
    transform: scale(-1, 1) translate(0, -50%);
  }
  .index-mv .fs-c-slick .slick-next {
    right: 50px;
  }
  /** -------------------- 重要なお知らせ -------------------- **/
  .index-attention {
    padding: 30px 0 40px;
  }
  /** -------------------- TOPICS -------------------- **/
  .index-topics {
    padding: 85px 0 80px;
  }
  .index-topics .index-topics-list {
    grid-template-columns: repeat(5, 1fr);
    column-gap: 20px;
  }
  .index-topics .index-topics-list > *:nth-child(n+6) {
    display: none;
  }
  .index-topics .index-topics-list .image::before {
    height: 69px;
  }
  .index-topics .index-topics-list .text {
    bottom: 22px;
    font-size: 1.5rem;
  }
  .index-topics .index-topics-list .title {
    padding: 12px;
    min-height: auto;
    display: block;
    font-size: 1.4rem;
  }
  /** -------------------- 神戸フランツのベストセラー -------------------- **/
  .index-bestseller {
    padding: 120px 0 70px;
  }
  /** -------------------- 人気ランキング -------------------- **/
  .index-ranking {
    padding: 70px 0 160px;
  }
  .index-ranking .index-ranking-bg {
    width: 396px;
    right: 56px;
    top: -262px;
  }
  /** -------------------- 商品を探す -------------------- **/
  .index-search {
    padding: 80px 0;
    margin-bottom: 120px;
  }
  .index-search .index-search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 50px;
  }
  .index-search .index-search-header .p-ttl01 {
    margin: 0;
  }
  .index-search .index-search-form {
    flex: 0 1 505px;
  }
  .index-search .index-search-form input {
    padding: 25px;
    font-size: 100%;
  }
  .index-search .index-search-form button {
    right: 20px;
  }
  .index-search .index-search-subttl {
    font-size: 1.7rem;
    margin: 50px 0 36px;
  }
  .index-search .index-search-category {
    grid-template-columns: repeat(5, 1fr);
    justify-content: flex-start;
    gap: 36px 25px;
    font-size: 1.5rem;
  }
  .index-search .index-search-category .image {
    max-width: 120px;
    margin-bottom: 12px;
  }
  .index-search .index-search-price {
    grid-template-columns: repeat(5, 1fr);
    gap: 36px 25px;
  }
  .index-search .index-search-price a {
    font-size: 1.6rem;
    padding: 20px;
  }
  /** -------------------- お知らせ・メディア情報 -------------------- **/
  .index-flex-container {
    margin: 160px auto 140px;
  }
  .index-news {
    flex: 0 1 62%;
  }
  .index-news .index-news-tab {
    gap: 6px;
  }
  .index-news .index-news-tab > * {
    font-size: 1.5rem;
    padding: 8px;
  }
  .index-news .index-news-tab > *.is-current {
    padding: 11px 8px;
  }
  .index-news .index-news-box {
    padding: 20px;
    margin-bottom: 26px;
    height: 250px;
    max-height: 250px;
    scrollbar-width: 2px;
  }
  .index-news .index-news-box::-webkit-scrollbar {
    width: 3px;
  }
  .index-news .index-news-box::-webkit-scrollbar-thumb {
    background: var(--c_border);
    border-radius: 100px;
  }
  .index-news .index-news-box::-webkit-scrollbar-track {
    background: transparent;
  }
  .index-news .news-list-item .title {
    font-size: 1.4rem;
  }
  .index-news .media-list-item .title {
    font-size: 1.4rem;
  }
  /** -------------------- 催事情報 -------------------- **/
  .index-event {
    flex: 0 1 31.75%;
  }
  .index-event .index-event-header {
    column-gap: 20px;
    margin-bottom: 50px;
  }
  .index-event .index-event-header-note {
    flex: 1 0 150px;
    font-size: 1.2rem;
  }
  .index-event .index-event-box {
    height: 296px;
    max-height: 296px;
    padding: 30px 40px;
    margin-bottom: 26px;
  }
  .index-event .index-event-box::-webkit-scrollbar {
    width: 3px;
  }
  .index-event .index-event-box::-webkit-scrollbar-thumb {
    background: var(--c_border);
    border-radius: 100px;
  }
  .index-event .index-event-box::-webkit-scrollbar-track {
    background: transparent;
  }
  .index-event .event-list-item, .index-event .event-list a {
    font-size: 1.4rem;
  }
  .index-event .event-list a {
    padding-right: 36px;
  }
  .index-event .event-list a::after {
    right: 10px;
    bottom: 6px;
  }
  .index-event .event-list .date {
    font-size: 1.5rem;
  }
  .index-event .event-list .place {
    font-size: 1.5rem;
  }
  .index-event .event-list .title {
    font-size: 1.3rem;
  }
  /** -------------------- ギフトにおすすめ -------------------- **/
  .index-gift {
    padding: 80px 0;
  }
  .index-gift .index-gift-more {
    margin-top: 50px;
  }
  /** -------------------- レビューで高評価の商品 -------------------- **/
  .index-bestreviewed {
    padding: 120px 0 160px;
  }
  /** -------------------- スタッフのおすすめ紹介 -------------------- **/
  .index-staffpicks {
    background: url(../images/index/staffpicks_deco.png) no-repeat right top/462px, var(--c_red);
    padding: 80px 0 120px;
  }
  .index-staffpicks .index-staffpicks-list {
    margin-top: 80px;
  }
  .index-staffpicks .index-staffpicks-list-wrapper {
    display: flex;
    gap: 0 7.55%;
  }
  .index-staffpicks .index-staffpicks-list-item {
    flex: 0 1 28.3%;
  }
  .index-staffpicks .index-staffpicks-list-item .image {
    max-width: 325px;
    overflow: hidden;
  }
  .index-staffpicks .index-staffpicks-list-item .image::after {
    display: none;
  }
  .index-staffpicks .index-staffpicks-list-item .image img {
    transition: var(--anim);
  }
  .index-staffpicks .index-staffpicks-list-item .name {
    font-size: 1.6rem;
  }
  .index-staffpicks .index-staffpicks-list-item .comment {
    margin-top: 28px;
    font-size: 1.4rem;
    padding: 28px 30px 20px;
  }
  /** -------------------- みなさまの素敵なご投稿 -------------------- **/
  .index-voice {
    padding: 120px 0 80px;
  }
  .index-voice .letroUgcsetContainer[data-contents=letro-ugcset] .letroUgcsetContents .letroUgcsetPost {
    flex: 0 1 calc((100% - 36px) / 4);
  }
  .index-voice .letroUgcsetContainer[data-contents=letro-ugcset] .letroUgcsetWrapper .letroUgcsetConsumerProtection {
    margin: 0 !important;
  }
  .index-voice .letroUgcsetContainer[data-contents=letro-ugcset] .letroUgcsetWrapper .letroUgcsetWatermark {
    margin: 0 !important;
  }
  /** -------------------- サービス紹介 -------------------- **/
  .index-service {
    padding: 80px 0 160px;
  }
  .index-service .index-service-list {
    grid-template-columns: repeat(2, 1fr);
  }
  /** -------------------- ABOUT -------------------- **/
  .index-about {
    background: #2B2A28;
    padding: 0;
    position: relative;
    z-index: 1;
  }
  .index-about .index-about-bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    width: 100%;
    max-width: 1440px;
    height: 100%;
  }
  .index-about .index-about-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
  }
  .index-about .index-about-container {
    padding: 20px 60px;
    width: 537px;
    height: 606px;
    margin: 0 0 0 auto;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .index-about .index-about-ttl {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .index-about .index-about-catchcopy {
    font-size: 3.6rem;
    margin-bottom: 32px;
  }
  .index-about .index-about-txt {
    margin-bottom: 32px;
  }
  .index-about .c-btn01 {
    margin-left: 0;
  }
  /** -------------------- 店舗情報 -------------------- **/
  .index-store {
    padding: 120px 0 160px;
  }
  .index-store:last-child {
    margin-bottom: 0;
  }
  .index-store .index-store-container {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10.167%;
  }
  .index-store .index-store-img {
    flex: 0 1 47.5%;
    order: 2;
    margin: 0;
  }
  .index-store .index-store-img img {
    border-radius: 10px;
  }
  .index-store .index-store-txtbox {
    flex: 0 1 404px;
  }
  .index-store .index-store-ttl {
    margin-bottom: 40px;
    column-gap: 32px;
  }
  .index-store .index-store-ttl-eng {
    font-size: 3.8rem;
  }
  .index-store .index-store-ttl-jp {
    font-size: 2.4rem;
  }
  .index-store .index-store-txt {
    margin-bottom: 40px;
  }
  .index-store .c-btn01 {
    margin-left: 0;
  }
}
/* hover
  ------------------------ */
@media (hover: hover) {
  .index-topics .index-topics-list a:hover {
    opacity: 1;
  }
  .index-topics .index-topics-list a:hover img {
    transform: scale(1.05);
  }
  .index-search .index-search-category a:hover {
    opacity: 1;
  }
  .index-search .index-search-category a:hover img {
    transform: scale(1.05);
  }
  .index-search .index-search-price a:hover {
    opacity: 1;
    background: var(--c_red);
    border-color: var(--c_red);
    color: var(--c_wht);
  }
  .index-staffpicks .index-staffpicks-list-item a:hover {
    opacity: 1;
  }
  .index-staffpicks .index-staffpicks-list-item a:hover .image img {
    transform: scale(1.05);
  }
}