@charset "UTF-8";
:root {
  --color-Main: #B60081;
  --color-Black: #212121;
  --color-Gray: #545454;
  --color-Light_Gray: #8C8C8C;
  --color-Light_Gray2: #C6C6C6;
  --color-Line-gray: #E6E6E6;
  --color-Bg_Gray: #F5F5F7;
  --color-BG_Light-Pink: #FFF5FC;
  --color-BG_Light-Yellow: #FFF9EB;
  --color-Link-Blue: #4E84F2;
  --color-White: #FFF;
  --color-green: #70B92D;
  --color-bg: #F4EFD9;
  --color-brown: #4B2C37;
  --color-orange: #EF8200;
  --color-bg_right: #FCFCF0;
  --color-bg_2: #FCF6DF;
  --color-txt: #2A2A2A;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

#root, #__next {
  isolation: isolate;
}

.button {
  user-select: none;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--color-Black, #212121);
  overflow-y: auto;
  overflow-x: hidden;
}

a, button {
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a:hover, button:hover {
  opacity: 0.7;
  cursor: pointer;
}
a:active, button:active {
  opacity: 0.7;
}

ul, ol {
  list-style: none;
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
@font-face {
  font-family: "ZenMaruGothic";
  src: url("/static/assets/fonts/zen-maru-gothic-v17-japanese-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ZenMaruGothic";
  src: url("/static/assets/fonts/zen-maru-gothic-v17-japanese-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
.ff-NS {
  font-family: "Noto Sans JP", sans-serif;
}

.ff-Zenmaru {
  font-family: "ZenMaruGothic", sans-serif;
}

ul, ol {
  list-style: none;
}

.l-main {
  position: relative;
  overflow: hidden;
}

section {
  background-color: var(--color-White, #FFF);
}

.container-fluid {
  margin: 0 auto;
  width: 100%;
  max-width: 1440px;
}

.container {
  margin: 0 20px;
}
@media (min-width: 768px) {
  .container {
    margin: 0 auto;
    width: calc(100% - 56px);
    max-width: 1200px;
  }
}

.c-deco {
  position: absolute;
}

.c-header_container {
  margin: 0 auto;
  padding: 4px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .c-header_container {
    max-width: 600px;
  }
}

@media (min-width: 768px) {
  .c-header_container {
    padding: 8px 40px;
    max-width: 1366px;
  }
  .c-header_container .c-logo {
    width: 67.2px;
    height: auto;
  }
}
.c-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 999em;
}
.c-btn:hover {
  opacity: 0.7;
}
.c-btn.--disable {
  pointer-events: none;
  cursor: default;
  opacity: 0.3;
}
.c-btn.--small {
  padding: 6px 8px;
  font-size: 1.2rem;
}
.c-btn.--large {
  padding: 0 12px;
  height: 56px;
  font-size: 1.4rem;
  font-weight: 700;
}
.c-btn_primary {
  background-color: var(--color-Main, #B60081);
  color: var(--color-White, #FFF);
}
.c-btn_secondary {
  border: 1px solid var(--color-Main, #B60081);
  color: var(--color-Main, #B60081);
  background-color: var(--color-White, #FFF);
}
.c-btn_secondary-search {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.c-btn_secondary-search::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(../images/ico_postal.svg) 0 0 no-repeat;
  background-size: 100%;
}
.c-btn_text {
  display: inline-flex;
  font-size: 1.4rem;
  color: var(--color-Main, #B60081);
}
.c-btn_text::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url(../images/ico_arrow_main.svg) 0 0 no-repeat;
  background-size: 100%;
}
.c-btn_tab {
  background: transparent;
  border: none;
  padding: 0;
  appearance: none;
  cursor: pointer;
  outline: none;
  display: flex;
  width: 100%;
  height: 80px;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-Main, #B60081);
  line-height: 155%;
  background-color: var(--color-White, #FFF);
  border-radius: 20px 20px 0 0;
}
@media (max-width: 359px) {
  .c-btn_tab {
    font-size: 1.5rem;
  }
}
.c-btn_tab.--active {
  color: var(--color-White, #FFF);
  background-color: var(--color-Main, #B60081);
}

@media (min-width: 768px) {
  .c-btn_tab {
    border-radius: 36px 36px 0 0;
  }
  .c-btn.--small {
    padding: 0 12px;
    height: 40px;
    font-size: 1.4rem;
  }
  .c-btn.--large {
    padding: 0 16px;
    height: 64px;
    font-size: 1.6rem;
  }
  .c-btn_text {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .c-btn_text {
    font-size: 1.8rem;
  }
  .c-btn_tab {
    font-size: 2rem;
    border-radius: 48px 48px 0 0;
  }
  .c-btn_tab.--active {
    color: var(--color-White, #FFF);
    background-color: var(--color-Main, #B60081);
  }
}
.c-title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  line-height: 1.4;
  text-align: center;
}
.c-title::before, .c-title::after {
  content: "";
  display: block;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100%;
}

@media (min-width: 768px) {
  .c-title {
    font-size: 3.6rem;
  }
}
@media (min-width: 1024px) {
  .c-title {
    font-size: 4.8rem;
  }
}
.c-footer {
  border-top: 2px solid var(--color-Line-gray, #E6E6E6);
  padding-bottom: 200px;
}
.c-footer_container {
  padding: 0 16px;
  margin: 0 auto;
  max-width: 1136px;
}
.c-footer_logo {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 24px 0;
}
.c-footer_copyright {
  font-size: 1rem;
  color: var(--color-Light_Gray, #8C8C8C);
}

@media (min-width: 768px) {
  .c-footer_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .c-footer_logo svg {
    width: 112.91px;
    height: 34.6px;
  }
  .c-footer_logo img {
    width: 131.12px;
    height: 29.14px;
  }
  .c-footer_copyright {
    font-size: 1.2rem;
  }
}
.operator {
  background-color: var(--color-Main, #B60081);
  padding: 50px 0;
}
.operator_container {
  margin: 0 auto;
  width: 89.3%;
  max-width: 1200px;
  padding: 50px 16px;
  background-color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-style: normal;
}
.operator_title {
  margin-bottom: 16px;
  font-size: 2rem;
}
.operator_tit, .operator_date {
  font-size: 1.8rem;
}
.operator_tit {
  margin-bottom: 8px;
}
.operator_date {
  margin-bottom: 24px;
}
.operator_tel {
  display: block;
  margin: 0 auto 8px;
  width: 214px;
}
.operator_tel:hover {
  opacity: 1;
}
.operator_tel:active {
  opacity: 1;
}
.operator_logo {
  padding-top: 28px;
  background: url(../images/operator_border-sp.png) 0 0 repeat-x;
  background-size: 9px 5px;
}
.operator_logo .img {
  margin: 0 auto;
  width: 230px;
}

@media (min-width: 1024px) {
  .operator {
    padding: 100px 0;
  }
  .operator_container {
    padding: 64px 32px;
  }
  .operator_def .inner {
    margin-bottom: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
  }
  .operator_title {
    margin-bottom: 32px;
    font-size: 2.8rem;
  }
  .operator_tit, .operator_date {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.1em;
  }
  .operator_tit {
    margin-bottom: 0;
  }
  .operator_date {
    margin-bottom: 32px;
  }
  .operator_tel {
    display: block;
    margin: 0 auto;
    width: 444px;
  }
  .operator_tel:hover {
    opacity: 1;
  }
  .operator_tel:active {
    opacity: 1;
  }
  .operator_logo {
    margin: 0 auto;
    max-width: 906px;
    padding-top: 36px;
    background: url(../images/operator_border-pc.png) 0 0 repeat-x;
    background-size: 15px 4px;
  }
  .operator_logo .img {
    margin: 0 auto;
    width: 345px;
  }
}
.totop {
  margin: 0 auto;
  padding: 40px 16px 24px;
  display: flex;
  justify-content: flex-end;
}
.totop__button {
  background: transparent;
  border: none;
  padding: 0;
  appearance: none;
  cursor: pointer;
  outline: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  background: var(--color-Light_Gray, #8C8C8C);
  border-radius: 6px;
}
.totop__txt {
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--color-White, #FFF);
}

@media (min-width: 768px) {
  .totop {
    justify-content: center;
  }
  .totop > .inner {
    display: flex;
    justify-content: flex-end;
    width: 552px;
  }
}
@media (min-width: 1024px) {
  .totop > .inner {
    width: 1104px;
  }
  .totop__txt {
    font-size: 1.2rem;
  }
}
.c-title_circle {
  margin-bottom: 50px;
  gap: 20px;
}
.c-title_circle::before, .c-title_circle::after {
  width: 44px;
  height: 85px;
}
.c-title_circle::before {
  background-image: url(../images/title_bg1-left.png);
}
.c-title_circle::after {
  background-image: url(../images/title_bg1-right.png);
}
.c-title_banzai {
  align-items: flex-start;
  margin-bottom: 32px;
  height: 49px;
  gap: 16px;
}
.c-title_banzai::before, .c-title_banzai::after {
  width: 36px;
  height: 49px;
  background-position: bottom center;
}
.c-title_banzai::before {
  background-image: url(../images/title_bg2-left.png);
}
.c-title_banzai::after {
  background-image: url(../images/title_bg2-right.png);
}
.c-title_shop {
  margin-top: 32px;
  margin-bottom: 32px;
  font-size: 2.24rem;
  line-height: 1.43;
  color: var(--color-Main, #B60081);
  gap: 20px;
}
.c-title_shop small {
  margin-top: 5px;
  display: block;
  font-size: 1.28rem;
}
@media (max-width: 600px) {
  .c-title_shop small {
    font-size: 1rem;
  }
}
.c-title_shop::before, .c-title_shop::after {
  width: 26px;
  height: 49px;
  background-position: 0 0;
}
.c-title_shop::before {
  background-image: url(../images/title_bg3-left.png);
}
.c-title_shop::after {
  background-image: url(../images/title_bg3-right.png);
}
.c-title_semicircle {
  margin-bottom: 32px;
  padding-top: 44px;
  flex-direction: column;
  font-size: 2.8rem;
  background: url(../images/title_bg4-sp.png) center top no-repeat;
  background-size: 292px 120px;
}
.c-title_semicircle small {
  display: block;
  margin-bottom: 6px;
  font-size: 2rem;
}
.c-title_semicircle-order {
  margin-bottom: 32px;
  padding-top: 44px;
  flex-direction: column;
  font-size: 2.8rem;
  background: url(../images/title_bg5-sp.png) center top no-repeat;
  background-size: 271px 68px;
}
.c-title_semicircle-order small {
  display: block;
  padding-top: 6px;
  font-size: 2rem;
}
.c-title_semicircle-shopping {
  padding: 40px 0 32px;
  flex-direction: column;
  font-size: 2.8rem;
  background: url(../images/title_bg6-sp.png) center top no-repeat;
  background-size: 295px 88px;
  letter-spacing: 2px;
}

@media (min-width: 768px) {
  .c-title_circle {
    margin-bottom: 56px;
    gap: 24px;
  }
  .c-title_shop {
    margin-top: 48px;
    margin-bottom: 40px;
    font-size: 2.8rem;
    gap: 24px;
  }
  .c-title_shop small {
    margin-top: 5px;
    font-size: 1.6rem;
  }
  .c-title_shop::before, .c-title_shop::after {
    width: 31px;
    height: 63px;
    background-position: 0 4px;
  }
  .c-title_semicircle {
    margin-bottom: 32px;
    padding-top: 56px;
    font-size: 3.2rem;
    background: url(../images/title_bg4-pc.png) center top no-repeat;
    background-size: 367px 82px;
  }
  .c-title_semicircle small {
    display: block;
    margin-bottom: 16px;
    font-size: 2.4rem;
  }
  .c-title_semicircle-order {
    margin-bottom: 38.4px;
    padding-top: 38.4px;
    font-size: 3.2rem;
    letter-spacing: 3.2px;
    background: url(../images/title_bg5-pc.png) center top no-repeat;
    background-size: 313.6px 79.2px;
  }
  .c-title_semicircle-order small {
    font-size: 2.8rem;
    letter-spacing: 1px;
  }
  .c-title_semicircle-shopping {
    padding: 41.6px 0 32px;
    flex-direction: column;
    font-size: 3.2rem;
    letter-spacing: 4px;
    background: url(../images/title_bg6-pc.png) center top no-repeat;
    background-size: 308.8px 92.8px;
  }
}
@media (min-width: 1024px) {
  .c-title_circle {
    margin-bottom: 64px;
  }
  .c-title_banzai {
    margin-bottom: 16px;
    height: 64px;
    font-size: 4rem;
    letter-spacing: 0.1em;
  }
  .c-title_banzai::before, .c-title_banzai::after {
    width: 36px;
    height: 64px;
    background-position: center center;
  }
  .c-title_semicircle {
    margin-bottom: 48px;
    padding-top: 64px;
    font-size: 4rem;
    background: url(../images/title_bg4-pc.png) center top no-repeat;
    background-size: 404px 91px;
  }
  .c-title_semicircle small {
    display: block;
    margin-bottom: 16px;
    font-size: 2.8rem;
  }
  .c-title_semicircle-order {
    margin-bottom: 48px;
    padding-top: 48px;
    font-size: 4rem;
    letter-spacing: 4px;
    background: url(../images/title_bg5-pc.png) center top no-repeat;
    background-size: 392px 99px;
  }
  .c-title_semicircle-order small {
    font-size: 2.8rem;
    letter-spacing: 1px;
  }
  .c-title_semicircle-shopping {
    padding: 52px 0 40px;
    flex-direction: column;
    font-size: 4rem;
    letter-spacing: 4px;
    background: url(../images/title_bg6-pc.png) center top no-repeat;
    background-size: 386px 116px;
  }
}
.kv {
  position: relative;
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: url(../images/kv_bg-sp.jpg) center center no-repeat;
  background-size: cover;
}
.kv::after {
  content: "";
  display: block;
  width: 100%;
  height: 8.53vw;
  background: url(../images/kv_bg-bot-sp.png) center top no-repeat;
  background-size: 100% 100%;
}
.kv_container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.07vw;
  padding: 8.53vw 0 17.6vw;
}
@media (max-width: 599px) {
  .kv_container {
    min-height: 159.47vw;
  }
}
.kv_main {
  overflow: hidden;
  text-indent: 200%;
  white-space: nowrap;
  width: 81.87vw;
  height: 46.4vw;
  background: url(../images/kv_main-sp.png) center top no-repeat;
  background-size: cover;
}
.kv_img-ui {
  position: relative;
  z-index: 1;
}
.kv_img-ui > img {
  display: block;
  width: 100%;
  height: auto;
}
.kv_img-coupon {
  position: absolute;
  bottom: -47.2vw;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 100%;
  height: auto;
  max-width: 600px;
}

.coupon {
  padding-top: 42.67vw;
}

@media (min-width: 600px) and (max-width: 767px) {
  .kv::after {
    height: 51.17px;
  }
  .kv_container {
    gap: 6.4px;
    padding: 51px 0 105.6px;
  }
  .kv_main {
    width: 490px;
    height: 278px;
  }
  .kv_img-ui {
    width: 600px;
  }
  .kv_img-coupon {
    bottom: -283px;
  }
  .coupon {
    padding-top: 260px;
  }
}
@media (min-width: 768px) {
  .kv {
    background: url(../images/kv_bg-pc.jpg) center center no-repeat;
    background-size: cover;
  }
  .kv::after {
    height: 6.12vw;
    background: url(../images/kv_bg-bot-pc.png) center bottom no-repeat;
    background-size: 100% 100%;
  }
  .kv_container {
    margin: 0 auto;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0;
    padding: 0;
    height: 49vw;
  }
  .kv_main {
    margin: 9.735vw 0 0 5.99vw;
    width: 39.84vw;
    height: 27.1vw;
    background: url(../images/kv_main-pc.png) center top no-repeat;
    background-size: cover;
  }
  .kv_img-ui {
    position: absolute;
    top: -0.78vw;
    right: -3.51vw;
    width: 52.73vw;
  }
  .kv_img-coupon {
    bottom: -11vw;
    width: 76.82vw;
    max-width: none;
  }
  .coupon {
    padding-top: 3.12vw;
  }
}
@media (min-width: 1440px) {
  .kv::after {
    height: 93px;
  }
  .kv_container {
    width: 1440px;
    height: 720px;
  }
  .kv_main {
    margin: 136px 0 0 87px;
    width: 575px;
    height: 390px;
  }
  .kv_img-ui {
    top: -10px;
    right: -50px;
    width: 760px;
  }
  .kv_img-coupon {
    bottom: -150px;
    width: 1110px;
  }
  .coupon {
    padding-top: 40px;
  }
}
.cta {
  position: fixed;
  bottom: -88px;
  left: 0;
  z-index: 10;
  transition: bottom 0.4s ease, opacity 0.4s ease;
}
@media (max-width: 767px) {
  .cta {
    border-top: 1px solid var(--color-Line-gray, #E6E6E6);
  }
}
.cta.is-visible {
  bottom: 0;
}
.cta {
  width: 100%;
  padding: 12px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(5px);
}
.cta_ls {
  margin: 0 auto;
  max-width: 892px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.cta_ls .item {
  flex: 1;
}
.cta_ls .item .c-btn {
  height: 44px;
  padding-right: 0;
  padding-left: 0;
}
@media (max-width: 359px) {
  .cta_ls .item .c-btn {
    font-size: 1.2rem;
  }
}
.cta_ls .item .c-btn.c-btn_secondary-search {
  gap: 3px;
}
.cta_ls .item .c-btn.c-btn_secondary-search::before {
  width: 18px;
  height: 18px;
}

@media (min-width: 768px) {
  .cta {
    padding: 10px 12px;
  }
  .cta_ls .item .c-btn {
    height: 64px;
  }
  .cta_ls .item .c-btn.c-btn_secondary-search {
    gap: 10px;
  }
  .cta_ls .item .c-btn.c-btn_secondary-search::before {
    width: 26px;
    height: 26px;
  }
}
.point .container {
  position: relative;
  padding-bottom: 60px;
}
.point .container .c-deco_broccoli {
  position: absolute;
  top: -28px;
  left: -12px;
}
.point_ls {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.point_ls .item_head {
  position: relative;
  display: flex;
  justify-content: space-between;
  height: 40px;
  background: url(../images/point_border-top-center.png) 0 0 var(--color-White, #FFF) repeat-x;
  background-size: 600px 45px;
}
.point_ls .item_head::before, .point_ls .item_head::after {
  content: "";
  width: 45px;
  height: 40px;
  background-size: 45px;
  background-color: #fff;
}
.point_ls .item_head::before {
  background-image: url(../images/point_border-top-left.png);
  background-position: 0 0;
}
.point_ls .item_head::after {
  background-image: url(../images/point_border-top-right.png);
  background-position: right 0;
}
.point_ls .item_body {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  text-align: center;
}
.point_ls .item_body::before, .point_ls .item_body::after {
  content: "";
  width: 28px;
  background-size: 45px 500px;
  background-repeat: repeat-y;
  background-color: #fff;
}
.point_ls .item_body::before {
  background-image: url(../images/point_border-center-left.png);
  background-position: 0 0;
}
.point_ls .item_body::after {
  background-image: url(../images/point_border-center-right.png);
  background-position: right 0;
}
.point_ls .item_body .inner {
  padding-top: 8px;
  flex: 1;
}
.point_ls .item_foot {
  display: flex;
  justify-content: space-between;
  height: 40px;
  background: url(../images/point_border-bottom-center.png) 0 bottom var(--color-White, #FFF) repeat-x;
  background-size: 600px 45px;
}
.point_ls .item_foot::before, .point_ls .item_foot::after {
  content: "";
  width: 45px;
  height: 40px;
  background-size: 45px;
  background-color: #fff;
}
.point_ls .item_foot::before {
  background-image: url(../images/point_border-bottom-left.png);
  background-position: left bottom;
}
.point_ls .item_foot::after {
  background-image: url(../images/point_border-bottom-right.png);
  background-position: right bottom;
}
.point_ls .label {
  position: absolute;
  top: -16px;
  left: 50%;
  padding: 8px 16px;
  background-color: #F3E5EE;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--Main, #B60081);
  line-height: 100%;
  border-radius: 999em;
  transform: translateX(-50%);
}
.point_ls .img {
  margin: 0 auto 14px;
  width: 200px;
}
.point_ls .point_text-main {
  margin-bottom: 8px;
  font-size: 2.4rem;
  font-weight: 700;
}
.point_ls .point_text-lead {
  margin-bottom: 8px;
  font-size: 1.8rem;
}

@media (min-width: 768px) {
  .point_ls {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 50px 24px;
  }
  .point_ls .item {
    width: calc((100% - 24px) / 2);
    display: flex;
    flex-direction: column;
  }
  .point_ls .item_body {
    display: flex;
    align-items: stretch;
    text-align: center;
    flex: 1;
  }
  .point_ls .item_body::before, .point_ls .item_body::after {
    content: "";
    display: block;
  }
  .point_ls .item_body::before {
    width: 24px;
  }
  .point_ls .item_body::after {
    width: 24px;
  }
  .point_ls .item_body .inner {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .point_ls .item_body .inner img {
    width: 140px;
  }
  .point_ls .item_body .inner .point_text-main {
    font-size: 2.4rem;
  }
  .point_ls .item_body .inner .point_text-lead {
    margin-bottom: 10px;
    font-size: 1.8rem;
  }
  .point_ls .item_foot {
    margin-top: auto;
  }
}
@media (min-width: 1024px) {
  .point .container {
    padding-bottom: 120px;
  }
  .point .container .c-deco_broccoli {
    width: 112px;
    height: 119.2px;
    top: -72px;
    left: -24px;
  }
  .point_ls {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 50px 24px;
  }
  .point_ls .item {
    width: calc((100% - 24px) / 2);
  }
  .point_ls .item .inner {
    gap: 8px;
    flex-direction: row;
  }
  .point_ls .item .inner .img {
    width: 160px;
  }
  .point_ls .item .inner .point_text {
    text-align: left;
    flex: 1;
  }
  .point_ls .item_body::before, .point_ls .item_body::after {
    width: 3.12vw;
  }
}
@media (min-width: 1264px) {
  .point_ls {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 50px 24px;
  }
  .point_ls .item {
    width: calc((100% - 24px) / 2);
  }
  .point_ls .item .inner {
    gap: 0;
  }
  .point_ls .item .inner .img {
    width: 200px;
    height: 140px;
  }
  .point_ls .item .inner .point_text-main {
    margin-bottom: 12px;
    font-size: 3.2rem;
    line-height: 1.4;
  }
  .point_ls .item .inner .point_text-lead {
    margin-bottom: 12px;
    font-size: 2rem;
    line-height: 1.4;
  }
  .point_ls .item_body::before, .point_ls .item_body::after {
    width: 32px;
  }
}
@media (min-width: 1440px) {
  .point .container .c-deco_broccoli {
    top: -80px;
    left: -64px;
    width: 140px;
    height: 149px;
  }
}
.search {
  position: relative;
  background: url(../images/wave_top_sp.png) center bottom/394px 8px repeat-x, linear-gradient(180deg, #FEE5E0 0%, #FEE5E0 20%, #FFF 130%);
  padding-bottom: 8px;
}
.search::before {
  content: "";
  display: block;
  padding-bottom: 80px;
  width: 100%;
  height: 32px;
  background: url(../images/search-info_bg-bot-sp.png) center top no-repeat;
  background-size: 100% 32px;
}
.search .c-deco_meet {
  position: absolute;
  top: -8px;
  left: calc(50% + 80px);
  width: 78px;
  height: auto;
}
.search_lead {
  margin: 0 20px 12px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 155%;
  letter-spacing: 0.06em;
  text-align: center;
}
.search .img_mock {
  margin: 0 auto 20px;
  max-width: 600px;
  height: auto;
}
.search_def {
  padding-bottom: 48px;
}
.search_def-tit {
  margin-bottom: 16px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 155%;
  letter-spacing: 0.06em;
  text-align: center;
}
.search_def-data {
  margin: 0 auto 24px;
  width: 275px;
}

@media (min-width: 768px) {
  .search {
    background: url(../images/wave_top_pc.png) center bottom/1152px 19px repeat-x, linear-gradient(180deg, #FEE5E0 0%, #FEE5E0 20%, #FFF 130%);
    padding-bottom: 19px;
  }
  .search::before {
    padding-bottom: 80px;
    height: 72px;
    background-size: 100% 72px;
  }
  .search .c-deco_meet {
    left: calc(50% + 240px);
    width: 96px;
  }
  .search_lead {
    margin: 0 20px;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 155%;
    letter-spacing: 0.06em;
    text-align: center;
  }
  .search .img_mock {
    margin: 0 auto 20px;
    max-width: 600px;
    height: auto;
  }
  .search_def {
    padding-bottom: 48px;
  }
  .search_def-tit {
    margin-bottom: 16px;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 155%;
    letter-spacing: 0.06em;
    text-align: center;
  }
  .search_def-data {
    margin: 0 auto 28px;
    width: 320px;
  }
}
@media (min-width: 1024px) {
  .search {
    position: relative;
    background: url(../images/wave_top_pc.png) center bottom/1440px 23px repeat-x, linear-gradient(180deg, #FEE5E0 0%, #FEE5E0 20%, #FFF 130%);
    padding-bottom: 19px;
  }
  .search::before {
    content: "";
    display: block;
    width: 100%;
    height: 0;
  }
  .search::before {
    padding-bottom: 80px;
    height: 120px;
    background-size: 100% 120px;
  }
  .search .c-deco_meet {
    left: calc(50% + 360px);
    width: 118.4px;
  }
  .search_lead {
    margin: 0 20px 48px;
    font-size: 2rem;
    font-weight: 700;
    line-height: 155%;
    letter-spacing: 0.06em;
    text-align: center;
  }
  .search .container_info {
    margin-bottom: 56px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    gap: 24px;
  }
}
@media (min-width: 1024px) and (min-width: 1136px) {
  .search .container_info {
    gap: 40px;
  }
}
@media (min-width: 1024px) {
  .search .img_mock {
    margin: 0 auto;
    max-width: 600px;
    height: auto;
  }
  .search_def {
    margin-left: 24px;
    padding-bottom: 0;
  }
}
@media (min-width: 1024px) and (min-width: 1136px) {
  .search_def {
    margin-left: 40px;
  }
}
@media (min-width: 1024px) {
  .search_def-tit {
    margin-bottom: 16px;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 155%;
    letter-spacing: 0.06em;
    text-align: center;
  }
  .search_def-data {
    margin: 0 auto 32px;
    width: 316px;
  }
  .search_def-data:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 1440px) {
  .search .c-deco_meet {
    left: calc(50% + 400px);
    width: 148px;
  }
  .search .img_mock {
    width: 716px;
    max-width: none;
  }
  .search_def-tit {
    font-size: 2rem;
  }
  .search_def-data {
    margin-bottom: 48px;
    width: 343px;
  }
  .search .container_info {
    margin-bottom: 64px;
  }
}
.shop_ls {
  margin: 0 20px;
  padding-bottom: 40px;
}
.shop_ls-head {
  display: flex;
  justify-content: center;
  background: url(../images/search_border-top-sp.png) center top repeat-x;
  background-size: 100% auto;
}
.shop_ls-body {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.shop_ls-body::before, .shop_ls-body::after {
  content: "";
  width: 5.6%;
  background-size: 44px 200px;
  background-repeat: repeat-y;
}
.shop_ls-body::before {
  background-image: url(../images/search_border-center-left-sp.png);
  background-position: 0 0;
}
.shop_ls-body::after {
  background-image: url(../images/search_border-center-right-sp.png);
  background-position: right 0;
}
.shop_ls-body .inner {
  flex: 1;
  background-color: var(--color-White, #FFF);
}
.shop_ls-foot {
  display: flex;
  justify-content: center;
  height: 32px;
  background: url(../images/search_border-bottom-sp.png) center bottom repeat-x;
  background-size: 100% auto;
}

.shop_def {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.shop_def-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.shop_def-item > .date {
  display: flex;
  align-items: baseline;
  font-size: 1.2rem;
  font-weight: 700;
}
.shop_def-item > .date > span {
  font-size: 2rem;
}
.shop_def-item > .date::before {
  content: "";
  display: block;
  margin-right: 4px;
  width: 13px;
  height: 14px;
  background: url(../images/ico_star.svg) 0 0 no-repeat;
  background-size: 100%;
}
.shop_def-item.--disable .shop_name .shop_name-item {
  opacity: 0.3;
}
.shop_def-item .shop_name {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.shop_def-item .shop_name-item a, .shop_def-item .shop_name-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--color-Black, #212121);
}
.shop_def-item .shop_name-item a::after, .shop_def-item .shop_name-item span::after {
  content: "";
  width: 16px;
  height: 16px;
  background: url(../images/ico_arrow.svg) center 1px no-repeat;
  background-size: 100%;
}
.shop_def-item .shop_name-item.--balloon {
  opacity: 1 !important;
}
.shop_def-item .shop_name-item.--balloon-sp {
  width: 100%;
  max-width: 295px;
}
.shop_def .soon {
  background: url(../images/soon_border.png) 0 0 repeat-x;
  background-size: 25px 2px;
  padding-top: 24px;
}
.shop_def .soon_title {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 16px;
}
.shop_def .soon_title::before, .shop_def .soon_title::after {
  content: "";
  display: block;
  margin-right: 4px;
  width: 13px;
  height: 14px;
  background: url(../images/ico_star.svg) 0 0 no-repeat;
  background-size: 100%;
}
.shop_def .soon_ls {
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0.3;
}
.shop_def .soon_ls .item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.shop_def .soon_ls .item span::after {
  content: "";
  width: 16px;
  height: 16px;
  background: url(../images/ico_arrow.svg) center 1px no-repeat;
  background-size: 100%;
}

@media (min-width: 768px) {
  .shop_ls {
    margin: 0 auto;
    padding-bottom: 80px;
    width: calc(100% - 56px);
    max-width: 1200px;
  }
  .shop_ls-head {
    background: url(../images/search_border-top-pc.png) 0 0 repeat-x;
    background-size: 100% auto;
  }
  .shop_ls-body::before, .shop_ls-body::after {
    width: 48px;
    background-size: 96px 400px;
  }
  .shop_ls-body::before {
    background-image: url(../images/search_border-center-left-pc.png);
  }
  .shop_ls-body::after {
    background-image: url(../images/search_border-center-right-pc.png);
  }
  .shop_ls-foot {
    height: 48px;
    background: url(../images/search_border-bottom-pc.png) 0 bottom repeat-x;
    background-size: 100% auto;
  }
  .shop_def {
    gap: 32px;
  }
  .shop_def-item {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }
  .shop_def-item > .date {
    flex-shrink: 0;
    width: 148px;
    font-size: 1.4rem;
  }
  .shop_def-item > .date > span {
    font-size: 2.4rem;
  }
  .shop_def-item > .date::before {
    content: "";
    display: block;
    margin-right: 4px;
    width: 13px;
    height: 20px;
    background: url(../images/ico_star.svg) 0 4px no-repeat;
    background-size: 100%;
  }
  .shop_def-item .shop_name {
    padding-top: 9px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px 20px;
  }
  .shop_def-item .shop_name-item {
    position: relative;
  }
  .shop_def-item .shop_name-item a, .shop_def-item .shop_name-item span {
    font-size: 1.8rem;
    gap: 0;
  }
  .shop_def-item .shop_name-item a::after, .shop_def-item .shop_name-item span::after {
    background-position: center 2px;
  }
  .shop_def-item .shop_name-item.--balloon-pc {
    position: relative;
    left: -12px;
    width: 334.9px;
    max-width: none;
  }
  .shop_def .note {
    width: 100%;
    font-size: 1.8rem;
  }
  .shop_def .soon {
    padding-top: 40px;
  }
  .shop_def .soon_title {
    margin-bottom: 28px;
    justify-content: center;
    font-size: 1.8rem;
  }
  .shop_def .soon_ls {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
  .shop_def .soon_ls .item span {
    font-size: 1.8rem;
  }
}
@media (min-width: 1024px) {
  .shop_ls {
    padding-bottom: 96px;
  }
  .shop_ls-body::before, .shop_ls-body::after {
    width: 72px;
  }
  .shop_ls-foot {
    height: 56px;
  }
  .shop_ls-foot::before, .shop_ls-foot::after {
    width: 56px;
    height: 56px;
  }
  .shop_def-item .shop_name-item.--balloon-pc {
    top: -4px;
    width: 394px;
  }
}
.coupon .container {
  position: relative;
  margin-bottom: 32px;
  padding: 60px 0 64px 0;
  text-align: center;
}
.coupon .c-deco_pimento {
  position: absolute;
  bottom: 38px;
  right: 24px;
  width: 51px;
  height: 67px;
  background: url(../images/img_deco-pimento.png) 0 0 no-repeat;
  background-size: 100%;
  z-index: 1;
}
.coupon .c-title span {
  position: relative;
}
.coupon .c-title span::before {
  position: absolute;
  top: -110px;
  left: -32px;
  content: "";
  display: block;
  width: 74px;
  height: 92px;
  background: url(../images/img_deco-fish.png) 0 0 no-repeat;
  background-size: 100%;
}
.coupon_banner-head, .coupon_banner-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.coupon_banner-head > div, .coupon_banner-foot > div {
  flex: auto;
  height: 40px;
}
.coupon_banner-head::before, .coupon_banner-head::after, .coupon_banner-foot::before, .coupon_banner-foot::after {
  content: "";
  display: block;
  width: 24px;
  height: 40px;
  background-repeat: no-repeat;
  background-size: 32px auto;
}
.coupon_banner-head > div {
  background: url(../images/coupon_border-top-center-sp.png) center top repeat-x;
  background-size: 276px auto;
}
.coupon_banner-head::before {
  background-image: url(../images/coupon_border-top-left-sp.png);
  background-position: 0 0;
}
.coupon_banner-head::after {
  background-image: url(../images/coupon_border-top-right-sp.png);
  background-position: right 0;
}
.coupon_banner-foot > div {
  background: url(../images/coupon_border-bottom-center-sp.png) center bottom repeat-x;
  background-size: 276px auto;
}
.coupon_banner-foot::before {
  background-image: url(../images/coupon_border-bottom-left-sp.png);
  background-position: left bottom;
}
.coupon_banner-foot::after {
  background-image: url(../images/coupon_border-bottom-right-sp.png);
  background-position: right bottom;
}
.coupon_banner-body {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.coupon_banner-body::before, .coupon_banner-body::after {
  content: "";
  display: block;
  width: 8px;
  background-size: 32px 194px;
}
.coupon_banner-body::before {
  background-image: url(../images/coupon_border-center-left-sp.png);
  background-position: 0 0;
}
.coupon_banner-body::after {
  background-image: url(../images/coupon_border-center-right-sp.png);
  background-position: right 0;
}
.coupon_banner-body .inner {
  flex: 1;
}
.coupon_banner-body .img_coupon-date {
  margin: 0 auto 24px;
  padding: 0 4px;
  max-width: 500px;
}
.coupon_banner-body .note {
  margin-bottom: 24px;
  font-size: 1.2rem;
  color: var(--color-Gray, #545454);
}
.coupon_ls {
  margin: 0 auto 12px;
  padding-right: 16px;
  padding-left: 16px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.coupon_ls .item {
  flex: 1;
}
.coupon_ls .item .img {
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
  .coupon {
    padding-bottom: 23px;
    background-size: 1440px 23px;
  }
  .coupon .container {
    padding: 72px 0 80px 0;
  }
  .coupon .c-deco_pimento {
    bottom: 38px;
    right: 48px;
    width: 95px;
    height: 125px;
  }
  .coupon .c-title span::before {
    top: -80px;
    left: -110px;
    width: 112px;
    height: 140px;
  }
  .coupon_banner-body .img_coupon-date {
    margin: -12px auto 24px;
    padding: 0;
    width: 88%;
    max-width: 1125px;
  }
  .coupon_banner-body .note {
    font-size: 1.4rem;
  }
  .coupon_ls {
    margin: 0 auto 12px;
    max-width: 1092px;
    flex-direction: row;
    gap: 12px;
  }
}
@media (min-width: 1440px) {
  .coupon .c-title span::before {
    top: -104px;
    left: -248px;
  }
}
@media (min-width: 1440px) {
  .coupon .c-title span::before {
    top: -104px;
    left: -248px;
    width: 140px;
    height: 175px;
  }
  .coupon_banner-body .img_coupon-date {
    margin: 0 auto 24px;
  }
}
.order {
  padding: 64px 0;
  background-color: #FEE5E0;
}
.order_tab {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--color-Main, #B60081);
}
.order_tab .item {
  width: 50%;
}
.order_ls {
  padding: 30px 20px 30px 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  background-color: var(--color-white, #FFF);
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px;
}
.order_ls .item {
  display: flex;
  padding-right: 10px;
}
.order_ls .item_num {
  display: flex;
  flex-direction: column;
  width: 62px;
}
.order_ls .item_num span {
  position: relative;
  display: block;
  width: 57px;
  height: 55px;
}
.order_ls .item_num span .img {
  position: relative;
  top: 0;
  left: -10px;
}
.order_ls .item_num::after {
  content: "";
  width: 21px;
  height: 100%;
  background: url(../images/img_border-sp.png) 0 0 repeat-y;
  background-size: 20px auto;
}
.order_ls .item_main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.order_ls .item_main .mq {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.order_ls .item_main-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.order_ls .item_main-text .title {
  font-size: 2rem;
}
.order_ls .item_main-text .note {
  font-size: 1.2rem;
  line-height: 1.4;
  color: var(--color-Gray, #545454);
}
.order_ls .item_main-text small.note {
  display: none;
}
.order_ls .item_main-img {
  position: relative;
}
.order_ls .item_main-img .img {
  max-width: 360px;
}
.order_ls .item_main-img .--layer1, .order_ls .item_main-img .--layer2 {
  position: absolute;
  top: 0;
}
.order_ls .item_main-img .img_ui {
  filter: drop-shadow(0 6px 6px rgba(0, 0, 0, 0.28));
}

@media (min-width: 600px) {
  .order_ls .item_main {
    flex-direction: row;
  }
  .order_ls .item_main .mq .note {
    display: none;
  }
  .order_ls .item_main-text {
    flex: 1;
  }
  .order_ls .item_main-text small.note {
    display: block;
    padding-top: 24px;
    font-size: 1.4rem;
  }
  .order_ls .item_main-img {
    margin-left: 24px;
    width: 240px;
  }
}
@media (min-width: 768px) {
  .order_ls .item_main .mq {
    gap: 16px;
  }
  .order_ls .item_main .mq .item_main-text {
    display: none;
  }
  .order_ls .item_main-text {
    flex: 1;
  }
  .order_ls .item_main-img {
    margin-left: 40px;
    width: 304px;
  }
}
@media (min-width: 1024px) {
  .order_ls {
    padding: 56px 72px 56px 0;
  }
  .order_ls .item {
    padding-right: 0;
  }
  .order_ls .item_num {
    width: 130.2px;
  }
  .order_ls .item_num span {
    width: 106.4px;
    height: 72.8px;
  }
  .order_ls .item_num span .img {
    left: -18.2px;
  }
  .order_ls .item_num::after {
    width: 48px;
    background-position: right top;
    background-size: 24px auto;
  }
  .order_ls .item_main-text {
    gap: 24px;
  }
  .order_ls .item_main-text .title {
    font-size: 2.8rem;
  }
  .order_ls .item_main-text .lead {
    font-size: 1.8rem;
  }
  .order_ls .item_main-text small.note {
    font-size: 1.6rem;
    line-height: 1.5;
  }
  .order_ls .item_main-img {
    width: 334px;
  }
}
@media (min-width: 1440px) {
  .order_ls .item_num {
    width: 186px;
  }
  .order_ls .item_num span {
    width: 152px;
    height: 104px;
  }
  .order_ls .item_num span .img {
    left: -26px;
  }
}
.order_bg {
  background-color: #fff;
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px;
}
.order_ls-app {
  display: none;
}
.order_ls .item_dl {
  padding-left: 20px;
}
.order .bg_yellow {
  border: 1px solid #FFF7A8;
  padding: 16px;
  background: url(../images/order-app_bg.png) 0 0 #FFF7A8 repeat;
  background-size: 104px;
  border-radius: 20px;
}
.order .bg_yellow-inner {
  border: 1px solid #FFF7A8;
  padding: 16px;
  background-color: #FFF;
  border-radius: 20px;
}
.order .dl_title {
  margin: 0 auto 24px;
  overflow: hidden;
  text-indent: 200%;
  white-space: nowrap;
  width: 78.4vw;
  height: 22.4vw;
  background: url(../images/order-app_title-sp.png) 0 0 no-repeat;
  background-size: contain;
}
@media (min-width: 460px) {
  .order .dl_title {
    width: 360px;
    height: 103px;
  }
}
.order .dl_lead {
  margin-bottom: 12px;
  font-weight: 700;
  text-align: center;
}
.order .dl_lead span {
  white-space: nowrap;
}
.order .img_app-logo {
  margin: 0 auto 24px;
  max-width: 380px;
}
.order .img_app-ui {
  margin: 0 auto 24px;
  width: 56vw;
  max-width: 240px;
}
.order .img_app-regist {
  margin: 0 auto 12px;
  max-width: 340px;
}
.order .c-btn_secondary-default {
  margin: 0 auto;
  max-width: 320px;
  height: 44px;
  font-size: 1.4rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .order_ls-app {
    padding-top: 64px;
  }
  .order_ls .item_dl {
    margin-bottom: 19.2px;
  }
  .order .bg_yellow {
    padding: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
  }
  .order .bg_yellow::before {
    content: "";
    display: block;
    width: 210px;
    height: 423px;
    background: url(../images/order-app_ui.png) 0 0 no-repeat;
    background-size: 100%;
  }
  .order .bg_yellow-inner {
    padding: 24px;
  }
  .order .dl_title {
    margin: 0 auto 32px;
    width: 636.8px;
    height: 32px;
    background: url(../images/order-app_title-pc.png) 0 0 no-repeat;
    background-size: 100%;
  }
}
@media (min-width: 1024px) {
  .order_bg {
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 50px;
  }
  .order_ls-app {
    padding-top: 80px;
  }
  .order_ls .item_dl {
    margin-bottom: 24px;
    padding-left: 72px;
  }
  .order .bg_yellow {
    gap: 60px;
  }
  .order .bg_yellow::before {
    content: "";
    display: block;
    width: 210px;
    height: 423px;
    background: url(../images/order-app_ui.png) 0 0 no-repeat;
    background-size: 100%;
  }
  .order .bg_yellow-flex {
    width: 450px;
  }
  .order .dl_title {
    width: 796px;
    height: 40px;
  }
  .order .dl_lead {
    font-size: 1.8rem;
  }
  .order .img_app-logo {
    margin-bottom: 16px;
    max-width: 450px;
  }
  .order .img_app-regist {
    margin-bottom: 16px;
  }
  .order .c-btn_secondary-default {
    max-width: none;
    height: 64px;
    font-size: 1.6rem;
  }
}
.shopping {
  padding: 0 0 68px;
  background: url(../images/wave_bottom_sp.png) center bottom #FEE5E0 repeat-x;
  background-size: 394px 8px;
}
.shopping .container {
  position: relative;
}
.shopping .container .c-deco_strawberry {
  bottom: -24px;
  right: 8px;
  width: 53px;
  height: auto;
}
.shopping_ls {
  margin: 0 20px;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: var(--color-White, #FFF);
  border-radius: 30px;
}
.shopping_ls .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
@media (max-width: 767px) {
  .shopping_ls .item:not(:last-child)::after {
    content: "";
    display: block;
    width: 20px;
    height: 30px;
    background: url(../images/shopping_arrow.png) center bottom no-repeat;
    background-size: 100% auto;
  }
}
.shopping_ls .item_num {
  width: 110px;
  height: auto;
}
.shopping_ls .item_thumb {
  width: 136px;
  height: auto;
}
.shopping_ls .item_text {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 1.08px;
}

@media (min-width: 768px) {
  .shopping {
    padding: 0 0 96px;
    background: url(../images/wave_bottom_pc.png) center bottom #FEE5E0 repeat-x;
    background-size: 1152px 19px;
  }
  .shopping .container .c-deco_strawberry {
    bottom: -38px;
    right: auto;
    left: -20px;
    width: 80.8px;
  }
  .shopping_ls {
    margin: 0 auto;
    padding: 48px 24px;
    flex-direction: row;
  }
  .shopping_ls .item {
    position: relative;
    flex: 1;
  }
  .shopping_ls .item:not(:last-child)::after {
    content: "";
    display: block;
    position: absolute;
    right: -16px;
    top: 92px;
    width: 20px;
    height: 30px;
    background: url(../images/shopping_arrow.png) center bottom no-repeat;
    background-size: 100% auto;
    transform: rotate(-90deg);
  }
}
@media (min-width: 1024px) {
  .shopping {
    padding: 0 0 120px;
    background-size: 1440px 23px;
  }
  .shopping .container .c-deco_strawberry {
    bottom: -48px;
    left: -36px;
    width: 101px;
  }
  .shopping_ls .item {
    gap: 30px;
  }
  .shopping_ls .item:not(:last-child)::after {
    right: -16px;
    top: 112px;
  }
  .shopping_ls .item_text {
    font-size: 2rem;
  }
}
.faq .container {
  padding: 60px 0;
}
.faq .title_faq {
  margin-bottom: 40px;
  font-size: 2.8rem;
  text-align: center;
}
.faq .title_faq span {
  display: block;
  margin-bottom: 4px;
  font-size: 2rem;
  letter-spacing: 1.2px;
}
.faq_ls {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq_ls .item {
  border: 2px solid var(--color-Main, #B60081);
  border-radius: 20px;
}
.faq_ls .item.is-open .faq_ls-ans {
  display: flex;
  animation: 0.5s faqFadeIn;
}
.faq_ls .item.is-open .faq_ls-que::after {
  transform: rotate(180deg);
}
.faq_ls-que {
  background: transparent;
  border: none;
  padding: 0;
  appearance: none;
  cursor: pointer;
  outline: none;
  width: 100%;
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 18px 0 18px 22px;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-Black, #212121);
  line-height: 1.55;
}
.faq_ls-que:hover {
  opacity: 1;
}
.faq_ls-que span {
  flex: 1;
  text-align: left;
  min-height: 33px;
}
.faq_ls-que::before, .faq_ls-que::after {
  content: "";
  display: flex;
}
.faq_ls-que::before {
  width: 40px;
  background: url(../images/faq_ico-que.png) 0 0 no-repeat;
  background-size: 28px auto;
}
.faq_ls-que::after {
  justify-content: center;
  align-items: center;
  margin-left: 12px;
  width: 44px;
  background: url(../images/faq_arrow.png) center center no-repeat;
  background-size: 14px auto;
}
.faq_ls-ans {
  position: relative;
  display: none;
  flex-direction: column;
  gap: 8px;
  border-top: 2px solid var(--color-Main, #B60081);
  padding: 24px 24px 24px 62px;
}
.faq_ls-ans::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 22px;
  display: block;
  width: 28px;
  height: 33px;
  background: url(../images/faq_ico-ans.png) 0 0 no-repeat;
  background-size: 28px auto;
}
.faq_ls-ans .ans_text {
  font-size: 1.6rem;
}
.faq_ls-ans .ans_note {
  font-size: 1.2rem;
  color: var(--color-Gray, #545454);
}
.faq_ls-ans .receive_def {
  display: flex;
  flex-direction: column;
}
.faq_ls-ans .receive_def-tit {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.faq_ls-ans .receive_def-tit span {
  flex: 1;
}
.faq_ls-ans .receive_def-tit::before {
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100%;
}
.faq_ls-ans .receive_def-tit:nth-of-type(1)::before {
  background-image: url(../images/icon_how_to_receive-home.png);
}
.faq_ls-ans .receive_def-tit:nth-of-type(2)::before {
  background-image: url(../images/icon_how_to_receive-counter.png);
}
.faq_ls-ans .receive_def-tit:nth-of-type(3)::before {
  background-image: url(../images/icon_how_to_receive-drive.png);
}
.faq_ls-ans .receive_def-tit:nth-of-type(4)::before {
  background-image: url(../images/icon_how_to_receive-locker.png);
}
.faq_ls-ans .receive_def-tit:nth-of-type(5)::before {
  background-image: url(../images/icon_how_to_receive-harbor.png);
}
.faq_ls-ans .receive_def-data {
  border-bottom: 1px solid var(--color-Line-gray, #E6E6E6);
  padding-bottom: 16px;
  margin-bottom: 16px;
}
.faq_ls-ans .receive_def-data span.note {
  display: block;
  margin-top: 0.2em;
  font-size: 1.2rem;
  color: var(--color-Gray, #545454);
}

@media (min-width: 768px) {
  .faq .container {
    padding: 96px 0;
  }
  .faq .title_faq {
    margin-bottom: 48px;
    font-size: 3.2rem;
  }
  .faq .title_faq span {
    display: block;
    margin-bottom: 8px;
    font-size: 2.24rem;
  }
  .faq_ls-que {
    padding: 20px 0 20px 22px;
    font-size: 2rem;
  }
  .faq_ls-que::before {
    width: 46px;
  }
  .faq_ls-ans {
    padding: 24px 24px 24px 68px;
  }
  .faq_ls-ans .ans_text {
    font-size: 1.8rem;
  }
  .faq_ls-ans .ans_note {
    font-size: 1.6rem;
  }
  .faq_ls-ans .receive_def {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .faq_ls-ans .receive_def-tit {
    margin-bottom: 0;
    width: 40%;
  }
  .faq_ls-ans .receive_def-tit span {
    padding-right: 10%;
  }
  .faq_ls-ans .receive_def-tit, .faq_ls-ans .receive_def-data {
    border-bottom: 1px solid var(--color-Line-gray, #E6E6E6);
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
  .faq_ls-ans .receive_def-data {
    width: 60%;
    display: flex;
    align-items: center;
  }
  .faq_ls-ans .receive_def-data span.note {
    font-size: 1.4rem;
  }
}
@media (min-width: 1024px) {
  .faq .title_faq {
    font-size: 4rem;
  }
  .faq .title_faq span {
    display: block;
    font-size: 2.8rem;
  }
  .faq_ls-ans .receive_def-tit {
    width: 305px;
  }
  .faq_ls-ans .receive_def-data {
    width: calc(100% - 305px);
  }
}
@keyframes faqFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-3px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.notes {
  padding: 60px 0;
  background-color: var(--color-Bg_Gray, #F5F5F7);
}
.notes_wrapper {
  border: 2px dashed var(--color-Black, #212121);
  border-radius: 20px;
  padding: 40px 20px 16px;
  background-color: var(--color-White, #FFF);
}
.notes .title_notes {
  margin-bottom: 24px;
  font-size: 3rem;
  text-align: center;
}
.notes_tit {
  display: flex;
  margin-bottom: 6px;
  font-size: 1.6rem;
  line-height: 1.62;
}
.notes_tit::before {
  margin-right: 4px;
  content: "●";
  font-size: 1.6rem;
  line-height: 1.62;
}
.notes_text {
  margin-bottom: 24px;
  padding-left: 1.2em;
  line-height: 1.75;
  letter-spacing: 0.96px;
}

@media (min-width: 768px) {
  .notes {
    padding: 64px 0;
  }
  .notes_wrapper {
    border: 2.4px dashed var(--color-Black, #212121);
    border-radius: 40px;
    padding: 48px 48px 28.8px;
  }
  .notes .title_notes {
    margin-bottom: 32px;
    font-size: 3.2rem;
  }
}
@media (min-width: 1024px) {
  .notes {
    padding: 80px 0;
  }
  .notes_wrapper {
    border: 3px dashed var(--color-Black, #212121);
    border-radius: 50px;
    padding: 60px 80px 36px;
  }
  .notes .title_notes {
    margin-bottom: 40px;
    font-size: 4rem;
  }
}
/* img */
img.img {
  display: block;
  width: 100%;
  height: auto;
}

.visible-sp,
.visible-tb,
.visible-pc,
.visible-wide,
.visible-sp-up,
.visible-tb-up,
.visible-pc-up,
.visible-wide-up,
.visible-flex-sp,
.visible-flex-tb,
.visible-flex-pc,
.visible-flex-wide,
.visible-flex-sp-up,
.visible-flex-tb-up,
.visible-flex-pc-up,
.visible-flex-wide-up {
  display: none !important;
}

/* =======================
 * SPのみ表示（〜767）
 * ======================= */
@media (max-width: 767px) {
  .visible-sp {
    display: block !important;
  }
  .visible-flex-sp {
    display: flex !important;
  }
  .hidden-sp {
    display: none !important;
  }
  .visible-sp-up {
    display: block !important;
  }
  .visible-flex-sp-up {
    display: flex !important;
  }
  .hidden-sp-up {
    display: none !important;
  }
}
/* =======================
 * TBのみ表示（768〜1023）
 * ======================= */
@media (min-width: 768px) and (max-width: 1023px) {
  .visible-tb {
    display: block !important;
  }
  .visible-flex-tb {
    display: flex !important;
  }
  .hidden-tb {
    display: none !important;
  }
}
/* =======================
 * TB以上表示（768〜）
 * ======================= */
@media (min-width: 768px) {
  .visible-tb-up {
    display: block !important;
  }
  .visible-flex-tb-up {
    display: flex !important;
  }
  .hidden-tb-up {
    display: none !important;
  }
}
/* =======================
 * PCのみ表示（1024〜1439）
 * ======================= */
@media (min-width: 1024px) and (max-width: 1439px) {
  .visible-pc {
    display: block !important;
  }
  .visible-flex-pc {
    display: flex !important;
  }
  .hidden-pc {
    display: none !important;
  }
}
/* =======================
 * PC以上表示（1024〜）※PC + WIDE
 * ======================= */
@media (min-width: 1024px) {
  .visible-pc-up {
    display: block !important;
  }
  .visible-flex-pc-up {
    display: flex !important;
  }
  .hidden-pc-up {
    display: none !important;
  }
}
/* =======================
 * WIDEのみ表示（1440〜）
 * ======================= */
@media (min-width: 1440px) {
  .visible-wide {
    display: block !important;
  }
  .visible-flex-wide {
    display: flex !important;
  }
  .hidden-wide {
    display: none !important;
  }
}
/* =======================
 * WIDE以上表示（1440〜）※事実上 WIDEのみ
 * ======================= */
@media (min-width: 1440px) {
  .visible-wide-up {
    display: block !important;
  }
  .visible-flex-wide-up {
    display: flex !important;
  }
  .hidden-wide-up {
    display: none !important;
  }
}

/*# sourceMappingURL=style.css.map */