@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700;900&display=swap");
body {
  overflow: hidden;
  overflow-y: auto;
}
@media screen and (max-width: 768px) {
  body {
    overflow: visible;
  }
}

.pagetop {
  background: #FF8DE2;
}

#path li {
  color: #434343;
}

.lp__wrapper {
  position: relative;
  height: 100vh;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .lp__wrapper {
    height: auto;
    font-size: 13px;
  }
}

.pc__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(26%, #6DDDD1), color-stop(61%, #82EDDB), color-stop(83%, #C5FFF9));
  background: linear-gradient(#6DDDD1 26%, #82EDDB 61%, #C5FFF9 83%);
}
@media screen and (max-width: 768px) {
  .pc__bg {
    display: none;
  }
}

.lp__container {
  position: relative;
  z-index: 2;
  width: 772px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
  height: 100vh;
  overflow: visible;
}
@media screen and (max-width: 768px) {
  .lp__container {
    width: 100%;
    display: block;
    height: auto;
  }
}

.lp__menu--pc {
  width: 306px;
  height: 100vh;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .lp__menu--pc {
    display: none;
  }
}
.lp__menu--pc .main-ttl {
  padding-top: 40px;
  text-align: center;
}
.lp__menu--pc .sub-ttl {
  margin-bottom: 20px;
  padding-top: 22px;
  text-align: center;
}
.lp__menu--pc .category__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
}
.lp__menu--pc .category__btn {
  position: relative;
  z-index: 1;
  width: 266px;
  height: 60px;
  border: none;
  border-radius: 8px;
  background: #BFBFBF;
  color: #fff;
  font-weight: 700;
  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;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.lp__menu--pc .category__btn span {
  line-height: 1;
  text-align: center;
}
.lp__menu--pc .category__btn[data-type=goods] span {
  line-height: 1.23;
}
.lp__menu--pc .category__btn img {
  width: 16px;
  height: auto;
}
.lp__menu--pc .category__btn .category__arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  height: auto;
}
.lp__menu--pc .category__btn.is-active[data-type=fashion] {
  background: #4E61DD;
}
.lp__menu--pc .category__btn.is-active[data-type=goods] {
  background: #38CDBD;
}
.lp__menu--pc .category__btn.is-active[data-type=cosme] {
  background: #FD994E;
}
.lp__menu--pc .category__btn.is-active[data-type=service] {
  background: #FF8DE2;
}

.pc__side {
  position: absolute;
  width: calc((100vw - 772px) / 2);
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .pc__side {
    display: none;
  }
}
.pc__side img {
  position: absolute;
  left: 20%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-animation: floatY 6s ease-in-out infinite;
          animation: floatY 6s ease-in-out infinite;
}
.pc__side--left {
  top: 100px;
  left: -40px;
}
.pc__side--left img {
  top: 20%;
  left: 80%;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  max-width: 260px;
}
.pc__side--right {
  top: 60px;
  right: -40px;
}
.pc__side--right img {
  top: 30%;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
  max-width: 125px;
}

@-webkit-keyframes floatY {
  0% {
    -webkit-transform: translateX(-50%) translateY(0);
            transform: translateX(-50%) translateY(0);
  }
  50% {
    -webkit-transform: translateX(-50%) translateY(-24px);
            transform: translateX(-50%) translateY(-24px);
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(0);
            transform: translateX(-50%) translateY(0);
  }
}

@keyframes floatY {
  0% {
    -webkit-transform: translateX(-50%) translateY(0);
            transform: translateX(-50%) translateY(0);
  }
  50% {
    -webkit-transform: translateX(-50%) translateY(-24px);
            transform: translateX(-50%) translateY(-24px);
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(0);
            transform: translateX(-50%) translateY(0);
  }
}
.lp__main {
  width: 466px;
  background: #fff;
  overflow: hidden;
}
.lp__main--scroll {
  height: 100vh;
  overflow-y: auto;
  scrollbar-width: none;
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  .lp__main--scroll {
    overflow: visible;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .lp__main {
    width: 100%;
    height: auto;
    overflow: visible;
  }
}

.mv {
  position: relative;
  background-color: #38CDBD;
}
.mv .txt {
  position: absolute;
  bottom: 22px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  line-height: 1.6;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  text-align: center;
}

.content .period__tit {
  width: 120px;
  margin: 0 auto;
  padding: 3px 0 6px;
  line-height: 1.6;
  background-color: #38CDBD;
  border-radius: 0 0 120px 120px;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .content .period__tit {
    width: 100px;
  }
}
.content .period__date {
  width: clamp(180px, 62.6vw, 292px);
  margin: 11px auto 6px;
}
.content .period__txt {
  line-height: 1.4;
  color: #000;
  font-size: 14px;
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .content .period__txt {
    font-size: 11px;
  }
}
.content .category {
  padding: 0 24px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.content .category__txt {
  margin: 20px 0;
  line-height: 1.3;
  color: #4E61DD;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
.content .category__btns {
  display: grid;
  grid-template-columns: repeat(2, 160px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 7px;
     -moz-column-gap: 7px;
          column-gap: 7px;
  row-gap: 14px;
  margin-top: 20px;
}
@media screen and (min-width: 769px) {
  .content .category__btns {
    grid-template-columns: repeat(2, 200px);
    row-gap: 19.95px;
  }
}
.content .category__btn {
  position: relative;
  z-index: 1;
  width: 160px;
  height: 60px;
  padding-right: 10%;
  border: none;
  border-radius: 8px;
  background: #BFBFBF;
  color: #fff;
  font-weight: 700;
  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;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
@media screen and (min-width: 769px) {
  .content .category__btn {
    width: 200px;
    height: 75px;
    font-size: 16px;
  }
}
.content .category__btn span {
  line-height: 1;
  text-align: center;
}
.content .category__btn[data-type=goods] span {
  line-height: 1.16;
  font-size: 12px;
}
@media screen and (min-width: 769px) {
  .content .category__btn[data-type=goods] span {
    font-size: 14px;
  }
}
.content .category__btn img {
  width: 14px;
  height: auto;
}
@media screen and (min-width: 769px) {
  .content .category__btn img {
    width: 18px;
  }
}
.content .category__btn .category__arrow {
  position: absolute;
  right: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  height: auto;
}
@media screen and (min-width: 769px) {
  .content .category__btn .category__arrow {
    right: 10px;
    width: 20px;
  }
}
.content .category__btn::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: -11px;
  width: 0;
  height: 0;
  margin: auto;
  border-style: solid;
  border-width: 20px 12px 0 10px;
  border-color: #4E61DD transparent transparent transparent;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.content .category__btn.is-active::after {
  opacity: 1;
}
.content .category__btn[data-type=fashion]::after, .content .category__btn.is-active[data-type=fashion]::after {
  border-color: #4E61DD transparent transparent transparent;
}
.content .category__btn[data-type=goods]::after, .content .category__btn.is-active[data-type=goods]::after {
  border-color: #38CDBD transparent transparent transparent;
}
.content .category__btn[data-type=cosme]::after, .content .category__btn.is-active[data-type=cosme]::after {
  border-color: #FD994E transparent transparent transparent;
}
.content .category__btn[data-type=service]::after, .content .category__btn.is-active[data-type=service]::after {
  border-color: #FF8DE2 transparent transparent transparent;
}
.content .category__btn.is-active[data-type=fashion] {
  background: #4E61DD;
}
.content .category__btn.is-active[data-type=goods] {
  background: #38CDBD;
}
.content .category__btn.is-active[data-type=cosme] {
  background: #FD994E;
}
.content .category__btn.is-active[data-type=service] {
  background: #FF8DE2;
}
.content .category__panels {
  padding-top: 80px;
  position: relative;
}
.content .category__panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  height: 0;
  overflow: hidden;
}
.content .category__panel.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  height: auto;
  overflow: visible;
}
.content .category__panel.is-active .category__flower .parts--left img {
  -webkit-animation: flowerPop 0.45s cubic-bezier(0.25, 1.6, 0.5, 1) forwards;
          animation: flowerPop 0.45s cubic-bezier(0.25, 1.6, 0.5, 1) forwards;
}
.content .category__panel.is-active .category__flower .parts--right img {
  -webkit-animation: flowerPop 0.45s cubic-bezier(0.25, 1.6, 0.5, 1) 0.25s forwards;
          animation: flowerPop 0.45s cubic-bezier(0.25, 1.6, 0.5, 1) 0.25s forwards;
}
.content .category__flower {
  z-index: 5;
}
.content .category__flower .parts {
  position: absolute;
}
.content .category__flower img {
  opacity: 0;
  -webkit-transform: translateY(18px) scale(0.6);
          transform: translateY(18px) scale(0.6);
}
.content .category__panel.is-active .content .category__flower img:nth-child(1) {
  -webkit-animation: flowerPop 0.45s ease forwards;
          animation: flowerPop 0.45s ease forwards;
}
.content .category__panel.is-active .content .category__flower img:nth-child(2) {
  -webkit-animation: flowerPop 0.45s ease 0.25s forwards;
          animation: flowerPop 0.45s ease 0.25s forwards;
}
.content .category__content {
  position: relative;
  z-index: 10;
}
.content .category__content .category__ttl {
  padding: 16.5px 0 15.5px;
  background-color: #4E61DD;
  color: #fff;
  font-weight: 700;
  text-align: center;
}
.content .category__content .category__ttl span {
  display: block;
  text-align: center;
}
.content .category__content .shop_block--list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.content .category__content .shop_block--item {
  position: relative;
  padding: 14px;
  border-bottom: #434343 1px solid;
}
.content .category__content .shop_block--item:nth-child(odd) {
  border-right: #434343 1px solid;
}
.content .category__content .shop_block--item .name-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 62px;
  margin-bottom: 16px;
  padding: 10px 0 5px;
  line-height: 1.3;
  border-bottom: #434343 1px solid;
}
.content .category__content .shop_block--item .name a {
  display: inline;
  color: #4E61DD;
  text-decoration: underline;
  font-size: 14px;
}
.content .category__content .shop_block--item .date {
  line-height: 1.57;
  color: #434343;
  font-size: 14px;
  font-weight: 800;
}
.content .category__content .shop_block--item .detail {
  line-height: 1.57;
  color: #434343;
  font-size: 14px;
  font-weight: 500;
}
.content .category__content .shop_block__content {
  overflow: hidden;
  -webkit-transition: height 0.4s ease;
  transition: height 0.4s ease;
}
.content .category__content .shop_block__content.is-collapsed {
  position: relative;
}
.content .category__content .shop_block__content.is-collapsed::after {
  content: "…";
  position: absolute;
  right: 0;
  bottom: 0;
  background: #fff;
  padding-left: 4px;
}
@media screen and (min-width: 769px) {
  .content .category__content .shop_block__content.is-collapsed::after {
    bottom: -3px;
  }
}
.content .category__content .shop_block__toggle {
  margin-top: 16px;
  padding: 12px 0;
  cursor: pointer;
  letter-spacing: 0.05em;
  border: #434343 1px solid;
  border-radius: 100px;
  color: #434343;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .content .category__content .shop_block__toggle {
    font-size: 14px;
  }
}
.content .category__panel#fashion .category__flower .parts--left {
  top: -44px;
  right: 65px;
  width: 35.53px;
}
.content .category__panel#fashion .category__flower .parts--right {
  top: -63px;
  right: 20px;
  width: 45.32px;
}
.content .category__panel#fashion .category__ttl {
  background-color: #4E61DD;
}
.content .category__panel#fashion .category__ttl img {
  max-width: 100px;
}
@media screen and (min-width: 769px) {
  .content .category__panel#fashion .category__ttl img {
    max-width: 120px;
  }
}
.content .category__panel#goods .category__flower .parts--left {
  top: -64px;
  right: 60px;
  width: 43.48px;
}
.content .category__panel#goods .category__flower .parts--right {
  top: -47px;
  right: 20px;
  width: 38.85px;
}
.content .category__panel#goods .category__ttl {
  background-color: #38CDBD;
}
.content .category__panel#goods .category__ttl img {
  max-width: 200px;
}
@media screen and (min-width: 769px) {
  .content .category__panel#goods .category__ttl img {
    max-width: 220px;
  }
}
.content .category__panel#cosme .category__flower .parts--left {
  top: -64px;
  right: 46px;
  width: 50.73px;
}
.content .category__panel#cosme .category__flower .parts--right {
  top: -47px;
  right: 20px;
  width: 46.46px;
}
.content .category__panel#cosme .category__ttl {
  background-color: #FD994E;
}
.content .category__panel#cosme .category__ttl img {
  max-width: 198px;
}
@media screen and (min-width: 769px) {
  .content .category__panel#cosme .category__ttl img {
    max-width: 218px;
  }
}
.content .category__panel#service .category__flower .parts--left {
  top: -64px;
  right: 46px;
  width: 50.43px;
}
.content .category__panel#service .category__flower .parts--right {
  top: -35px;
  right: 20px;
  width: 31.86px;
}
.content .category__panel#service .category__ttl {
  background-color: #FF8DE2;
}
.content .category__panel#service .category__ttl img {
  max-width: 200px;
}
@media screen and (min-width: 769px) {
  .content .category__panel#service .category__ttl img {
    max-width: 220px;
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes flowerPop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(18px) scale(0.6) rotate(-8deg);
            transform: translateY(18px) scale(0.6) rotate(-8deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-8px) scale(1.1) rotate(4deg);
            transform: translateY(-8px) scale(1.1) rotate(4deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1) rotate(0);
            transform: translateY(0) scale(1) rotate(0);
  }
}
@keyframes flowerPop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(18px) scale(0.6) rotate(-8deg);
            transform: translateY(18px) scale(0.6) rotate(-8deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-8px) scale(1.1) rotate(4deg);
            transform: translateY(-8px) scale(1.1) rotate(4deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1) rotate(0);
            transform: translateY(0) scale(1) rotate(0);
  }
}
.content .note__block {
  padding: 40px 24px;
}
.content .note__block--item {
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #000;
  font-size: 11px;
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  .content .note__block--item {
    font-size: 13px;
  }
}

/* ====================================
  SP 固定カテゴリナビ
==================================== */
@media screen and (max-width: 768px) {
  .sp-category {
    position: fixed;
    left: 0;
    bottom: 66px;
    width: 220px;
    height: 128px;
    padding-bottom: env(safe-area-inset-bottom);
    z-index: 300;
    -webkit-transform: translateX(-178px);
            transform: translateX(-178px);
    -webkit-transition: bottom 0.3s ease, -webkit-transform 0.3s ease;
    transition: bottom 0.3s ease, -webkit-transform 0.3s ease;
    transition: transform 0.3s ease, bottom 0.3s ease;
    transition: transform 0.3s ease, bottom 0.3s ease, -webkit-transform 0.3s ease;
  }
  .sp-category.is-open {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .sp-category__toggle {
    position: absolute;
    right: 0;
    top: 0;
    width: 42px;
    height: 128px;
    background: none;
    background-color: #86E28F;
    border: #fff 1px solid;
    border-radius: 0 20px 0 0;
    padding: 0;
  }
  .sp-category__toggle img {
    width: 17px;
  }
  .sp-category__panel {
    width: 178px;
    height: 128px;
    padding: 25px;
    background: #86E28F;
    border: #fff 1px solid;
    border-right: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .sp-category__panel button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 4px 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
  }
  .sp-category__panel button::after {
    content: "▶";
    width: 20px;
    height: 20px;
  }
  .sp-category__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}