@charset "UTF-8";

/* =========================================================
  strawberry Campaign Styles (cleaned & refactored)
  - Consolidated media queries
  - Fixed typos & invalid values
  - Removed duplicate/contradicting rules
  - Introduced CSS variables for colors
  - Kept BEM structure and specificity
   ========================================================= */

:root {
  --c-white: #fff;
  --c-black: #333333;
  --c-primary: #D93626;
  --c-accent: #CFEAD4;
  --c-gold: #E24A7A;
  --c-bg-ivory: #FFF7F5;
  --c-muted: #ccc;
  --c-cool: #31C2F7;

  /* Category title backgrounds */
  --c-cat01: #5C9398;
  --c-cat02: #D4B401;
  --c-cat03: #C1502E;
  --c-cat04: #EB8E46;
  --c-cat05: #333F6F;
}

/* Utility */
.only-sp {
  display: none !important;
}

@media (max-width: 767.98px) {
  .only-sp {
    display: block !important;
  }

  .sp-none {
    display: none !important;
  }
}

.slick-dots>li:first-child:last-child {
  display: none;
}

#allWrap {
  overflow: visible;
}

/* =========================================================
  strawberry (page scope)
   ========================================================= */
.strawberry {
  /* modal scope container */
}

/* Base page scaffold */
.strawberry#eventWrap {
  background-color: var(--c-white);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  -webkit-font-feature-settings: normal;
  font-feature-settings: normal;
  color: var(--c-black);
}

/* MV */
.strawberry__mv {
  margin: 0;
  position: relative;
  z-index: 1;
}

.strawberry__mv-link {
  display: block;
}

.strawberry__mv img {
  width: 100%;
}


/* Nav */
.strawberry__nav {
  position: -webkit-sticky;
  position: sticky;
  top: 67px;
  left: 0;
  z-index: 8;
  width: 100%;
  padding: 10px 0 15px;
  transition: .3s;
  background: var(--c-accent);
}

@media (max-width: 767.98px) {
  .strawberry__nav {
    top: 0;
    padding: 10px 0px;
  }
}

.strawberry__nav-list {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 0 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (max-width: 767.98px) {
  .strawberry__nav-list {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    column-gap: min(6vw, 24px);
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
  }

  .strawberry__nav-item {
    width: 100%; 
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    font-size: 14px;
    text-align: left;
  }
}

.strawberry__nav-item {
  width: 160px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

@media (max-width: 767.98px) {
  .strawberry__nav-item {
    width: auto; /* gridに任せる */
    display: flex;
    align-items: center;
    justify-content: flex-start; /* 左寄せ */
    gap: 8px;
    font-size: 14px;
    text-align: left;
  }
}

.strawberry__nav-item.-item00 .strawberry__nav-image { background-image: url(/pages/strawberry/img/cat_ico00.svg); }
.strawberry__nav-item.-item01 .strawberry__nav-image { background-image: url(/pages/strawberry/img/cat_ico01.svg); }
.strawberry__nav-item.-item02 .strawberry__nav-image { background-image: url(/pages/strawberry/img/cat_ico02.svg); }
.strawberry__nav-item.-item03 .strawberry__nav-image { background-image: url(/pages/strawberry/img/cat_ico03.svg); }

.strawberry__nav-item.-current .strawberry__nav-image img {
  opacity: 0;
}

/* リンク */
.strawberry__nav-link {
  display: block;
  transition: all .3s linear;
  opacity: 1;
  text-decoration: none;
}

.strawberry__nav-link:hover {
  opacity: 1;
  text-decoration: none;
}

@media (max-width: 767.98px) {
  .strawberry__nav-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
  }
}

.strawberry__nav-image {
  width: 50px;
  height: 50px;
  margin: 4px auto ; 
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
}

@media (max-width: 767.98px) {
  .strawberry__nav-image {
    flex: 0 0 25px;
    width: 25px;
    height: 25px;
    margin: 8px 0;
  }
}

.strawberry__nav-image img {
  transition: all .3s linear;
}

.strawberry__nav-text {
  color: var(--c-black);
}

@media (max-width: 767.98px) {
  .strawberry__nav-text {
    padding-top: 0;
    font-size: 13px;
    line-height: 1.3; 
    white-space: nowrap; 
  }
}

/* =========================================
★ ホバー時にアイコン画像を消して
背景のONアイコンだけを見せる処理
========================================= */

.strawberry__nav-link:hover .strawberry__nav-image img {
  opacity: 0 !important;
  transition: opacity .3s;
}

.strawberry__nav-image img {
  opacity: 1;
  transition: opacity .3s;
}


/* Inner */
.strawberry__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

/* Categories */
.strawberry__categories {
  padding: 50px 0;
  overflow: hidden;
  background: var(--c-bg-ivory);
}

@media (max-width: 767.98px) {
  .strawberry__categories {
  padding: 40px 0px;
  }

}

/* 中身ゾーンの上下余白（メイン） */
.strawberry__categories > .strawberry__inner {
  margin: 100px auto;
}

@media (max-width: 767.98px) {
  .strawberry__categories > .strawberry__inner {
    margin: 60px auto;
  }
}

.strawberry__categories-block {
  position: relative;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 767.98px) {
  .strawberry__categories-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.strawberry__categories-block:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

@media (max-width: 767.98px) {
  .strawberry__categories-block:nth-child(2n) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.strawberry__categories-block:not(:last-child) {
  margin-bottom: 80px;
  padding-bottom: 90px;
  border-bottom: 2px solid #F3AFB3;
}

@media (max-width: 767.98px) {
  .strawberry__categories-block:not(:last-child) {
    margin-bottom: 50px;
    padding-bottom: 60px;
  }
}

.strawberry__categories-block::before {
  content: "";
  position: absolute;
  z-index: -1;
  display: block;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  pointer-events: none;
}

/* Decorative bubbles (sizes/positions preserved) */
.strawberry__categories-block.-category01::before {
  right: -120px;
  top: -120px;
  width: 517px;
  height: 517px;
}

@media (max-width: 767.98px) {
  .strawberry__categories-block.-category01::before {
    right: 50%;
    top: -20px;
    -webkit-transform: translateX(225px);
    transform: translateX(225px);
    width: 661px;
    height: 830px;
  }
}

.strawberry__categories-block.-category01 .strawberry__categories-block_image {
  -webkit-box-shadow: 10px 10px 0 0 rgba(105, 179, 184, 0.3);
  box-shadow: 10px 10px 0 0 rgba(105, 179, 184, 0.3);
}

@media (max-width: 767.98px) {
  .strawberry__categories-block.-category01 .strawberry__categories-block_image {
    -webkit-box-shadow: 7px 7px 0 0 rgba(105, 179, 184, 0.3);
    box-shadow: 7px 7px 0 0 rgba(105, 179, 184, 0.3);
  }
}

.strawberry__categories-block.-category02::before {
  left: -300px;
  top: -70px;
  width: 820px;
  height: 820px;
}

@media (max-width: 767.98px) {
  .strawberry__categories-block.-category02::before {
    left: auto;
    right: 50%;
    top: 260px;
    -webkit-transform: translateX(225px);
    transform: translateX(225px);
    width: 660px;
    height: 863px;
  }
}

.strawberry__categories-block.-category02 .strawberry__categories-block_image {
  -webkit-box-shadow: 10px 10px 0 0 rgba(243, 175, 179, .3);
  box-shadow: 10px 10px 0 0 rgba(243, 175, 179, .3);
}

@media (max-width: 767.98px) {
  .strawberry__categories-block.-category02 .strawberry__categories-block_image {
    -webkit-box-shadow: 7px 7px 0 0 rgba(243, 175, 179, .3);
    box-shadow: 7px 7px 0 0 rgba(243, 175, 179, .3);
  }
}

.strawberry__categories-block_content {
  position: relative;
  width: 47.5%;
}

@media (max-width: 767.98px) {
  .strawberry__categories-block_content {
    width: 100%;
  }
}

.strawberry__categories-block_title {
  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;
  gap: 15px;
  margin-bottom: 20px;
  text-align: center;
}

@media (max-width: 767.98px) {
  .strawberry__categories-block_title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0 auto 25px;
  }
}

.strawberry__categories-block_title-icon {
  position: relative;
  z-index: 2;
  display: block;
  margin: 0;
}

.strawberry__categories-block_title-inner {
  position: relative;
  z-index: 1;
  display: block;
  padding: 6px 20px;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 6px 0 rgba(0, 0, 0, .15);
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, .15);
}

.strawberry__categories-block_title-inner.-cat01 {
  background-color: var(--c-cat01);
}

.strawberry__categories-block_title-inner.-cat02 {
  background-color: var(--c-cat02);
}

.strawberry__categories-block_title-inner.-cat03 {
  background-color: var(--c-cat03);
}

.strawberry__categories-block_title-inner.-cat04 {
  background-color: var(--c-cat04);
}

.strawberry__categories-block_title-inner.-cat05 {
  background-color: var(--c-cat05);
}

.strawberry__categories-block_text_l {
  margin-bottom: 15px;
  font-size: 2.4rem;
  font-family: 'Noto Sans JP', serif;
  font-weight: 600;
  letter-spacing: .06em;
  line-height: 1.5;
  text-align: center;
  color: #E24A7A;
}

@media (max-width: 767.98px) {
  .strawberry__categories-block_text_l {
    font-size: 2rem;
    line-height: 1.5;
  }
}

.strawberry__categories-block_text {
  margin-bottom: 20px;
  font-size: 1.6rem;
  line-height: 1.8;
  text-align: center;
}

@media (max-width: 767.98px) {
  .strawberry__categories-block_text {
    font-size: 1.8rem;
    text-align: left;
  }
}

.strawberry__categories-block_button {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.strawberry__categories-block_button.color_change a {
  background-color:#E24A7A;
}

.strawberry__categories-block_button>a {
  position: relative;
  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;
  margin: 0 auto;
  min-width: 330px;
  height: 60px;
  padding: 8px 70px 10px 50px;
  color: var(--c-white);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  border: 2px solid var(--c-white);
  border-radius: 30px;
  line-height: 1.2;
  text-align: center;
  gap: 20px;
  font-size: 1.6rem;
}

@media (max-width: 767.98px) {
  .strawberry__categories-block_button>a {
    font-size: 1.6rem;
    width: 100%;
    min-width: initial;
    padding: 8px 40px 10px 30px;
  }
}

.strawberry__categories-block_button>a::after {
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 10px;
  height: 15px;
  background: url(/pages/strawberry/img/arrow_button.svg) no-repeat center center/contain;
  z-index: 2;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.strawberry__categories-block_button>a span {
  position: relative;
  -webkit-transition: all .3s;
  transition: all .3s;
  z-index: 3;
}

.strawberry__categories-block_button>a:hover {
  text-decoration: none;
}

.strawberry__categories-block_media {
  width: 47.5%;
}

@media (max-width: 767.98px) {
  .strawberry__categories-block_media {
    width: auto;
    margin: 30px 0 0 0;
  }
}

.strawberry__categories-block_image {
  border-radius: 10px;
  overflow: hidden;
}

@media (max-width: 767.98px) {
  .strawberry__categories-block_image {
    border-radius: 7px;
  }
}

/* Items section */
.strawberry__items {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 90px 0 120px;
}

@media (max-width: 767.98px) {
  .strawberry__items {
    padding: 50px 0 60px;
  }
}

.strawberry__items::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: url(/pages/strawberry/img/ribbon_title_campaign.png) repeat;
}

.strawberry__items-header {
  margin-bottom: 60px;
  text-align: center;
}

.strawberry__items-mv img {
  border-radius: 50px 50px 0 0;
  margin-bottom: 36px;
}

.strawberry__items-title {
  margin-bottom: 10px;
  font-size: 2.3rem;
  font-weight: bold;
}

@media (max-width: 767.98px) {
  .strawberry__items-title {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}

.strawberry__items-title_icon {
  display: block;
  width: 780px;
  margin: 0 auto 40px;
}

@media (max-width: 767.98px) {
  .strawberry__items-title_icon {
    width: 100%;
    margin: 0 auto 30px;
  }
}

.strawberry__items-lead {
  font-size:1.6rem;
  letter-spacing: .06em;
  line-height: 1.5;
  margin-top: 20px;
}

@media (max-width: 767.98px) {
  .strawberry__items-lead {
    font-size:1.6rem;
    margin-top: 20px;
  }
}

.strawberry__items-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 20px;
  position: relative;
}

@media (max-width: 767.98px) {
  .strawberry__items-list {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 0 7px;
  }
}

.strawberry__items-list_item {
  position: relative;
  padding: 0;
  background-color: var(--c-white);
  border-radius: 10px;
  -webkit-box-shadow: 5px 5px 0 0 rgba(243, 175, 179, .3);
  box-shadow: 5px 5px 0 0 rgba(243, 175, 179, .3);
}

@media (max-width: 767.98px) {
  /*.strawberry__items-list_item {
    padding: 8px 7px;
  }*/
}

.strawberry__items-list_inner {
  position: relative;
  height: 100%;
  padding: 20px;
  cursor: pointer;
}

@media (max-width: 767.98px) {
  .strawberry__items-list_inner {
    padding: 8px 7px 10px;
  }
}

.strawberry__items-list_inner:hover .strawberry__items-list_more {
  background-color: var(--c-white);
  border: 1px solid var(--c-gold);
  color: var(--c-gold);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.strawberry__items-list_inner:hover .strawberry__items-list_more::after {
  border-top: 1px solid var(--c-gold);
  border-right: 1px solid var(--c-gold);
  /* fixed missing # */
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.strawberry__items-list_image {
  margin-bottom: 20px;
  border-radius: 6px;
  overflow: hidden;
}

@media (max-width: 767.98px) {
  .strawberry__items-list_image {
    margin-bottom: 16px;
  }
}

.strawberry__items-list_image img {
  aspect-ratio: 920 / 690;
  -o-object-fit: cover;
  object-fit: cover;
}

.strawberry__items-list_content {
  text-align: left;
}

.strawberry__items-list_shop {
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
}

@media (max-width: 767.98px) {
  .strawberry__items-list_shop {
    font-size: 1.6rem;
  }
}

.strawberry__items-list_title {
  margin-bottom: 10px;
  color: var(--c-primary);
  font-size: 2rem;
}

@media (max-width: 767.98px) {
  .strawberry__items-list_title {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }
}

.strawberry__items-list_price {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: .05em;
}

@media (max-width: 767.98px) {
  .strawberry__items-list_price {
    font-size: 1.6rem;
  }
}

.strawberry__items-list_price-tax {
  font-size: 1.4rem;
  font-weight: normal;
}

@media (max-width: 767.98px) {
  .strawberry__items-list_price-tax {
    font-size: 1.4rem;
  }
}

.strawberry__items-list_more {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 50px;
  margin: 20px 0 0;
  padding: 0 35px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--c-gold);
  border: 1px solid var(--c-gold);
  border-radius: 100px;
  color: var(--c-white);
  font-size: 1.5rem;
  line-height: 1.3;
}

@media (max-width: 767.98px) {
  .strawberry__items-list_more {
    font-size: 1.2rem;
    padding: 0 15px;
    height: 30px;
  }
}

.strawberry__items-list_more::after {
  position: absolute;
  right: 25px;
  top: 0;
  bottom: 0;
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: auto;
  border-top: 1px solid var(--c-white);
  border-right: 1px solid var(--c-white);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media (max-width: 767.98px) {
  .strawberry__items-list_more::after {
    right: 15px;
    width: 6px;
    height: 6px;
  }
}

/* Item detail */
.strawberry__items-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 60px;
}

@media (max-width: 767.98px) {
  .strawberry__items-detail {
    display: block;
    padding: 50px 20px 30px;
  }
}

.strawberry__items-detail_image {
  width: 48%;
  margin: 0;
}

@media (max-width: 767.98px) {
  .strawberry__items-detail_image {
    width: 100%;
    margin: 0 0 20px;
  }
}

.strawberry__items-detail_content {
  width: 48%;
}

@media (max-width: 767.98px) {
  .strawberry__items-detail_content {
    width: 100%;
    margin-top: 40px;
  }
}

.strawberry__items-detail_title {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 10px;
  color: var(--c-primary);
  border-bottom: 2px dotted var(--c-primary);
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.5;
}

@media (max-width: 767.98px) {
  .strawberry__items-detail_title {
    font-size: 1.5rem;
  }
}

.strawberry__items-detail_price {
  margin-bottom: 15px;
  color: var(--c-black);
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: .03em;
  line-height: 1.5;
}

@media (max-width: 767.98px) {
  .strawberry__items-detail_price {
    font-size: 1.7rem;
  }
}

.strawberry__items-detail_price-tax {
  font-size: 1.4rem;
}

@media (max-width: 767.98px) {
  .strawberry__items-detail_price-tax {
    font-size: 1.2rem;
  }
}

.strawberry__items-detail_labels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.strawberry__items-detail_label {
  display: inline-block;
  padding: 5px 10px;
  font-size: 1.3rem;
  line-height: 1.2;
}

.strawberry__items-detail_labels.-collaboration {
  display: inline-block;
  position: relative;
  text-align: center;
  margin: 20px 0 0 -20px;
  padding: 5px 7px 7px 0;
  font-size: 18px;
  background: var(--c-primary);
  color: var(--c-white);
  box-sizing: border-box;
  border-radius: 0 12.5rem 12.5rem 0;
}
.strawberry__items-detail_labels.-days {
  display: block;
  margin: 0 auto 10px;
  text-align: center;
}
  

@media (max-width: 767.98px) {
  .strawberry__items-detail_label {
    font-size: .95rem;
  }
  .strawberry__items-detail_labels.-collaboration{
    padding: 2px 7px 7px 0;
  }
}

.strawberry__items-detail_label.-limited {
  color: var(--c-primary);
  background-color: var(--c-white);
  border: 1px solid var(--c-primary);
  border-radius: 100px;
}

.strawberry__items-detail_label.-collaboration{
  padding: 5px 15px 7px 10px;
  color: var(--c-white);
  background-color: var(--c-primary);
  border-radius: 100px;
}
.strawberry__items-detail_labels.-collaboration .strawberry__items-detail_label {
  margin: 0;
  padding: 0 30px 0 15px;
  border-top: solid 1px #FFF;
  border-right: solid 1px #FFF;
  border-bottom: solid 1px #FFF;
  line-height: 32px;
  color: var(--c-white);
  background-color: var(--c-primary);
  border-radius: 0 12.5rem 12.5rem 0;
}

.strawberry__items-detail_label.-cool {
  color: var(--c-white);
  background-color: var(--c-cool);
}

.strawberry2023__items-detail_text {
  margin-bottom: 15px;
}

.strawberry__items-detail_text {
  font-size: 1.4rem;
  line-height: 1.85;
  margin-bottom: 15px;
}

@media (max-width: 767.98px) {
  .strawberry__items-detail_labels.-collaboration .strawberry__items-detail_label{
    padding: 0 20px 0 15px;
    line-height: 26px;
  }
  .strawberry__items-detail_text {
    font-size: 1.3rem;
    text-align: left;
  }
}

.strawberry__items-detail_line {
  font-size: 1.6rem;
  line-height: 1.85;
  border-top: #666 1px dotted;
  margin-bottom: 0;
  padding: 15px 0;
}

@media (max-width: 767.98px) {
  .strawberry__items-detail_line {
    font-size: 1.3rem;
  }
}

.strawberry__items-detail_wrap {
  background: #eee;
  border-radius: 10px;
  margin-top: 5px;
  padding: 16px 20px 20px;
}

.strawberry__items-detail_shop-title {
  margin-bottom: 5px;
  font-size: 1.8rem;
  font-weight: bold;
}

@media (max-width: 767.98px) {
  .strawberry__items-detail_shop-title {
    font-size: 1.4rem;
  }
}

.strawberry__items-detail_shop-text {
  font-size: 1.6rem;
}

@media (max-width: 767.98px) {
  .strawberry__items-detail_shop-text {
    font-size: 1.2rem;
  }
}

.strawberry__items-detail_shop-text::before {
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
  vertical-align: middle;
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: auto;
  background: url(/pages/strawberry/img/address_icon.svg) no-repeat center center/contain;
  margin-right: 5px;
}

@media (max-width: 767.98px) {
  .strawberry__items-detail_shop-text::before {
    width: 12px;
    height: 12px;
    margin-right: 3px;
  }
}

.strawberry__items-detail_shop-text-inner {
  margin-left: 20px;
}

.strawberry__items-detail_shop-text-inner::before {
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
  vertical-align: middle;
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: auto;
  background: url(/pages/strawberry/img/tell_icon.svg) no-repeat center center/contain;
  margin-right: 5px;
}

@media (max-width: 767.98px) {
  .strawberry__items-detail_shop-text-inner::before {
    width: 12px;
    height: 12px;
    margin-right: 3px;
  }
}

.strawberry__items-detail_button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 40px;
  margin-top: 15px;
  padding: 0 30px;
  background-color: var(--c-gold);
  color: var(--c-white) !important;
  border-radius: 100px;
  font-size: 1.5rem;
  line-height: 1.3;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  opacity: 1;
  text-decoration: none;
}

@media (max-width: 767.98px) {
  .strawberry__items-detail_button {
    font-size: 1.2rem;
    height: 32px;
  }
}

.strawberry__items-detail_button:hover {
  opacity: 1;
  background: var(--c-white);
  text-decoration: none;
  cursor: pointer;
}

.strawberry__items-detail_button::after {
  position: absolute;
  right: 30px;
  top: 0;
  bottom: 0;
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: auto;
  border-top: 1px solid var(--c-white);
  border-right: 1px solid var(--c-white);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.strawberry__items-detail_button:hover::after {
  border-top: 1px solid var(--c-gold);
  border-right: 1px solid var(--c-gold);
}

.strawberry__items-detail_button:hover .txt_normal {
  color: var(--c-gold);
}

.strawberry__items-detail .items-slider .slick-dots li {
  width: 8px;
  height: 8px;
  margin: 0 7px;
}

.strawberry__items-detail .items-slider .slick-dots li button {
  width: 8px;
  height: 8px;
  background-color: transparent;
  background: var(--c-muted);
  border-radius: 50%;
}

.strawberry__items-detail .items-slider .slick-dots li button::before {
  color: transparent !important;
}

.strawberry__items-detail .items-slider .slick-dots li.slick-active button {
  background: var(--c-primary);
}

/* Scroll animations */
.strawberry .scroll-fadein {
  opacity: 0;
}

.strawberry .scroll-fadein.is-active {
  -webkit-animation: fadeIn .7s linear forwards;
  animation: fadeIn .7s linear forwards;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(60px);
    transform: translateY(60px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(60px);
    transform: translateY(60px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/* Modal */
.strawberry .modal-container {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  padding: 30px 0;
  text-align: center;
  background: rgba(243, 175, 179, .3);
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .3s;
  transition: .3s;
}

.modal-container{position:relative;}
.modal-close{position:absolute;top:16px;right:16px;z-index:10;}

.strawberry .modal-container::before,
.strawberry .modal-container::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  width: 0;
}

.strawberry .modal-container.is-active {
  opacity: 1;
  visibility: visible;
}

.strawberry .modal-body {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 1080px;
  width: 90%;
  padding: 0;
}

.strawberry .modal-content {
  background-color: var(--c-white);
  text-align: left;
  border: none;
  border-radius: 20px;
}

/* Fix invalid value: pointer-events: painted -> auto */
.strawberry .modal-content a[href*="tel:"] {
  pointer-events: auto;
  cursor: pointer;
}

.strawberry .modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 5;
  width: 40px;
  height: 40px;
  background-color: var(--c-primary);
  border-radius: 50%;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
}

@media (max-width: 767.98px) {
  .strawberry .modal-close {
    width: 30px;
    height: 30px;
  }
}

.strawberry .modal-close::before,
.strawberry .modal-close::after {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  content: "";
  display: block;
  width: 23px;
  height: 1px;
  margin: auto;
  background: var(--c-white);
}

@media (max-width: 767.98px) {

  .strawberry .modal-close::before,
  .strawberry .modal-close::after {
    width: 18px;
  }
}

.strawberry .modal-close::before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.strawberry .modal-close::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* White section */
.strawberry__white {
  background-color: var(--c-white);
  position: relative;
  z-index: 0;
  padding: 90px 0 100px;
  text-align: center;
  overflow: hidden;
}

@media (max-width: 767.98px) {
  .strawberry__white {
    padding: 40px 0 60px;
    text-align: left;
  }
}

.strawberry__white-bnr {
  margin: 20px auto;
  width: 80%;
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  cursor: pointer;
}

.strawberry__white-bnr:hover {
  text-decoration: none;
  opacity: .6;
}

@media (max-width: 767.98px) {
  .strawberry__white-bnr {
    width: 100%;
  }
}

.strawberry__white-share {
  margin: 80px auto 40px;
  width: 30%;
  max-width: 250px;
}

@media (max-width: 767.98px) {
  .strawberry__white-share {
    width: 60%;
  }
}

.strawberry__white-sns {
  position: relative;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.strawberry__white-sns a {
  margin: 0 20px;
  width: 8%;
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  max-width: 60px;
  cursor: pointer;
}

.strawberry__white-sns a:hover {
  text-decoration: none;
  opacity: .6;
}

@media (max-width: 767.98px) {
  .strawberry__white-sns a {
    margin: 0 10px;
    width: 16%;
  }
}

/* Body state when modal open */
body.modal-active {
  overflow: hidden;
}

body.modal-active .strawberry__nav {
  opacity: 0;
  z-index: -1;
}

body.modal-active .strawberry__items {
  z-index: 9999;
}

/* Generic button */
.button {
  position: relative;
  display: inline-block;
  background: #d13415;
  color: var(--c-white);
  width: 100px;
  margin: 5px;
  padding: 10px 30px 10px 20px;
  text-align: center;
}

.button::after {
  position: absolute;
  content: "";
  top: calc(50% - 5px);
  right: 20px;
  width: 6px;
  height: 6px;
  border: 2px solid;
  border-color: transparent transparent var(--c-white) var(--c-white);
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  -webkit-transition: .3s;
  transition: .3s;
}

.button:hover::after {
  right: 10px;
}

/* Page top */
.pagetop {
  opacity: 0;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  -webkit-transition: all .4s ease-in;
  transition: all .4s ease-in;
}

@media (max-width: 767.98px) {
  .pagetop {
    bottom: 64px;
    right: 20px;
  }
}

.pagetop.is-visible {
  opacity: 1;
}

.pagetop-btn {
  display: -ms-grid;
  display: grid;
  place-content: center;
  width: 64px;
  height: 64px;
  background-color: var(--c-primary);
  border: 3px solid var(--c-white);
  border-radius: 32px;
  -webkit-box-shadow: 3px 3px 3px 0 rgba(0, 0, 0, .2);
  box-shadow: 3px 3px 3px 0 rgba(0, 0, 0, .2);
  color: var(--c-white) !important;
  text-align: center;
  text-decoration: none !important;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.pagetop-btn:hover {
  opacity: .6;
}

/* 画像下の注釈（一覧/モーダル共通） */


/* ======================================================
SNS / Instagram セクション
====================================================== */

.strawberry__sns {
  position: relative;
  padding: 80px 0 100px;
  text-align: center;
  overflow: hidden;
}

/* 背景 */
.strawberry__sns-bg {
  position: absolute;
  inset: 0;
  background: url(/pages/strawberry/img/ribbon_title_campaign.png) repeat;
  z-index: 0;
}

/* タイトル */
.strawberry__sns-title {
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
}

@media (max-width: 767.98px) {
.strawberry__sns-title {
  margin-bottom: 40px;
}
}

.strawberry__sns-title img {
  width: 100%;
  max-width: 700px;
}

/* ======================================================
投稿スライダー
====================================================== */

.strawberry__post-slider {
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
}

/* スライダー基準幅（336 × 3 = 1008 + gap） */
.strawberry__slider-wrap {
  position: relative;
  max-width: 1060px;
  margin: 0 auto;
}

/* トラック */
.strawberry__slider-track {
  display: flex;
  gap: 24px;
  padding: 0 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.strawberry__slider-track::-webkit-scrollbar {
  display: none;
}

.strawberry__slider-track li {
  flex: 0 0 330px;
  list-style: none;
  scroll-snap-align: start;
}

.strawberry__slider-track img {
  width: 330px;
  height: 590px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  background: #ccc;
}

/* 矢印ボタン */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 5;
}

.slider-btn.prev { left: -26px; }
.slider-btn.next { right: -26px; }

.slider-btn img {
  width: 52px;
  height: 52px;
  display: block;
}

.slider-btn:hover img {
  transform: scale(1.05);
  transition: transform .2s ease;
}

/* ======================================================
インフルエンサー紹介
====================================================== */

.strawberry__sns-intro {
  position: relative;
  z-index: 2;
}

.strawberry__sns-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 0px 46px;
  background: #FDEFEE;
  border-radius: 20px;
}

.strawberry__sns-lead {
  font-size: 22px;
  font-weight: 600;
  color: #E24A7A;
  margin-bottom: 40px;
}

.strawberry__sns-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.strawberry__sns-list li {
  width: 240px;
  text-align: center;
}

.strawberry__sns-list a {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform .25s ease;
}

.strawberry__sns-list a:hover {
  transform: translateY(-4px);
}

.strawberry__sns-list img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.strawberry__sns-list .name {
  display: block;
  font-size: 15px;
  font-weight: 600;
}

.strawberry__sns-list .account {
  display: block;
  font-size: 13px;
  color: #777;
}

/* ======================================================
SP
====================================================== */
@media (max-width: 767.98px) {

  .strawberry__post-slider {
  margin-bottom: 40px;
}
.strawberry__slider-track {
  gap: 15px;
}

.strawberry__slider-track li {
  flex: 0 0 85px;
}

.strawberry__slider-track img {
  width: 85px;
  height: 155px;
}
  .strawberry__sns-lead {
    font-size: 18px;
  }

  .strawberry__sns-list{
  gap: 20px 0px;
  }

  .strawberry__sns-list li {
    width: 45%;
  }

  .strawberry__sns-list img {
    width: 64px;
    height: 64px;
  }


  /* 矢印ボタン */

.slider-btn.prev { left: -0px; }
.slider-btn.next { right: -0px; }

.slider-btn img {
  width: 40px;
  height: 40px;
}

}


/* ==================================================================================================================================================================
SPECIAL EVENT エリア
================================================================================================================================================================== */

/* 背景（SNS構造踏襲） */
.strawberry__special-bg {
  position: absolute;
  inset: 0;
  background: url(/pages/strawberry/img/ribbon_title_campaign02.png) repeat;
  z-index: 0;
}

/* SNS構造踏襲の余白（★余白はここで一元管理） */
.strawberry__sns.strawberry__special {
  padding-top: 140px;
  padding-bottom: 180px;
}

#event {
  scroll-margin-top: 120px; /* ナビの高さ分 */
}

@media (max-width: 767.98px) {
  #event {
    scroll-margin-top: 80px;
  }
}

/* ======================================================
SPECIAL EVENT タイトル下テキスト
====================================================== */

.strawberry__special-lead {
  margin: 24px auto 60px;
  font-size: 2.4rem;      /* PC：24px */
  font-weight: 500;       /* Medium */
  text-align: center;
  color: var(--c-black);
  line-height: 1.5;
}

/* ======================================================
SPECIAL EVENT 本体
====================================================== */

.strawberry__special-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 36px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* カード */
.strawberry__special-card {
  background: #fff;
  border: 3px solid #F3AFB3;
  border-radius: 20px;
  padding: 20px 30px;
}

/* タイトル */
.strawberry__special-name {
  position: relative;
  margin-bottom: 18px;
  padding-bottom: 12px;
  font-size: 2.8rem;
  font-weight: 700;
  color: #E24A7A;
  text-align: center;
}

.strawberry__special-name::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #F3AFB3;
}

/* 説明文（categories と統一） */
.strawberry__special-desc {
  margin-bottom: 20px;
  text-align: center;
}

/* 情報＋画像（PC：横並び） */
.strawberry__special-body-inner {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

/* 情報 */
.strawberry__special-info {
  flex: 1;
  margin: 0;
}

.strawberry__special-info div {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
}

/* dt / dd（黒テキストは categories と統一） */
.strawberry__special-info dt,
.strawberry__special-info dd {
  font-size: 1.5rem;
  line-height: 1.8;
  color: var(--c-black);
}

/* dt：横固定・縦崩れ防止 */
.strawberry__special-info dt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-height: 29px;
  min-width: 56px;
  padding: 0 15px 2px;
  background: #E24A7A;
  color: #fff;
  border-radius: 20px;
  text-align: center;
  white-space: nowrap;
}

/* dd：右寄せ */
.strawberry__special-info dd {
  margin: 0;
  flex: 1;
  text-align: left;
}

/* 画像（右） */
.strawberry__special-image {
  width: 150px;
  flex-shrink: 0;
}

.strawberry__special-image img {
  width: 100%;
  height: auto;   /* 高さは画像に任せる */
  border-radius: 0;
  display: block;
}

/* ======================================================
SP
====================================================== */
@media (max-width: 767.98px) {

  /* 余白（SP） */
  .strawberry__sns.strawberry__special {
    padding: 80px 0;
  }

  .strawberry__special-lead {
    margin: 16px 0 40px;
    font-size: 2rem;   /* SP：20px */
  }

  .strawberry__special-list {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .strawberry__special-card {
    padding: 20px 20px;
  }

  .strawberry__special-name {
    font-size: 1.8rem;
  }

  /* 情報＋画像：縦並び */
  .strawberry__special-body-inner {
    flex-direction: column;
    gap: 10px;
  }

  .strawberry__special-image {
    width: 100%;
    max-width: 240px;
    margin: 10px auto 0;
  }

  .strawberry__special-info dd {
    font-size: 1.8rem;
  }

  .strawberry__special-desc {
  text-align: left;
}

}

/* ==================================================================================================================================================================
トレンドタグ
================================================================================================================================================================== */

.strawberry__trend {
  position: relative;
  padding: 50px 0;
  z-index: 0;
}

/* 背景 */
.strawberry__trend-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url(/pages/strawberry/img/minidots_bg.png) repeat;
  background-color: #E6FCEF;
}


/* ======================================================
タイトル
====================================================== */

.strawberry__trend .strawberry__sns-title {
  position: relative;
  z-index: 2;
  margin-bottom: 50px;
  text-align: center;
}

.strawberry__trend .strawberry__sns-title img {
  width: 70%;
  max-width: 560px;
}

/* ======================================================
本体
====================================================== */

.strawberry__trend-body {
  position: relative;
  z-index: 2;
}

/* 白パネル */
.strawberry__trend-panel {
  position: relative;
  background: #fff;
  border: 3px solid #F3AFB3;
  border-radius: 20px;
  padding: 120px 28px 32px;
  max-width: 1100px;
  margin: 0 auto;
}

/* ハッシュタグ */
.strawberry__trend-hashtag {
  position: absolute;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.strawberry__trend-hashtag img {
  width: min(360px, 78vw);
  display: block;
}

/* ======================================================
SP
====================================================== */
@media (max-width: 767.98px) {
  .strawberry__trend {
    padding: 40px 0;
  }

  .strawberry__trend .-wave-top {
    margin-bottom: 40px;
  }

  .strawberry__trend .-wave-bottom {
    margin-top: 40px;
  }

  .strawberry__trend .strawberry__sns-title {
    margin-bottom: 30px;
  }

  .strawberry__trend .strawberry__sns-title img {
    width: 100%;
    display: block;
    margin: 0 auto;
  }

  /* 本体 */
  .strawberry__trend-body {
    margin-bottom: 50px;
  }

  /* 白パネル */
  .strawberry__trend-panel {
    padding: 120px 18px 20px;
  }

  /* ハッシュタグ下30px */
  .strawberry__trend-hashtag {
    margin-bottom: 30px;
  }

  .strawberry__trend-hashtag img {
    width: 300px;
    max-width: 90vw;
  }

}

/* ======================================================
トレンドタグ iframe 
====================================================== */

.strawberry__trend-frame {
  position: relative;
}

.strawberry__trend-frame .tagframe {
  display: block;
  width: 100%;
  max-width: none;
  border: none;
}

.strawberry__trend-frame .tagframe {
  display: block;
  width: 100%;
  border: 0;
  min-height: 460px;
}

@media (max-width: 767.98px) {
  .strawberry__trend-frame .tagframe {
    min-height: 380px;
  }
}

/* ======================================================
トレンドタグ ※見た目確認用のダミーなので後で消してOKです。
====================================================== */

.strawberry__trend-scroll {
  overflow-x: auto;
  padding-bottom: 20px;
}

.strawberry__trend-scroll::-webkit-scrollbar {
  height: 6px;
}

.strawberry__trend-scroll::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

.strawberry__trend-list {
  display: flex;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.strawberry__trend-card {
  flex: 0 0 240px;
  text-align: left; /* ← 全テキスト左寄せ */
}

/* 画像 */
.strawberry__trend-image {
  aspect-ratio: 1 / 1;
  background: #ddd;
  margin-bottom: 12px;
  overflow: hidden;
}

.strawberry__trend-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ラベル（左寄せ） */
.strawberry__trend-label {
  display: inline-block;
  margin-bottom: 6px;
  padding: 4px 14px;
  font-size: 1.2rem;
  border-radius: 20px;
  background: #F3AFB3;
  color: #fff;
}

.strawberry__trend-label.-fashion {
  background: #9DB7E8;
}

/* テキスト（すべて左寄せ） */
.strawberry__trend-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.strawberry__trend-shop,
.strawberry__trend-date {
  font-size: 1.4rem;
  line-height: 1.6;
}

.strawberry__trend .-wave-top.-tag {
  margin-bottom: 100px;
}
.strawberry__trend .-wave-bottom.-tag {
  margin-top: 100px;
} 

@media (max-width: 767.98px) {

  /* 苺ライン余白 */
  .strawberry__trend .-wave-top {
    margin: 0 0 50px;
  }

  .strawberry__trend .-wave-bottom {
    margin: 50px 0 0;
  }

.strawberry__trend .-wave-top.-tag {
  margin-bottom: 60px;
}
.strawberry__trend .-wave-bottom.-tag {
  margin-top: 60px;
} 

  /* 白パネル */
  .strawberry__trend-panel {
    padding: 96px 18px 20px;
  }

  /* リスト間隔 */
  .strawberry__trend-list {
    gap: 20px;
  }

  /* カード幅 */
  .strawberry__trend-card {
    flex: 0 0 240px;
  }
}

/* ==================================================================================================================================================================
コラボ企画
================================================================================================================================================================== */

.strawberry__collabo {
  position: relative;
}

/* リード文 */
.strawberry__collabo-lead {
  margin: 24px auto 60px;
  font-size: 2.4rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
}

/* ======================================================
コラボ枠（見た目だけ）
====================================================== */

.strawberry__collabo-panel {
  background: #FDEFEE;
  border: 3px dashed #F3AFB3;
  border-radius: 20px;
  margin: 80px auto;
  padding: 60px 0; /* ← 横は inner に任せる */
  box-sizing: border-box;
}

/* 中身（左右） */
.strawberry__collabo-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

/* 左：縦積み */
.strawberry__collabo-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* あしらい */
.strawberry__collabo-deco {
  max-width: 500px;
  width: 100%;
  display: block;
}

/* 商品 */
.strawberry__collabo-product {
  max-width: 600px;
  width: 100%;
  display: block;
}

/* メインビジュアル */
.strawberry__collabo-image img {
  max-width: 420px;
  width: 100%;
  display: block;
}

/* 注釈 */
.strawberry__collabo-note {
  width: 100%;
  margin-top: 6px;
  font-size: 1.3rem;
  color: #777;
  text-align: right;
}

/* ボタン */
.strawberry__collabo-button{
  margin: 80px auto 0;
}
.strawberry__collabo-button-title {
  position: relative;
  font-size: 2.8rem;
  font-weight: 700;
  color: #E24A7A;
  text-align: center;
}
.strawberry__collabo-button ul {
  display: flex;
  justify-content: center;
  gap: 24px;
}
.strawberry__collabo-button li {
  list-style: none;
}

/* ======================================================
動画
====================================================== */

.strawberry__collabo-movie-inner {
  max-width: 1100px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: #000;
}

.strawberry__collabo-movie iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* ======================================================
SP
====================================================== */
@media (max-width: 767.98px) {

  .strawberry__collabo-lead {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .strawberry__collabo-panel {
    padding: 40px 0px;
    margin: 60px 0;
  }

  .strawberry__collabo-main {
    flex-direction: column;
    gap: 30px;
  }

  .strawberry__collabo-movie-inner {
    margin: 0 16px;
  }

  .strawberry__collabo-button{
    padding: 0 20px;
    
  }
  .strawberry__collabo-button-title {
    font-size: 1.8rem;
  }
  .strawberry__collabo-button ul{
    display: block;
  }
  /* 注釈 */
.strawberry__collabo-note {
  text-align:left;
}
}


/* ======================================================
苺ライン（共通・最終形）
====================================================== */

.strawberry__divider {
  position: relative;   /* ← これが最重要 */
  width: 100%;
  line-height: 0;
  text-align: center;
  z-index: 3;
}

.strawberry__divider img {
  display: block;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}


