* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
}

html {
  scroll-behavior: auto;
}

body {
  overflow-x: hidden;
  background-image: url(../img/sp-bg.webp);
  background-size: 100% auto;
  background-position: center top;
  background-repeat: repeat-y;
  background-attachment: scroll;
  position: relative;
}
@media screen and (min-width: 769px) {
  body {
    background-image: url(../img/pc-bg.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: inherit;
}

.flower_layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
}
.flower_item {
  position: absolute;
  top: -12vh;
  left: 0;
  width: var(--flower_size, 22px);
  height: var(--flower_size, 22px);
  color: var(--flower_color, #f7b7d8);
  opacity: var(--flower_opacity, 1);
  will-change: transform, opacity;
  transform: translate3d(var(--flower_x, 50vw), calc(-12vh + var(--flower_lift, 0px)), 0) rotate(var(--flower_rotate, 0deg));
  animation: flower_fall var(--flower_duration, 8s) ease-out forwards;
  transition: transform 0.3s ease-out;
}
.flower_item .flower_body {
  width: 100%;
  height: 100%;
  display: block;
  transform-origin: 50% 50%;
  animation: flower_sway var(--flower_sway, 1.6s) ease-in-out infinite;
}
.flower_item svg,
.flower_item .flower_body img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
@keyframes flower_fall {
  0% {
    transform: translate3d(var(--flower_x, 50vw), calc(-12vh + var(--flower_lift, 0px)), 0) rotate(var(--flower_rotate, 0deg));
    opacity: 0;
  }
  12% {
    opacity: var(--flower_opacity, 1);
  }
  100% {
    transform: translate3d(calc(var(--flower_x, 50vw) + var(--flower_drift, 0vw) + var(--flower_wind, 0vw)), calc(112vh + var(--flower_lift, 0px)), 0) rotate(calc(var(--flower_rotate, 0deg) + var(--flower_spin, 540deg)));
    opacity: var(--flower_opacity, 1);
  }
}

/* ゆらゆら左右に揺れながら落ちる（正弦波に近い曲線で滑らかに・止まらず落下） */
.flower_item_sway {
  animation-name: flower_fall_sway;
  animation-timing-function: linear;
}
@keyframes flower_fall_sway {
  0% {
    transform: translate3d(var(--flower_x, 50vw), calc(-12vh + var(--flower_lift, 0px)), 0) rotate(var(--flower_rotate, 0deg));
    opacity: 0;
  }
  8% {
    opacity: var(--flower_opacity, 1);
  }
  10% {
    transform: translate3d(calc(var(--flower_x, 50vw) + 1.2vw), calc(0.4vh + var(--flower_lift, 0px)), 0) rotate(calc(var(--flower_rotate, 0deg) + var(--flower_spin, 54deg)));
    opacity: var(--flower_opacity, 1);
  }
  20% {
    transform: translate3d(calc(var(--flower_x, 50vw) + 3.2vw), calc(12.8vh + var(--flower_lift, 0px)), 0) rotate(calc(var(--flower_rotate, 0deg) + var(--flower_spin, 108deg)));
    opacity: var(--flower_opacity, 1);
  }
  30% {
    transform: translate3d(calc(var(--flower_x, 50vw) + 3.8vw), calc(25.2vh + var(--flower_lift, 0px)), 0) rotate(calc(var(--flower_rotate, 0deg) + var(--flower_spin, 162deg)));
    opacity: var(--flower_opacity, 1);
  }
  40% {
    transform: translate3d(calc(var(--flower_x, 50vw) + 2vw), calc(37.6vh + var(--flower_lift, 0px)), 0) rotate(calc(var(--flower_rotate, 0deg) + var(--flower_spin, 216deg)));
    opacity: var(--flower_opacity, 1);
  }
  50% {
    transform: translate3d(var(--flower_x, 50vw), calc(50vh + var(--flower_lift, 0px)), 0) rotate(calc(var(--flower_rotate, 0deg) + var(--flower_spin, 270deg)));
    opacity: var(--flower_opacity, 1);
  }
  60% {
    transform: translate3d(calc(var(--flower_x, 50vw) - 2vw), calc(62.4vh + var(--flower_lift, 0px)), 0) rotate(calc(var(--flower_rotate, 0deg) + var(--flower_spin, 324deg)));
    opacity: var(--flower_opacity, 1);
  }
  70% {
    transform: translate3d(calc(var(--flower_x, 50vw) - 3.8vw), calc(74.8vh + var(--flower_lift, 0px)), 0) rotate(calc(var(--flower_rotate, 0deg) + var(--flower_spin, 378deg)));
    opacity: var(--flower_opacity, 1);
  }
  80% {
    transform: translate3d(calc(var(--flower_x, 50vw) - 3.2vw), calc(87.2vh + var(--flower_lift, 0px)), 0) rotate(calc(var(--flower_rotate, 0deg) + var(--flower_spin, 432deg)));
    opacity: var(--flower_opacity, 1);
  }
  90% {
    transform: translate3d(calc(var(--flower_x, 50vw) - 1.2vw), calc(99.6vh + var(--flower_lift, 0px)), 0) rotate(calc(var(--flower_rotate, 0deg) + var(--flower_spin, 486deg)));
    opacity: var(--flower_opacity, 1);
  }
  100% {
    transform: translate3d(calc(var(--flower_x, 50vw) + var(--flower_drift, 0vw) + var(--flower_wind, 0vw)), calc(112vh + var(--flower_lift, 0px)), 0) rotate(calc(var(--flower_rotate, 0deg) + var(--flower_spin, 540deg)));
    opacity: var(--flower_opacity, 1);
  }
}
@keyframes flower_sway {
  0% {
    transform: translate3d(0, 0, 0) rotate(-6deg);
  }
  50% {
    transform: translate3d(calc(var(--flower_wind, 0vw) * 0.08), 0, 0) rotate(8deg);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(-6deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .flower_layer {
    display: none;
  }
  .flower_layer_scroll {
    display: none;
  }
}
.flower_layer_scroll {
  display: none;
}
@media screen and (min-width: 769px) {
  .flower_layer_scroll {
    display: block;
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
  }
  .flower_layer_scroll .flower_item {
    position: absolute;
    top: 0;
    width: var(--flower_size, 22px);
    height: var(--flower_size, 22px);
    left: var(--flower_x, 50%);
    transform: translateX(-50%) translateY(calc(-12vh + var(--flower_lift, 0px))) rotate(var(--flower_rotate, 0deg));
  }
  @keyframes flower_fall_scroll {
    0% {
      left: var(--flower_x, 50%);
      transform: translateX(-50%) translateY(calc(-12vh + var(--flower_lift, 0px))) rotate(var(--flower_rotate, 0deg));
      opacity: 0;
    }
    12% {
      opacity: var(--flower_opacity, 1);
    }
    100% {
      left: calc(var(--flower_x, 50%) + var(--flower_drift, 0%) + var(--flower_wind, 0%));
      transform: translateX(-50%) translateY(calc(112vh + var(--flower_lift, 0px))) rotate(calc(var(--flower_rotate, 0deg) + var(--flower_spin, 540deg)));
      opacity: var(--flower_opacity, 1);
    }
  }
  @keyframes flower_fall_sway_scroll {
    0% {
      left: var(--flower_x, 50%);
      transform: translateX(-50%) translateY(calc(-12vh + var(--flower_lift, 0px))) rotate(var(--flower_rotate, 0deg));
      opacity: 0;
    }
    8% {
      opacity: var(--flower_opacity, 1);
    }
    10% {
      left: calc(var(--flower_x, 50%) + 1.2%);
      transform: translateX(-50%) translateY(calc(0.4vh + var(--flower_lift, 0px))) rotate(calc(var(--flower_rotate, 0deg) + var(--flower_spin, 54deg)));
      opacity: var(--flower_opacity, 1);
    }
    20% {
      left: calc(var(--flower_x, 50%) + 3.2%);
      transform: translateX(-50%) translateY(calc(12.8vh + var(--flower_lift, 0px))) rotate(calc(var(--flower_rotate, 0deg) + var(--flower_spin, 108deg)));
      opacity: var(--flower_opacity, 1);
    }
    30% {
      left: calc(var(--flower_x, 50%) + 3.8%);
      transform: translateX(-50%) translateY(calc(25.2vh + var(--flower_lift, 0px))) rotate(calc(var(--flower_rotate, 0deg) + var(--flower_spin, 162deg)));
      opacity: var(--flower_opacity, 1);
    }
    40% {
      left: calc(var(--flower_x, 50%) + 2%);
      transform: translateX(-50%) translateY(calc(37.6vh + var(--flower_lift, 0px))) rotate(calc(var(--flower_rotate, 0deg) + var(--flower_spin, 216deg)));
      opacity: var(--flower_opacity, 1);
    }
    50% {
      left: var(--flower_x, 50%);
      transform: translateX(-50%) translateY(calc(50vh + var(--flower_lift, 0px))) rotate(calc(var(--flower_rotate, 0deg) + var(--flower_spin, 270deg)));
      opacity: var(--flower_opacity, 1);
    }
    60% {
      left: calc(var(--flower_x, 50%) - 2%);
      transform: translateX(-50%) translateY(calc(62.4vh + var(--flower_lift, 0px))) rotate(calc(var(--flower_rotate, 0deg) + var(--flower_spin, 324deg)));
      opacity: var(--flower_opacity, 1);
    }
    70% {
      left: calc(var(--flower_x, 50%) - 3.8%);
      transform: translateX(-50%) translateY(calc(74.8vh + var(--flower_lift, 0px))) rotate(calc(var(--flower_rotate, 0deg) + var(--flower_spin, 378deg)));
      opacity: var(--flower_opacity, 1);
    }
    80% {
      left: calc(var(--flower_x, 50%) - 3.2%);
      transform: translateX(-50%) translateY(calc(87.2vh + var(--flower_lift, 0px))) rotate(calc(var(--flower_rotate, 0deg) + var(--flower_spin, 432deg)));
      opacity: var(--flower_opacity, 1);
    }
    90% {
      left: calc(var(--flower_x, 50%) - 1.2%);
      transform: translateX(-50%) translateY(calc(99.6vh + var(--flower_lift, 0px))) rotate(calc(var(--flower_rotate, 0deg) + var(--flower_spin, 486deg)));
      opacity: var(--flower_opacity, 1);
    }
    100% {
      left: calc(var(--flower_x, 50%) + var(--flower_drift, 0%) + var(--flower_wind, 0%));
      transform: translateX(-50%) translateY(calc(112vh + var(--flower_lift, 0px))) rotate(calc(var(--flower_rotate, 0deg) + var(--flower_spin, 540deg)));
      opacity: var(--flower_opacity, 1);
    }
  }
  .flower_layer_scroll .flower_item {
    animation: flower_fall_scroll var(--flower_duration, 8s) ease-out forwards;
  }
  .flower_layer_scroll .flower_item_sway {
    animation-name: flower_fall_sway_scroll;
    animation-timing-function: linear;
  }
}

.page_top_floating {
  position: fixed;
  right: 16px;
  bottom: 40px;
  width: 50px;
  height: 50px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
}
.page_top_floating.is_visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.page_top_floating img {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 769px) {
  .page_top_floating {
    width: 70px;
    height: 70px;
    bottom: 20px;
  }
}

li {
  list-style: none;
}

.sp_decorative_grass_header {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp_decorative_grass_header {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    max-width: 100vw;
    pointer-events: none;
    margin-bottom: 0px;
    background-image: url(../img/grass_top_sp.webp);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center top;
    min-height: 200px;
  }
  .sp_decorative_grass_header::before {
    content: '';
    display: block;
    padding-top: 40%;
  }
  .left_fixed_area.sp_decorative_grass_header::before {
    z-index: -1;
  }
}

.sp_decorative_grass_footer {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp_decorative_grass_footer {
    display: block;
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc((100vw - 100%) / -2);
    z-index: -1;
    pointer-events: none;
    margin-top: 0;
  }
  .sp_decorative_grass_footer img {
    width: 100%;
    height: auto;
    display: block;

  }
}

.sp_decorative_grass_sides {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp_decorative_grass_sides {
    display: flex;
    position: relative;
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0;
    pointer-events: none;
    z-index: -1;
    margin-bottom: 0;
  }
  .sp_decorative_grass_sides .sp_decorative_grass_side {
    height: 30vh;
    width: auto;
    max-height: 30vh;
    display: block;

  }
}

.pc_decorative_grass {
  display: none;
}
@media screen and (min-width: 769px) {
  .pc_decorative_grass {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0;
    pointer-events: none;
    z-index: 0;
  }
  .pc_decorative_grass .pc_decorative_grass_item {
    height: 80vh;
    width: auto;
    max-height: 80vh;
    display: block;

  }
  .pc_decorative_grass .pc_decorative_grass_item_left {
    order: 1;
  }
  /* 動く範囲(right: 10%, width: 375px)の中央から140px左 = 90% - 375/2 - 140 */
  .pc_decorative_grass .pc_decorative_grass_item_center {
    order: 2;
    position: absolute;
    left: calc(90% - 327.5px);
    transform: translateX(-50%);
  }
  .pc_decorative_grass .pc_decorative_grass_item_right {
    order: 3;
  }
}

.section_decorative_grass {
  width: 100%;
  margin: 0;
  padding: 0;
  pointer-events: none;
}
.section_decorative_grass img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (min-width: 769px) {
  .section_decorative_grass {
    display: none;
  }
}

.glass_bottom_img {
  display: none;
}
@media screen and (max-width: 768px) {
  .glass_bottom_img {
    display: block;
    width: 100%;
    background-image: url(../img/glass_bottom01_sp.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
    pointer-events: none;
    position: relative;
    z-index: 0;
    margin-top: -150px;
    margin-bottom: 0;
    min-height: 200px;
  }
  .glass_bottom_img::before {
    content: '';
    display: block;
    padding-top: 30%;
  }
}

#wrapper {
  width: 100%;
  margin: 0 auto;
  background-color: transparent;
  position: relative;
}
@media screen and (max-width: 375px) {
  #wrapper {
    max-width: 100%;
  }
}
@media screen and (min-width: 769px) {
  #wrapper {
    max-width: 100%;
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: block;
  }
}

.left_fixed_area {
  width: 100%;
  position: relative;
}
@media screen and (min-width: 769px) {
  .left_fixed_area {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: transparent;
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(10px, 1.8vh, 18px);
    padding: 0 20px clamp(20px, 3vh, 32px);
    padding-right: calc(10% + 450px);
  }
}

.right_scroll_area {
  width: 100%;
  position: relative;
}
@media screen and (min-width: 769px) {
  .right_scroll_area {
    position: fixed;
    top: 0;
    right: 10%;
    width: 450px;
    height: 100vh;
    overflow-y: auto;
    background-image: url(../img/sp-bg.webp);
    background-attachment: scroll;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 3;
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.1);
    padding: 0px 0;
    border-left: 15px solid #fff;
    border-right: 15px solid #fff;
  }
}

.main_visual {
  width: 100%;
  background-color: transparent;
  margin-top: 0;
  position: relative;
  z-index: 3;
}
.main_visual .main_visual_img {
  width: 100%;
}
.main_visual .main_visual_img img {
  width: 100%;
  min-width: 200px;
  max-width: 450px;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .main_visual {
    margin-top: -80px;
    padding: 0 50px;
  }
}
@media screen and (min-width: 769px) {
  .main_visual {
    margin: clamp(48px, 10vh, 100px) 0 0;
  }
  .main_visual .main_visual_img img {
    max-width: 500px;
    padding: 0 30px;
  }
}

.slider_section {
  padding: 0;
  background-color: transparent;
  overflow: hidden;
  position: relative;
}
.slider_section .slider_section_content {
  width: 100%;
  position: relative;
}
.slider_section .slider_swiper {
  width: 100%;
  padding: 30px 0 40px;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slider_section .slider_swiper .swiper-wrapper {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media screen and (max-width: 768px) {
  .slider_section {
    z-index: 3;
  } 
}
.slider_section .slider_swiper .swiper-wrapper .swiper-slide {
  width: 220px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
  opacity: 1;
  position: relative;
  z-index: 1000;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
}
.slider_section .slider_swiper .swiper-wrapper .swiper-slide .slider_slide_link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1000;
  cursor: pointer;
  pointer-events: auto;
}
.slider_section .slider_swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}
.slider_section .slider_swiper .swiper-wrapper .swiper-slide.swiper-slide-active {
  opacity: 1;
  z-index: 10;
}
@media screen and (min-width: 769px) {
  .slider_section {
    display: none;
  }
}

.anchor_links {
  padding: 30px 0;
  background-color: transparent;
  position: relative;
}
.anchor_links .anchor_links_content {
  width: 100%;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .anchor_links::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom, 
      rgba(255, 95, 255, 0.4) 0%, 
      rgba(255, 95, 255, 0.3) 25%, 
      rgba(255, 95, 255, 0.2) 50%, 
      rgba(255, 95, 255, 0.1) 75%, 
      rgba(255, 95, 255, 0) 100%);
    pointer-events: none;
    z-index: -1;
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.anchor_links .anchor_links_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 3;
}
.anchor_links .anchor_links_inner .anchor_link_item {
  width: 300px;
  height: 70px;
  background-color: #fff;
  border: 4px solid #97cb7f;
  border-radius: 25px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 3;
  cursor: pointer;
  pointer-events: auto;
}
.anchor_links .anchor_links_inner .anchor_link_item .anchor_link_text {
  color: #333;
  font-size: 18px;
  font-weight: 700;
}
.anchor_links .anchor_links_inner .anchor_link_item .anchor_link_img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 50px;
}
.anchor_links .anchor_links_inner .anchor_link_item .anchor_link_left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.anchor_links .anchor_links_inner .anchor_link_item .anchor_link_icon {
  width: 28px;
  height: 28px;
  display: block;
  flex: 0 0 auto;
}
.anchor_links .anchor_links_inner .anchor_link_item .anchor_link_icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.anchor_links .anchor_links_inner .anchor_link_item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.anchor_links .anchor_links_inner .anchor_link_item:nth-child(1) {
  border-color: #97cb7f;
  color: #97cb7f;
}
.anchor_links .anchor_links_inner .anchor_link_item:nth-child(2) {
  border-color: #edc1da;
  color: #edc1da;
}
.anchor_links .anchor_links_inner .anchor_link_item:nth-child(3) {
  border-color: #90d2e2;
  color: #90d2e2;
}
.anchor_links .anchor_links_inner .anchor_link_item:nth-child(4) {
  border-color: #f6dd9f;
  color: #f6dd9f;
}
@media screen and (min-width: 769px) {
  .anchor_links {
    padding: clamp(16px, 3vh, 40px) 0;
  }
  .anchor_links .anchor_links_inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(10px, 1.8vh, 16px);
    max-width: 640px;
    margin: 0 auto;
  }
  .anchor_links .anchor_links_inner .anchor_link_item {
    width: 300px;
  }
  .anchor_links .anchor_links_inner .anchor_link_item .anchor_link_img {
    max-height: 54px;
  }
  .anchor_links .anchor_links_inner .anchor_link_item .anchor_link_icon {
    width: 32px;
    height: 32px;
  }
}

.shop_block {
  padding: 30px 0;
  background-color: transparent;
  position: relative;
}
.shop_block:nth-child(even) {
  background-color: transparent;
}
@media screen and (max-width: 768px) {
  .shop_block {
    background-image: url(../img/glass_bottom01_sp.webp);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center bottom;
    padding-bottom: 80px;
  }
  .shop_block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom, 
      rgba(0, 165, 255, 0.4) 0%, 
      rgba(0, 165, 255, 0.3) 25%, 
      rgba(0, 165, 255, 0.2) 50%, 
      rgba(0, 165, 255, 0.1) 75%, 
      rgba(0, 165, 255, 0) 100%);
    pointer-events: none;
    z-index: -1;
    opacity: 1;
    transform: none;
    transition: none;
  }
  .shop_block:nth-child(2)::before {
    background: linear-gradient(to bottom, 
      rgba(255, 95, 255, 0.4) 0%, 
      rgba(255, 95, 255, 0.3) 25%, 
      rgba(255, 95, 255, 0.2) 50%, 
      rgba(255, 95, 255, 0.1) 75%, 
      rgba(255, 95, 255, 0) 100%);
  }
  .shop_block:nth-child(4)::before {
    background: linear-gradient(to bottom, 
      rgba(255, 95, 255, 0.4) 0%, 
      rgba(255, 95, 255, 0.3) 25%, 
      rgba(255, 95, 255, 0.2) 50%, 
      rgba(255, 95, 255, 0.1) 75%, 
      rgba(255, 95, 255, 0) 100%);
  }
  #shop_area_01 {
    margin-top: 0;
    padding-top: 20px;
  }
  #shop_area_01::before {
    top: 0;
    margin-top: 0;
  }
  #shop_area_04 {
    background-image: url(../img/glass_bottom02_sp.webp);
  }
}
@media screen and (min-width: 769px) {
  .shop_block {
    background-image: url(../img/glass_bottom01_sp.webp);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center bottom;
    padding-bottom: 80px;
  }
  .shop_block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom, 
      rgba(0, 165, 255, 0.4) 0%, 
      rgba(0, 165, 255, 0.3) 25%, 
      rgba(0, 165, 255, 0.2) 50%, 
      rgba(0, 165, 255, 0.1) 75%, 
      rgba(0, 165, 255, 0) 100%);
    pointer-events: none;
    z-index: -1;
    opacity: 1;
    transform: none;
    transition: none;
  }
  .shop_block:nth-child(2)::before {
    background: linear-gradient(to bottom, 
      rgba(255, 95, 255, 0.4) 0%, 
      rgba(255, 95, 255, 0.3) 25%, 
      rgba(255, 95, 255, 0.2) 50%, 
      rgba(255, 95, 255, 0.1) 75%, 
      rgba(255, 95, 255, 0) 100%);
  }
  .shop_block:nth-child(4)::before {
    background: linear-gradient(to bottom, 
      rgba(255, 95, 255, 0.4) 0%, 
      rgba(255, 95, 255, 0.3) 25%, 
      rgba(255, 95, 255, 0.2) 50%, 
      rgba(255, 95, 255, 0.1) 75%, 
      rgba(255, 95, 255, 0) 100%);
  }
  #shop_area_01 {
    margin-top: 0;
    padding-top:40px;
  }
  #shop_area_01::before {
    top: 0;
    margin-top: 0;
  }
  #shop_area_04 {
    background-image: url(../img/glass_bottom02_sp.webp);
  }
}
.shop_block .shop_block_content {
  width: 100%;
  position: relative;
  z-index: 3;
}
.shop_block .shop_block_inner {
  width: 350px;
  margin: 0 auto;
  background-color: #fff;
  border: 4px solid #97cb7f;
  border-radius: 25px 25px 0 0;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 350px) {
  .shop_block .shop_block_inner {
    width: 320px;
  }
}
.shop_block .shop_block_inner .shop_date {
  background-color: #fff;
  color: #333;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  padding: 0 20px 0 16px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  border-bottom: 4px solid #97cb7f;
  overflow: hidden;
}
.shop_block .shop_block_inner .shop_date .shop_date_img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 50px;
}
.shop_block .shop_block_inner .shop_img {
  width: 100%;
  height: auto;
  background-color: transparent;
  padding: 20px 20px 0;
}
.shop_block .shop_block_inner .shop_img .shop_img_inner {
  display: flex;
  align-items: stretch;
  gap: 12px;
}
.shop_block .shop_block_inner .shop_img .shop_renewal_label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #00A5FF;
  line-height: 1;
  white-space: nowrap;
}
.shop_block .shop_block_inner .shop_img .shop_new_label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1;
  white-space: nowrap;
}
.shop_block .shop_block_inner .shop_img .shop_photo {
  flex: 1 1 auto;
}
.shop_block .shop_block_inner .shop_img .shop_photo img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.shop_block .shop_block_inner .shop_info {
  padding: 12px 20px 20px;
}
.shop_block .shop_block_inner .shop_info .shop_title_row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 6px;
}
.shop_block .shop_block_inner .shop_info .shop_logo_area {
  flex: 0 0 auto;
  width: 75px;
  height: 57px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop_block .shop_block_inner .shop_info .shop_logo_area img {
  max-width: 75px;
  max-height: 57px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.shop_block .shop_block_inner .shop_info .shop_logo_text {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  line-height: 1;
}
.shop_block .shop_block_inner .shop_info .shop_title_text {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.shop_block .shop_block_inner .shop_info .shop_name {
  font-size: 16px;
  font-weight: 800;
  color: #333;
  margin: 0;
  font-family: "rosiriusstd", "M PLUS Rounded 1c", "Hiragino Maru Gothic ProN", "Comic Sans MS", sans-serif;
}
.shop_block .shop_block_inner .shop_info .shop_category {
  font-size: 12px;
  font-weight: 800;
  color: #333;
  font-family: "rosiriusstd", "M PLUS Rounded 1c", "Hiragino Maru Gothic ProN", "Comic Sans MS", sans-serif;
}
.shop_block .shop_block_inner .shop_info .shop_location_row {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 14px;
}
.shop_block .shop_block_inner .shop_info .shop_location {
  font-size: 12px;
  font-weight: 800;
  color: #333;
  font-family: "rosiriusstd", "M PLUS Rounded 1c", "Hiragino Maru Gothic ProN", "Comic Sans MS", sans-serif;
}
.shop_block .shop_block_inner .shop_info .shop_location .shop_floor {
  font-size: 16px;
  font-family: "rosiriusstd", "M PLUS Rounded 1c", "Hiragino Maru Gothic ProN", "Comic Sans MS", sans-serif;
}
.shop_block .shop_block_inner .shop_info .shop_desc {
  font-size: 14px;
  line-height: 1.8;
  color: #666;
  font-weight: 600;
  margin-bottom: 20px;
}
.shop_block .shop_block_inner .shop_info .shop_benefit {
  background-color: transparent;
  border: none;
  padding: 0;
}
.shop_block {
  --shop_accent: #00A5FF;
}
#shop_area_01 {
  --shop_accent: #97cb7f;
}
#shop_area_02 {
  --shop_accent: #edc1da;
}
#shop_area_03 {
  --shop_accent: #90d2e2;
}
#shop_area_04 {
  --shop_accent: #f6dd9f;
}
.shop_block .shop_block_inner .shop_info .shop_benefit .benefit_title {
  margin: 0 0 12px;
  --frame: 1px;
  --cut: 10px;
  padding: 7px 11px;
  background:
    linear-gradient(#333, #333) left var(--cut) top / calc(100% - var(--cut)) var(--frame) no-repeat,
    linear-gradient(#333, #333) left top var(--cut) / var(--frame) calc(100% - var(--cut)) no-repeat,
    linear-gradient(#333, #333) right top / var(--frame) calc(100% - var(--cut)) no-repeat,
    linear-gradient(#333, #333) left bottom / calc(100% - var(--cut)) var(--frame) no-repeat;
  background-color: #fff;
  text-align: center;
  box-sizing: border-box;
}
.shop_block .shop_block_inner .shop_info .shop_benefit .benefit_title .benefit_title_text {
  display: block;
  width: 100%;
  height: 16px;
  line-height: 16px;
  background-color: var(--shop_accent);
  padding: 0;
  font-size: 14px;
  font-weight: 800;
  color: #333;
  letter-spacing: 0.18em;
  font-family: "rosiriusstd", "M PLUS Rounded 1c", "Hiragino Maru Gothic ProN", "Comic Sans MS", sans-serif;
}
.shop_block .shop_block_inner .shop_info .shop_benefit .benefit_text {
  font-size: 13px;
  line-height: 1.6;
  color: #333;
  font-weight: 600;
  font-family: "rosiriusstd", "M PLUS Rounded 1c", "Hiragino Maru Gothic ProN", "Comic Sans MS", sans-serif;
}
.shop_block .shop_block_inner .shop_info .shop_benefit .benefit_text .benefit_note {
  font-size: 12px;
  font-family: "Yu Gothic", "YuGothic", "游ゴシック", "游ゴシック体", "Meiryo", sans-serif;
}
#shop_05 .shop_info .shop_benefit .benefit_text p.benefit_note {
  padding-left: 1em;
  text-indent: -1em;
}
.shop_block .shop_block_inner .shop_info .shop_benefit .benefit_text span[style*="#ff6ea5"],
.shop_block .shop_block_inner .shop_info .shop_benefit .benefit_text span[style*="color: #ff6ea5"],
.shop_block .shop_block_inner .shop_info .shop_benefit .benefit_text span[style*="color:#ff6ea5"] {
  font-family: "M PLUS Rounded 1c", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN", "Yu Gothic Medium", "Meiryo", sans-serif;
  font-weight: 700;
}
.shop_block .shop_block_inner .shop_info .shop_benefit .benefit_content_wrapper {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.shop_block .shop_block_inner .shop_divider {
  width: 275px;
  height: 2px;
  margin: 20px auto;
  background: linear-gradient(to right, #efa6c7, #37bce8);
}
@media screen and (min-width: 769px) {
  .shop_block {
    padding: 80px 0;
    background-color: transparent;
  }
  .shop_block .shop_block_inner {
    width:350px;
  }
}

#shop_area_01 .shop_block_inner {
  border-color: #97cb7f;
}
#shop_area_01 .shop_block_inner .shop_date {
  border-bottom-color: #97cb7f;
}

#shop_area_02 .shop_block_inner {
  border-color: #edc1da;
}
#shop_area_02 .shop_block_inner .shop_date {
  border-bottom-color: #edc1da;
}

#shop_area_03 .shop_block_inner {
  border-color: #90d2e2;
}
#shop_area_03 .shop_block_inner .shop_date {
  border-bottom-color: #90d2e2;
}

#shop_area_04 .shop_block_inner {
  border-color: #f6dd9f;
}
#shop_area_04 .shop_block_inner .shop_date {
  border-bottom-color: #f6dd9f;
}

.left_footer {
  display: none;
  position: relative;
}
@media screen and (min-width: 769px) {
  .left_footer {
    display: block;
    background-color: transparent;
    padding: 0;
    width: 100%;
    max-width: 800px;
    margin-top: auto;
  }
  .left_footer .page_top_area {
    display: none;
  }
  .left_footer .copyright_area {
    width: 100%;
    height: auto;
    background-color: transparent;
    max-width: 450px;
    margin: 20px auto 0;
    text-align: center;
  }
  .left_footer .copyright_area .copyright {
    color: #00A5FF;
  }
}

.mobile_footer {
  background-color: transparent;
  width: 100vw;
  position: relative;

}
@media screen and (max-width: 768px) {
  .mobile_footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom, 
      rgba(255, 95, 255, 0.4) 0%, 
      rgba(255, 95, 255, 0.3) 25%, 
      rgba(255, 95, 255, 0.2) 50%, 
      rgba(255, 95, 255, 0.1) 75%, 
      rgba(255, 95, 255, 0) 100%);
    pointer-events: none;
    z-index: -1;
    opacity: 1;
    transform: none;
    transition: none;
  }
}
@media screen and (max-width: 375px) {
  .mobile_footer {
    margin-left: 0;
  }
}
@media screen and (min-width: 769px) {
  .mobile_footer {
    display: none;
  }
}

footer {
  background-color: transparent;
}
footer .sns_area {
  padding: 40px 20px 30px;
  text-align: center;
}
footer .sns_area .sns_title {
  font-size: 24px;
  font-weight: 700;
  color: #00A5FF;
  margin-bottom: 20px;
}
footer .sns_area .sns_icons {
  display: flex;
  justify-content: center;
  gap: 30px;
}
footer .sns_area .sns_icons .sns_icon {
  width: 30px;
  height: 30px;
  display: block;
  transition: all 0.3s ease;
}
footer .sns_area .sns_icons .sns_icon img {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 769px) {
  .left_footer .sns_area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    text-align: left;
    padding: 0 20px;
  }
  .left_footer .sns_area .sns_title {
    margin-bottom: 0;
    font-size: 20px;
  }
  footer .sns_area .sns_icons .sns_icon:hover {
    transform: scale(1.1);
  }
}
footer .page_top_area {
  width: 100%;
  height: auto;
  background-color: transparent;
  margin: 0 auto;
  padding: 0;
  z-index: 3;
}
footer .page_top_area .page_top_btn {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 18px 0 22px;
  font-size: 16px;
  font-weight: 700;
  color: #00A5FF;
  border: none;
  background-color: #fff;
  transition: all 0.3s ease;
}
footer .page_top_area .page_top_btn .page_top_icon {
  width: 18px;
  height: auto;
}
@media screen and (min-width: 769px) {
  footer .page_top_area .page_top_btn:hover {
    opacity: 0.8;
  }
}
@media screen and (min-width: 769px) {
  footer .page_top_area {
    width: 100%;
    max-width: 375px;
  }
}
footer .copyright_area {
  width: 100%;
  height: 30px;
  background-color: #00A5FF;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .copyright_area .copyright {
  font-size: 12px;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 769px) {
  footer .copyright_area {
    width: 100%;
    max-width: 375px;
  }
}
@media screen and (min-width: 769px) {
  footer .sns_area {
    padding: 60px 20px 40px;
  }
}

.js__fadeUp {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s, transform 1s;
}
.js__fadeUp.inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.js_fadeInUp {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease-out, transform 1s ease-out;
}
.js_fadeInUp.active {
  opacity: 1;
  transform: translateY(0);
}
.js_fadeInUp_item {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease-out, transform 0.8s ease-out;
}
.js_fadeInUp_item.active {
  opacity: 1;
  transform: translateY(0);
}