@keyframes hide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes clipPath {
  100% {
    clip-path: inset(0);
  }
}
.section-theme-green {
  background-color: #F3FFF4;
}
.section-theme-green .btn-arrow {
  color: #478452;
  border: 1px solid #478452;
}
.section-theme-green .btn-arrow::after {
  background-color: #478452;
}
.section-theme-green .badge {
  background-color: #5DAE64;
}

.pickup-carousel:has(.section-theme-green.is-active) .splide__arrows svg,
.store-feature.section-theme-green .splide__arrows svg {
  color: #478452;
  fill: #478452;
}

.section-theme-blue {
  background-color: #DFF6F5;
}
.section-theme-blue .btn-arrow {
  color: #3BA494;
  border: 1px solid #3BA494;
}
.section-theme-blue .btn-arrow::after {
  background-color: #3BA494;
}
.section-theme-blue .badge {
  background-color: #3BA494;
}

.pickup-carousel:has(.section-theme-blue.is-active) .splide__arrows svg,
.store-feature.section-theme-blue .splide__arrows svg {
  color: #3BA494;
  fill: #3BA494;
}

.section-theme-pink {
  background-color: #FFF3F3;
}
.section-theme-pink .btn-arrow {
  color: #C74675;
  border: 1px solid #C74675;
}
.section-theme-pink .btn-arrow::after {
  background-color: #C74675;
}
.section-theme-pink .badge {
  background-color: #EC739F;
}

.pickup-carousel:has(.section-theme-pink.is-active) .splide__arrows svg,
.store-feature.section-theme-pink .splide__arrows svg {
  color: #C74675;
  fill: #C74675;
}

.section-theme-yellow {
  background-color: #FFFCED;
}
.section-theme-yellow .btn-arrow {
  color: #DBA643;
  border: 1px solid #DBA643;
}
.section-theme-yellow .btn-arrow::after {
  background-color: #DBA643;
}
.section-theme-yellow .badge {
  background-color: #DBA643;
}

.pickup-carousel:has(.section-theme-yellow.is-active) .splide__arrows svg,
.store-feature.section-theme-yellow .splide__arrows svg {
  color: #DBA643;
  fill: #DBA643;
}

.section-theme-orange {
  background-color: #FFFCED;
}
.section-theme-orange .btn-arrow {
  color: #F88352;
  border: 1px solid #F88352;
}
.section-theme-orange .btn-arrow::after {
  background-color: #F88352;
}
.section-theme-orange .badge {
  background-color: #F88352;
}

.pickup-carousel:has(.section-theme-orange.is-active) .splide__arrows svg,
.store-feature.section-theme-orange .splide__arrows svg {
  color: #F88352;
  fill: #F88352;
}

.section-theme-purple {
  background-color: #F4F4FF;
}
.section-theme-purple .btn-arrow {
  color: #9191D4;
  border: 1px solid #9191D4;
}
.section-theme-purple .btn-arrow::after {
  background-color: #9191D4;
}
.section-theme-purple .badge {
  background-color: #9191D4;
}

.pickup-carousel:has(.section-theme-purple.is-active) .splide__arrows svg,
.store-feature.section-theme-purple .splide__arrows svg {
  color: #9191D4;
  fill: #9191D4;
}

.standard {
  background-color: #fff;
}
.standard .section {
  width: min(calc(100% - 1.6rem * 2), 114rem);
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 600px) {
  .standard .section {
    width: min(calc(100% - 4rem * 2), 114rem);
  }
}
.standard .section-main {
  margin-top: 6.4rem;
}
@media (min-width: 600px) {
  .standard .section-main {
    margin-top: 6.4rem;
  }
}

main a[target=_blank]:after {
  content: none;
}

.account-card {
  position: relative;
}

.thumbnail {
  width: 100%;
  aspect-ratio: 332/174;
  overflow: hidden;
  border-radius: 0.4rem;
  margin-bottom: 0.8rem;
  position: relative;
}
.thumbnail::after {
  content: "";
  width: 100%;
  height: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(36, 36, 36, 0) 0%, rgba(36, 36, 36, 0.66) 100%);
}
.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.icon {
  width: 4.8rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #D9D9D9;
  flex-shrink: 0;
}
.icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

h2 {
  font-size: 1.5rem;
}

.sns-links {
  display: grid;
  margin-bottom: 4rem;
}
@media (min-width: 600px) {
  .sns-links {
    margin-bottom: 8rem;
  }
}
.sns-links ul {
  display: flex;
  gap: 0.4rem;
}
.sns-links li {
  position: relative;
}
.sns-links .info {
  display: flex;
  gap: 0.8rem;
}

.sns-top {
  color: #fff;
  gap: 2.4rem;
}
@media (min-width: 600px) {
  .sns-top {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .sns-top {
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem 3.2rem;
  }
}
.sns-top .info {
  align-items: center;
  position: absolute;
  bottom: 0.8rem;
  left: 0.8rem;
}
.sns-top h2 {
  font-weight: 700;
}
.sns-top .description {
  font-size: 1.2rem;
  font-weight: 700;
}
@media (min-width: 600px) {
  .sns-top .description {
    font-weight: 400;
  }
}

@media (min-width: 600px) {
  .sns-bottom {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 3.2rem;
  }
}
@media (min-width: 992px) {
  .sns-bottom {
    column-gap: 11.2rem;
  }
}
.sns-bottom h2 {
  font-weight: 500;
  margin-bottom: 0.8rem;
}
.sns-bottom .info {
  align-items: start;
}
.sns-bottom .description {
  font-size: 1.3rem;
  color: #939393;
}
.sns-bottom ul {
  justify-content: end;
}
.sns-bottom .account-card {
  border-top: 1px solid #D9D9D9;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
}
@media (min-width: 600px) {
  .sns-bottom .account-card:last-child, .sns-bottom .account-card:nth-last-child(2) {
    border-bottom: 1px solid #D9D9D9;
  }
}
@media (min-width: 992px) {
  .sns-bottom .account-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

h3 {
  font-size: 2rem;
  font-weight: 700;
  padding: 3.2rem 2rem;
  border-bottom: 1px solid #D9D9D9;
}

.section-bg {
  border-radius: 1rem;
  margin-bottom: 3.2rem;
}
@media (min-width: 600px) {
  .section-bg {
    margin-bottom: 5.6rem;
  }
}
@media (min-width: 992px) {
  .section-bg h3 {
    padding: 2.4rem 6.2rem;
  }
}

.section-line {
  background-color: #F3FFF4;
}

.section-mm {
  background-color: #F4F4FF;
}

.line-links {
  display: grid;
  gap: 3.2rem;
  padding: 2rem;
}
@media (min-width: 600px) {
  .line-links {
    grid-template-columns: 1fr 1fr;
    justify-content: space-between;
  }
}
@media (min-width: 992px) {
  .line-links {
    gap: 0.8rem 12rem;
    padding: 2.4rem 6.2rem;
  }
}
.line-links li {
  display: flex;
  align-items: start;
  gap: 1.6rem;
  max-width: 44rem;
}
.line-links dt {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  justify-content: space-between;
  font-weight: 700;
}
@media (min-width: 992px) {
  .line-links dt {
    justify-content: start;
    height: 4.8rem;
    margin-bottom: initial;
  }
}
.line-links dt img {
  width: 8.8rem;
}
.line-links dd {
  font-size: 1.3rem;
}
@media (min-width: 992px) {
  .line-links dd {
    font-size: 1.5rem;
  }
}
.line-links a:not(.btn) {
  color: #3e3e3e;
  text-decoration: none;
}

.mm-links {
  display: grid;
  gap: 3.2rem;
  padding: 2rem;
}
@media (min-width: 992px) {
  .mm-links {
    padding: 2.4rem 6.2rem;
  }
}
.mm-links li {
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .mm-links li {
    flex-direction: row;
    align-items: start;
    gap: 3.2rem;
  }
}
.mm-links img {
  margin-bottom: 0.8rem;
  width: min(100%, 26.2rem);
  flex-shrink: 0;
}
.mm-links .description {
  margin-bottom: 2.4rem;
}
.mm-links .btn-arrow {
  border: 1.5px solid #7B3984;
  color: #7B3984;
  margin-right: 0;
  flex-shrink: 0;
  font-size: 1.4rem;
}
.mm-links .btn-arrow::after {
  background-color: #7B3984;
}

.title {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-bottom: 3.2rem;
}
@media (min-width: 600px) {
  .title {
    margin-bottom: 6.4rem;
  }
}
.title h1 {
  font-size: 2.4rem;
  font-weight: 700;
}/*# sourceMappingURL=style.css.map */