@charset "utf-8";
.main-slider {
  padding-block: 10px 60px;
  overflow-x: hidden;
}

.main-slider li {
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
  margin-top: 40px;
  margin-bottom: 60px;
  margin-left:0;
  opacity:1;
  transform: none !important;
  transition: none !important;
  box-shadow: none;
}

.main-slider li img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.5;
  transform: scale(1.0);
  transition: transform 0.7s, opacity 0.7s;
  transform-origin: center center;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
}

.main-slider li.is-active img {
  opacity: 1;
  transform: scale(1.15);
}

.main-slider li.is-active{
  opacity: 1;
  transform: scale(1.15);
}

/* 1. 右隣の画像（Next）の中身だけを、右へ少しずらす */
.main-slider li.is-next img {
  /* scale(1)を維持しつつ、X軸方向にずらす */
  transform: scale(1) translateX(1vw) !important; 
}

/* 2. 左隣の画像（Prev）の中身だけを、左へ少しずらす */
.main-slider li.is-prev img {
  /* scale(1)を維持しつつ、X軸方向にずらす */
  transform: scale(1) translateX(-1vw) !important; 
}

.main-slider li img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.main-slider .switch-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

@media (max-width: 767.999px) {
  .main-slider{
    padding-block: 0px 30px;
  }
  .main-slider li{
    margin-top: 0px;
    margin-bottom: 30px;
  }
  .main-slider li.is-active img {
    transform: scale(1);
  }
  .main-slider li.is-next img,
  .main-slider li.is-prev img {
    transform: scale(1) translate(0) !important;
  }
}
.progress-container {
  width: 200px;
  height: 3px;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  overflow: hidden;
}
.progress-bar {
  width: 0%;
  height: 100%;
  background-color: var(--text-color);
  border-radius: 2px;
  transition: width 0.1s linear;
}
.splide__playpause {
  display: grid;
  place-items: center;
  width: 32px;
  aspect-ratio: 1 / 1;
  padding: 0;
  border: 1px solid currentcolor;
  border-radius: 50%;
  background-color: white;
  cursor: pointer;
}
.splide__playpause::before {
  content: "";
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: currentcolor;
  mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="10" viewBox="0 0 10 10" fill="none"><path d="M9.5 5L2.5 9L2.5 1L9.5 5Z" fill="black"/></svg>');
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 40%;
}
.splide__playpause.is-active::before {
  mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="10" viewBox="0 0 10 10" fill="none"><path d="M3 1L3 9M7 1L7 9" stroke="black" stroke-width="2" /></svg>');
}
.switch-box .splide__arrows {
  position: relative;
  display: flex;
  gap: 20px;
}
.switch-box .splide__arrow {
  position: relative;
  inset: inherit;
  width: 30px;
  height: auto;
  aspect-ratio: 1 / 1;
  background-color: var(--text-color);
  opacity: 1;
  transform: inherit;
}
.switch-box .splide__arrow--prev::before,
.switch-box .splide__arrow--next::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;charset=utf-8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="-2 -1 30 30"%3E%3Cpath fill="%23ffffff" d="M10.6,20.538,9.4,18.931l6.469-4.792L9.406,9.37l1.187-1.61,8.644,6.375Z"/%3E%3C/svg%3E');
}
.switch-box .splide__arrow--prev::before {
  transform: scaleX(-1);
}
@media (max-width: 767.999px) {
 
  .switch-box .splide__arrows {
    gap: 14px;
  }
  .progress-container {
    width: 20vw;
  }
  .splide__playpause {
    width: 22px;
  }
  .switch-box .splide__arrows {
    gap: 10px;
  }
  .switch-box .splide__arrow {
    width: 20px;
  }
  .header-notice {
    max-width: calc(100% - 36px);
    margin-bottom: 40px;
  }
}

.header-notice {
  display: flex;
  align-items: flex-start;
  width: 1114px;
  max-width: calc(100% - 60px);
  margin: 0 auto 60px;
  padding: 20px;
  color: #fff;
  border-radius: 10px;
  background: var(--bg-notice);
}
.header-notice dt {
  display: flex;
  min-width: 176px;
  margin: auto 40px auto 0;
  color: #fff;
  font-size: 1.6rem;
  line-height: 2.5rem;
}
.header-notice dt img {
  display: block;
  width: 26px;
  margin-right: 10px;
}
.header-notice dd {
  margin-right: auto;
  font-size: 1.6rem;
  font-weight: bold;
}
.header-notice dd p {
  position: relative;
  padding-left: 6em;
}
.header-notice dd p + p {
  margin-top: 10px;
}
.header-notice dd time{
  position: absolute;
  top: 2px;
  left: 0;
  font-size: 1.6rem;
  font-weight: 400;
}

.main-nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 100px;
}
.main-nav-list li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 160px;
  height: 120px;
  padding-block: 25px;
  font-size: 1.4rem;
}
.main-nav-list li:not(:last-child) {
  border-right: 1px solid #000;
}
@media (max-width: 1150px) {
  .main-nav-list {
    margin-inline: 20px;
  }
  .main-nav-list li:not(:last-child) {
    position: relative;
    border: none;
  }
  .main-nav-list li:nth-child(-n + 3) {
    width: 33.333%;
    margin-bottom: 20px;
  }
  .main-nav-list li:nth-child(-n + 3)::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--border-color3);
  }
  .main-nav-list li:nth-child(n + 4) {
    width: 25%;
  }
  .main-nav-list li a {
    width: 100%;
    margin-inline: auto;
    border-right: 1px solid var(--border-color3);
  }
  .main-nav-list li:nth-child(3) a,
  .main-nav-list li:nth-child(7) a {
    border-right: none;
  }
}
@media (max-width: 767.999px) {
  .main-nav-list {
    margin-bottom: 50px;
  }
  .main-nav-list li a {
    height: 82px;
    padding: 15px 0.5em 7px;
    font-size: 1.1rem;
    line-height: 1.4;
  }
  .main-nav-list li a img {
    max-width: 37px;
    max-height: 35px;
  }
  .main-nav-list li a span {
    text-align: center;
  }
  .main-nav-list li a span span {
    display: inline-block;
  }
}


.section-title span {
  margin-top: calc((1em - 1.25lh) / 2);
}
.section-pickup {
  position: relative;
  padding-block: 100px;
  background-color: var(--border-color);
}
/* .section-pickup * {
  position: relative;
  z-index: 10;
} */
@media (max-width: 767.999px) {
  .section-pickup {
    padding-block: 50px;
  }
  .section-pickup .section-title {
    margin-bottom: 30px;
  }
}
/* pickup-sliderのスタイリング */
.pickup-slider {
  position: relative;
}

.pickup-slider .splide__list {
  /* padding-bottom: 30px !important; */
  overflow: visible;
}
.pickup-slider .splide__slide {
  width: 300px !important;
  aspect-ratio: 1 / 1;
  /* aspect-ratio: 4 / 3; */
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pickup-slider .splide__slide:has(.logo) {
  background-color: #fff;
}
/* .pickup-slider .splide__slide,
.pickup-slider .splide__track {
  height: 16vw !important;
} */
@media (max-width: 1350px) {
  /* .pickup-slider .splide__slide,
  .pickup-slider .splide__track {
      height: 200px !important;
  } */
  .pickup-slider .splide__slide {
    position: relative;
    width: 20vw !important;
    overflow: hidden;
  }
}
.pickup-slider .splide__slide span {
  position: absolute;
  top: 2%;
  left: 2%;
  display: block;
  width: 28%;
  height: 28%;
  background: #fff;
  z-index: 10;
}
.pickup-slider .splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.pickup-slider .splide__slide img + img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
  filter: blur(10px);
}
.pickup-slider .splide__slide img .logo{
 background-color: #fff;
}
.pickup-slider .splide__playpause {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 2px solid white;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
@media (any-hover: hover) {
  .pickup-slider .splide__playpause:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }
}
.pickup-slider .splide__playpause::before {
  content: "";
  width: 12px;
  height: 12px;
  background-color: currentcolor;
  mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="none"><path d="M11 6L3 10.5L3 1.5L11 6Z" fill="white"/></svg>');
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}
.pickup-slider .splide__playpause.is-active::before {
  mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="none"><path d="M3 2L3 10M9 2L9 10" stroke="white" stroke-width="2" /></svg>');
}
/* レスポンシブ対応 */
@media (max-width: 767.999px) {
  .pickup-slider .splide__slide {
    width: 170px !important;
  }
  .pickup-slider .splide__playpause {
    width: 35px;
    height: 35px;
    top: 15px;
    right: 15px;
  }
}
@media (max-width: 480px) {
  .pickup-slider .splide__slide {
    width: 200px !important;
  }
  .pickup-slider .splide__playpause {
    width: 30px;
    height: 30px;
    top: 10px;
    right: 10px;
  }
}


.section-event {
  padding-block: 100px;
}

.calendar-box {
  width: 1133px;
  max-width: calc(100% - 60px);
  margin: 0 auto 60px;
  overflow-x: auto;
}
.calendar-box::-webkit-scrollbar{
  display: none;
}
.calendar-list {
  display: flex;
  justify-content: flex-start;
  gap: 11px;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  padding: 2px;
  border-radius: 50px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background-color: var(--border-color);
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  cursor: grab;
}
.calendar-list::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
.calendar-item {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  width: 65px;
  aspect-ratio: 1 / 1;
  padding-top: 11px;
  text-align: center;
  border-radius: 50px;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}
.calendar-item.today {
  background-color: var(--text-color);
  color: #fff;
}
.calendar-item.saturday:not(.today) {
  color: #3B82F6;
}
.calendar-item.sunday:not(.today) {
  color: var(--accent-color);
}
.calendar-item .date {
  display: flex;
  justify-content: center;
}
.calendar-item .month {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
}
.calendar-item .day {
  font-size: 2.3rem;
}
.calendar-item .dow {
  font-size: 1rem;
  line-height: 1;
}


.section-event .tab-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  border-bottom: 1px solid var(--border-color2);
}
.section-event .tab-list li {
  width: 230px;
  height: 56px;
  border-radius: 10px 10px 0 0;
  background-color: var(--border-color);
}
.section-event .tab-list li a {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  font-size: 1.6rem;
  transition: border 0.3s ease-in-out, background-color 0.3s ease-in-out,font-weight 0.3s ease-in-out,font-size 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .section-event .tab-list li a:hover {
    border: 1px solid var(--border-color2);
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    background-color: #fff;
    opacity: 1;
  }
}
.section-event .tab-list li a[aria-selected="true"] {
  font-size: 1.8rem;
  font-weight: bold;
  border: 1px solid var(--border-color2);
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  background-color: #fff;
  pointer-events: none;
}
.section-event .tab-list li a[aria-selected="true"]::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 4px;
  border-radius: 10px 10px 0 0;
  background-color: #fff;
}
.section-event .event-date {
  padding-block: 50px 80px;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
}
.section-event .event-date span {
  font-size: 2.2rem;
  font-weight: bold;
}
.section-event .event-date time::after {
  content: var(--date-text, "");
  font-size: 0;
}
.section-event .event-list {
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 20px 60px;
  display: grid;
  grid-template-columns: repeat(auto-fill, 274px);
  gap: 51px;
  justify-content: center;
}
.section-event .event-list li {
  position: relative;
}
.section-event .event-list .new-shop {
  position: absolute;
  inset: -30px auto auto -23px;
  z-index: 10;
  width: 97px;
}
.section-event .event-list .list-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 274px;
  aspect-ratio: 1 / 1;
  margin-bottom: 10px;
  overflow: hidden;
  background-color: #f6f4f4;
}
.section-event .event-list .list-image.logo {
  background-color: #ffffff;
}
.section-event .event-list .list-image .no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: auto;
  padding-block: 50px;
  background: #fff;
}
.section-event .event-list .list-image img {
  position: relative;
  z-index: 5;
  object-fit: contain;
}
.section-event .event-list .list-image img:nth-child(2) {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
  filter: blur(10px);
  display: none;
}
.section-event .event-list .list-image img:nth-child(2)[src*="sc-logo"] {
  display: none;
}
.section-event .event-list .list-text {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.428;
}
.section-event .event-list .calendar-date {
  padding-top: 10px;
  font-size: 1.4rem;
  font-weight: 400;
}
.section-event .event-list .calendar-date img {
  width: 16px;
  margin-right: 8px;
  vertical-align: sub;
}
@media (max-width: 767.999px) {
  .header-notice {
    padding: 8px 14px;
  }
  .header-notice dt {
    min-width: auto;
    margin-right: 14px;
  }
  .header-notice dt img {
    width: 22px;
    margin-right: 8px;
  }
  .header-notice dt > span {
    display: flex;
    flex-wrap: wrap;
    width: 6.4em;
    font-size: 1.2rem;
    line-height: 1.16;
  }
  .header-notice dd {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-left: 0;
    font-size: 1.1rem;
  }
  .header-notice dd p {
    padding-left: 0;
  }
  .header-notice dd p + p {
    margin-top: 5px;
  }
  .header-notice dd time {
    position: relative;
    top: 0;
    display: block;
    font-size: 1rem;
  }

  .section-event {
    padding-block: 50px;
  }
  .section-event .event-date {
    padding-block: 35px 45px;
    font-size: 1.6rem;
  }
  .calendar-box {
    width: calc(100% - 40px);
    margin-bottom: 30px;
  }
  .calendar-list {
    gap: 6px;
  }
  .section-event .event-date span {
    font-size: 2rem;
  }
  .calendar-item.pc-only {
    display: none;
  }
  .calendar-item {
    width: min(10vw, 50px);
    min-width: 42px;
    padding-top: max(1vw, 5px);
  }
  .calendar-item .month {
    position: relative;
    top: -1px;
    left: 1px;
    font-size: 1.2rem;
  }
  .calendar-item .month.c2 {
    padding-left: 1px;
    letter-spacing: -0.02em;
  }
  .calendar-item .month.c2 + .day {
    padding-left: 1px;
  }
  .calendar-item .day {
    font-size: 1.6rem;
  }
  .calendar-item .dow {
    font-size: 0.9rem;
  }
  .section-event .tab-list li a[aria-selected="true"] {
    font-size: 1.4rem;
  }
  .section-event .tab-list li a {
    font-size: 1.2rem;
  }
  .section-event .event-list {
    grid-template-columns: repeat(auto-fill, calc(50% - 10px));
    gap: 40px 20px;
    padding-bottom: 40px;
  }
  .section-event .event-list li {
    width: 274px;
    max-width: 100%;
    margin-inline: auto;
  }
  .section-event .event-list .list-image {
    width: 100%;
    max-width: 274px;
  }
  .section-event .event-list .new-shop {
    inset: -12px auto auto -12px;
    width: 65px;
  }
  .section-event .event-list .list-text {
    font-size: 1.4rem;
  }
  .section-event .event-list .calendar-date {
    padding-top: 3px;
    font-size: 1.2rem;
  }
  .section-event .tab-list {
    padding-inline: 20px;
  }
  .section-event .tab-list li {
    height: 40px;
  }
}



.section-shopnews {
  position: relative;
  /* margin-bottom: 70px; */
  padding-block: 100px 70px;
  background-color: var(--border-color);
}
/* .section-shopnews::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  display: block;
  width:  calc(50vw - 770px);
  height: 100%;
  background-color: #fff;
} */
.section-shopnews .section-title {
  margin-bottom: 60px;
}
.section-shopnews .tab-list {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* ショップニュースのタブ（7つ）用のスタイル */
.section-shopnews .tab-list li {
  position: relative;
  width: 146px;
  height: 112px;
}
.section-shopnews .tab-list li a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding-block: 15px;
  color: #fff;
  font-size: 1.3rem;
  border-radius: 10px 10px 0 0;
  background-color: var(--text-color);
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.section-shopnews .tab-list li:first-child a {
  justify-content: center;
}
.section-shopnews .tab-list li a div {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
}
.section-shopnews .tab-list li a div img:nth-child(2) {
  display: none;
}
.section-shopnews .tab-list li:first-child a {
  font-size: 1.8rem;
}
@media (any-hover: hover) {
  .section-shopnews .tab-list li a:hover {
    color: var(--text-color);
    border: 1px solid var(--border-color2);
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    background-color: #fff;
    opacity: 1;
  }
  /* .section-shopnews .tab-list li #shopnews-tab5:hover path[fill="#33221e"] {
    fill: none;
  } */
  .section-shopnews .tab-list li a path[fill="#fff"] {
    transition: all 0.3s ease-in-out;
  }
  .section-shopnews .tab-list li #shopnews-tab5:hover path[fill="#fff"] {
    fill: #33221E;
  }
  /* .section-shopnews .tab-list li a:hover path[fill="#33221E"],
  .section-shopnews .tab-list li a[aria-selected="true"] path[fill="#33221E"],
  .section-shopnews .tab-list li a:hover polygon[fill="#33221E"],
  .section-shopnews .tab-list li a[aria-selected="true"] polygon[fill="#33221E"] {
    fill: var(--accent-color);
  }
  .section-shopnews .tab-list li a:hover div img:nth-child(2) {
    display: block;
  }
  .section-shopnews .tab-list li a:hover div img:nth-child(1) {
    display: none;
  } */
}
.section-shopnews .tab-list li a[aria-selected="true"] {
  color: var(--text-color);
  font-weight: bold;
  border: 1px solid var(--border-color2);
  border-bottom: none;
  background-color: #fff;
  pointer-events: none;
  transition: none;
}
.section-shopnews .tab-list li [aria-selected="true"]#shopnews-tab5 path[fill="#fff"] {
  fill: #33221E;
}
.section-shopnews .tab-list li::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: 0;
  width: 20px;
  height: 1px;
  background-color: var(--border-color2);
}
.section-shopnews .tab-list li:last-child::after {
  display: none;
}
/* .section-shopnews .tab-list li a[aria-selected="true"] div img:nth-child(2) {
  display: block;
}
.section-shopnews .tab-list li a[aria-selected="true"] div img:nth-child(1) {
  display: none;
} */

.section-shopnews .tabpanel-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  background-color: #fff;
}
.section-shopnews .shopnews-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 51px;
  max-width: 1250px;
  margin: 0 auto 60px;
  padding-top: 80px;
}
.section-shopnews .shopnews-list li {
  position: relative;
  width: 274px;
  max-width: calc(50% - 11.5px);
}
.section-shopnews .shopnews-list .list-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 274px;
  aspect-ratio: 1 / 1;
  margin-bottom: 10px;
  overflow: hidden;
  border: 1px solid var(--border-color3);
}
.section-shopnews .shopnews-list .list-image.logo {
  border: 1px solid #f5f5f5;
}
.section-shopnews .shopnews-list .list-image .no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-block: 50px;
  background: #fff;
}
.section-shopnews .shopnews-list .list-image .no-image img:first-child {
  max-width: 80%;
}
.section-shopnews .shopnews-list .list-image img {
  position: relative;
  z-index: 5;
  object-fit: contain;
}
.section-shopnews .shopnews-list .list-image img:nth-child(2) {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: cover;
  filter: blur(10px);
  display: none;
}
.section-shopnews .shopnews-list .new-shop {
  position: absolute;
  inset: -10px auto auto -10px;
  z-index: 10;
  width: 61px;
  height: 43px;
}
.section-shopnews .news-text {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 2.8rem;
}
.section-shopnews .shop-floor {
  display: inline-block;
  color: var(--accent-color);
  margin-top: 6px;
  font-size: 1.4rem;
  line-height: 1;
}
.section-shopnews .shop-name {
  font-size: 1.4rem;
}
.section-shopnews .more-btn {
  margin-bottom: 60px 80px;
}
.section-shopnews .post-date {
  color:var(--accent-color);
  font-size: 1.2rem;
}
.section-shopnews .shopnews-list + .btn-box {
  padding-bottom: 100px;
}
@media (max-width: 1350px) {
  .section-shopnews .shopnews-list {
    width: 925px;
  }
}
@media (max-width: 1200px) and (min-width: 768px) {
  .section-shopnews .tab-list {
    position: relative;
    flex-wrap: wrap;
  }
  .section-shopnews .tab-list li:nth-child(1) {
    margin-left: calc(50% - 340px);
  }
  .section-shopnews .tab-list li:nth-child(3) {
    margin-right: calc(50% - 340px);
  }
  .section-shopnews .tab-list li:nth-child(-n + 3) {
    width: 201px;
  }
  .section-shopnews .tab-list li:nth-child(3)::after {
    display: none;
  }
}
@media (max-width: 1020px) {
  .section-shopnews .shopnews-list {
    width: 600px;
  }
}
@media (max-width: 767.999px) {
  .section-shopnews {
    /* margin-bottom: 40px; */
    padding-block: 50px 40px;
  }
  .section-shopnews .section-title {
    margin-bottom: 30px;
  }
  .section-shopnews .tab-list {
    position: relative;
    flex-wrap: wrap;
    gap: 10px;
    margin-inline: 23px;
  }
  .section-shopnews .tab-list::before {
    content: "";
    position: absolute;
    left: -10px;
    bottom: 0;
    z-index: 0;
    width: calc(100% + 20px);
    height: 90px;
    background-color: #fff;
  }
  .section-shopnews .tab-list li {
    width: calc((100% - 20px) / 3);
    height: 80px;
  }
  .section-shopnews .tab-list li::after {
    right: -10px;
    width: 10px;
  }
  .section-shopnews .tab-list li:nth-child(3)::after {
    display: none;
  }
  .section-shopnews .tab-list li:nth-child(n + 4) {
    width: calc((100% - 30px) / 4);
  }
  .section-shopnews .tab-list li a {
    justify-content: flex-end;
    padding-block: 10px 6px;
    font-size: 0.9rem;
  }
  .section-shopnews .tab-list li a div {
    height: min(44px, 11vw);
    padding-bottom: 7px;
  }
  #shopnews-tab2 {
    padding-block: 12px;
  }
  .section-shopnews .tab-list li a div:has(+ span) {
    padding-block: 2px 5px;
  }
  .section-shopnews .tab-list li a div + span {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.3;
  }
  .section-shopnews .tabpanel-wrapper {
    width: calc(100% - 26px);
  }
  .section-shopnews .shopnews-list {
    justify-content: center;
    gap: 30px 23px;
    max-width: 100%;
    padding: 30px 20px 0;
  }
  .section-shopnews .shopnews-list li:last-child {
    margin-right: auto;
  }
  .section-shopnews .news-text {
    font-size: 1.4rem;
    line-height: 2rem;
  }
  .section-shopnews .shop-floor,
  .section-shopnews .shop-name {
    font-size: 1.2rem;
  }
    .section-shopnews .shopnews-list + .btn-box {
    padding-bottom: 50px;
  }
}
@media (max-width: 767.999px) and (any-hover: hover) {
  .section-shopnews .tab-list li a:hover {
    border: 1px solid var(--border-color2);
    border-bottom: none;
  }
}

.section-info {
  padding: 70px 40px 100px;
  background-image: repeating-linear-gradient(135deg, transparent, transparent 6px, rgba(245, 245, 245, 1) 6px, rgba(245, 245, 245, 1) 9px );
}
.section-info .info-block {
  max-width: 980px;
  margin: 0 auto 100px;
  padding-block: 100px 80px;
  /* border-radius: 20px; */
  background-color: #fff;
}
.section-info .section-title {
  margin-bottom: 30px;
}
.section-info .info-list {
  display: flex;
  flex-direction: column;
  max-width: 860px;
  margin: 0 auto;
  padding-inline: 20px;
}
.section-info .info-list li {
  padding-bottom: 20px;
  font-size: 1.8rem;
}
.section-info .info-list li + li {
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  font-size: 1.8rem;
}
.section-info .info-list .info-date {
  margin-bottom: 10px;
  color: var(--accent-color);
  font-size: 1.6rem;
}
.section-info .info-list .info-date .new-icon {
  display: inline-block;
  margin-right: 6px;
  width: 60px;
}
.section-info .info-list .info-important {
    display: inline-block;
    margin-left: 10px;
    font-size: 1.4rem;
    border: 1px solid var(--accent-color);
    padding: 0 4px;
}
.section-info .info-list .info-date img {
  display: inline-block;
  margin-right: 10px;
}
.section-info .info-list .info-text {
  font-size: 1.6rem;
  line-height: 1.5;
}
.section-info .info-banner {
  width: 710px;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
.section-info .info-banner li {
  background: #fff;
}
.section-info .info-banner li + li {
  width: 330px;
}
.section-info .info-banner .alpark-card svg:nth-child(2),
.section-info .info-banner .alpark-card img:nth-child(2) {
  display: none;
}
@media (max-width: 767.999px) {
  .section-info {
    padding: 40px 20px;
  }
  .section-info .info-block {
    margin-bottom: 40px;
    padding: 40px 20px;
  }
  .section-info .info-list {
    padding: 0;
  }
  .section-info .info-list .info-date,
  .section-info .info-list .info-text {
    font-size: 1.4rem;
  }
  .section-info .info-list .info-important {
    font-size: 1.2rem;
  }
  .section-info .info-banner {
    width: auto;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .section-info .info-banner li,
  .section-info .info-banner li + li {
    width: 260px;
  }
  .section-info .info-banner .alpark-card svg:first-child,
  .section-info .info-banner .alpark-card img:first-child {
    display: none;
  }
  .section-info .info-banner .alpark-card svg:nth-child(2),
  .section-info .info-banner .alpark-card img:nth-child(2) {
    display: block;
  }
}


.section-insta {
  padding-block: 100px;
}
.section-insta .widget-box {
  display: flex;
  margin-bottom: 80px;
}
.section-insta .widget-box img {
  max-width: 320px;
  aspect-ratio: 1 / 1;
}
.section-insta .more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.section-insta .more-btn path {
  transition: fill 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .section-insta .more-btn:hover path {
    fill: #fff;
  }
}
@media (max-width: 767.999px) {
  .section-insta {
    padding-block: 50px;
  }
  .section-insta .widget-box {
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
  .section-insta .widget-box img {
    max-width: 33.3%;
  }
}

/* footer-sliderのスタイリング */
.footer-slider {
  position: relative;
}
.footer-slider .splide__list {
  padding-bottom: 30px !important;
  overflow: visible;
}
.footer-slider .splide__slide {
  width: 340px !important;
  aspect-ratio: 4 / 3;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.footer-slider .splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer-slider .splide__playpause {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 2px solid white;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
@media (any-hover: hover) {
  .footer-slider .splide__playpause:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }
}
.footer-slider .splide__playpause::before {
  content: "";
  width: 12px;
  height: 12px;
  background-color: currentcolor;
  mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="none"><path d="M11 6L3 10.5L3 1.5L11 6Z" fill="white"/></svg>');
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}
.footer-slider .splide__playpause.is-active::before {
  mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="none"><path d="M3 2L3 10M9 2L9 10" stroke="white" stroke-width="2" /></svg>');
}
/* レスポンシブ対応 */
@media (max-width: 767.999px) {
  .footer-slider .splide__playpause {
    width: 35px;
    height: 35px;
    top: 15px;
    right: 15px;
  }
}
@media (max-width: 480px) {
  .footer-slider .splide__playpause {
    width: 30px;
    height: 30px;
    top: 10px;
    right: 10px;
  }
}

/* PickUp Shop 修正用スタイル */


.pickup-slider .splide__slide > a > img {
  display: none !important;
}

.pickup-slider .splide__slide {
  width: 300px !important;
  background-color: #fff;
  border: 1px solid #eee;
  aspect-ratio: 3 / 2;
  box-shadow: none;
}

.pickup-slider .splide__slide span {
  position: relative !important; 
  top: auto !important;
  left: auto !important;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100% !important;
  height: 100% !important;
  padding: 10px;
  background: transparent !important;
}

@media (max-width: 767.999px) {
  .pickup-slider .splide__slide {
    width: 28vw !important;
  }
  
  .pickup-slider .splide__slide span {
    padding: 10px;
  }
}
/* ------------------------------------------------------------ */
