@charset "UTF-8";

/* common css
======================================================================================== */
object {
  max-width: 100%;
  height: 100%;
}

/* page - top
========================================================================================
======================================================================================== */
/* MV Slider
============================================ */
.p-mvslider {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 2000px;
  margin: 0 auto;
}
.p-mvslider.is-load {
  visibility: visible;
  opacity: 1;
}

.p-mvslider__inner {
  display: block;
  width: 100%;
  max-width: 1200px;
  padding-top: clamp(0px, 100vw * (50/1200), 50px);
  padding-bottom: clamp(0px, 2.5vw, 30px);
  margin: 0 auto;
}
.p-mvslider__inner.-title {
  padding: 0;
  /* margin-bottom: clamp(0px, 1.6666666667vw, 20px); */
  max-width: 100%;
}
.p-mvslider__title {
  text-align: center;
}
.p-mvslider__titleText {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.p-mvslider__titleLogo {
  display: block;
  /* width: calc((100% - 96px) / 3); */
  width: 100%;
  max-width: 696px;
  margin: 0 auto;
}

.p-mvslider__swiper {
  position: relative;
  z-index: 1;
  padding: 0;
  /* margin-top: clamp(0px, 2.5vw, 30px); */
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
  list-style: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.p-mvslider__swiperWrap {
  position: relative;
  z-index: 1;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.p-mvslider__swiperItem {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border: solid 4px #c60c35;
  -webkit-transition: scale 0.75s;
  transition: scale 0.75s;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.p-mvslider__swiperItemBody {
  position: relative;
  overflow: hidden;
}
.p-mvslider__swiperName {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 10px;
  line-height: 1.5;
  color: #fff;
  background-color: #c60c35;
}
.p-mvslider__swiperName > .-main,
.p-mvslider__swiperName > .-sub {
  display: inline-block;
  line-height: 1.3;
}
.p-mvslider__swiperName > .-sub {
  font-size: 14px;
  font-weight: normal;
}
.p-mvslider__swiperName > .-main {
  position: relative;
  font-size: 16px;
  font-weight: bold;
}
.p-mvslider__swiperName > .-main::after {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 1.3539810494px;
  content: "";
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.p-mvslider__swiperPagination {
  display: none;
}

.p-mvslider .swiper-pagination-bullets {
  bottom: 0;
  left: 0;
  -webkit-transform: none;
  transform: none;
}
.p-mvslider .swiper-pagination-bullet {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: auto;
  height: auto;
  margin: 0 8px;
  cursor: pointer;
  background-color: transparent;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-mvslider .swiper-pagination-bullet span {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #c60c35;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.p-mvslider .swiper-pagination-bullet svg {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.p-mvslider .swiper-pagination-bullet circle {
  fill: #fff;
  stroke: #c60c35;
  stroke-dasharray: 125.664px;
  stroke-dashoffset: 125.664px;
  stroke-linecap: round;
  stroke-width: 2;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.p-mvslider .swiper-pagination-bullet-active span {
  color: #fff;
}
.p-mvslider .swiper-pagination-bullet-active circle {
  fill: #c60c35;
  stroke: #fff;
  -webkit-animation: progress 5s;
  animation: progress 5s;
}

@-webkit-keyframes progress {
  0% {
    stroke-dashoffset: 125.664px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes progress {
  0% {
    stroke-dashoffset: 125.664px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@media screen and (min-width: 769px) {
  .p-mvslider {
    padding: 0 30px;
  }
  .p-mvslider__titleLogo img {
    max-width: 696px;
    width: 100%;
  }
  .p-mvslider__swiperWrap {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
    -ms-grid-columns: 1fr 48px 1fr 48px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
  }
  .p-mvslider__swiperWrap > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .p-mvslider__swiperWrap > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .p-mvslider__swiperWrap > *:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }
  .p-mvslider__swiperItem img:hover {
    opacity: 0.7;
  }

  .p-mvslider.-bg-pc,
  .p-mvslider .-bg-pc {
    background: no-repeat top center/2000px 1300px url("/include/shopping/gift/wintergift/2025/top/image/002_titlebnr_251010_pc.png");
  }
}
@media screen and (max-width: 768px) {
  .p-mvslider {
    visibility: hidden;
    opacity: 0;
  }
  .p-mvslider__inner {
    padding-top: calc(30 * 100vw / 375);
  }
  .p-mvslider__title {
    padding-right: 0px;
    padding-left: 0px;
  }
  .p-mvslider__titleLogo {
    width: calc(100% * 195 / 375);
  }
  .p-mvslider__titleLogo img {
    width: auto;
  }
  .p-mvslider__swiper {
    margin-top: calc(15 * 100vw / 375);
  }
  .p-mvslider__swiperName {
    font-size: clamp(12px, 8.6667px + 1.11vw, 14px);
  }
  .p-mvslider__swiperPagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 2.5vw;
  }

  .p-mvslider__swiperBottom {
    margin-right: -32px;
  }

  .p-mvslider__swiperBtn {
    background-color: #c60c35;
  }

  .p-mvslider.-bg-sp,
  .p-mvslider .-bg-sp {
    background: no-repeat top center/100% auto url("/include/shopping/gift/wintergift/2025/top/image/002_titlebnr_251003_2_sp.png");
    /* background-position: top center;
    background-size: 100% auto; */
    background-color: #FFF5E0;
  }
}
@media screen and (max-width: 640px) {
  .p-mvslider__inner {
    /* padding-top: clamp(0px, 100vw * (25/375), 25px); */
    padding-bottom: 4vw;
  }
  .p-mvslider__inner.-title {
    padding: 0;
    /* margin-bottom: clamp(0px, 2.6666666667vw, 20px); */
  }
  /* .p-mvslider__swiper {
    margin-top: 4vw;
  } */
  .p-mvslider__swiperPagination {
    margin-top: 4vw;
  }
  .p-mvslider__titleLogo {
    /* width: calc((100% - 8px) / 1.4); */
  }
}
/* l-block */
.p-mvslider + .l-block:not(.mc-bgc__base) {
  padding-top: 0;
}

@media screen and (min-width: 769px) {
  .p-mvslider:not(.-bg-pc) + .l-block:not(.mc-bgc__base) {
    padding-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-mvslider:not(.-bg-sp) + .l-block:not(.mc-bgc__base) {
    padding-top: 0;
  }
}
/* title */
.p-mvTitle {
  display: block;
  border: solid 0 #c60c35;
  border-top-width: 1px;
  border-bottom-width: 1px;
  width: calc(100% + (30px * 2));
  margin-left: -30px;
}
.p-mvTitle__inner {
  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;
}
.p-mvTitle__inner > .-deco,
.p-mvTitle__inner > .-logo {
  text-align: center;
}
.p-mvTitle__inner > .-deco img,
.p-mvTitle__inner > .-logo img {
  display: inline-block;
}
.p-mvTitle__inner > .-deco {
  width: clamp(0px, 28.3333333333%, 340px);
}
.p-mvTitle__inner > .-logo {
  width: clamp(0px, 71.6666666667% - 20px, 840px);
  margin-left: 20px;
}

@media screen and (max-width: 768px) {
  .p-mvTitle {
    width: 100%;
    margin-left: 0;
  }
  .p-mvTitle__inner > .-deco {
    width: clamp(0px, 46.6666666667%, 350px);
  }
  .p-mvTitle__inner > .-logo {
    width: clamp(0px, 53.3333333333% - 10px, 390px);
    padding-right: 10px;
    margin-left: 10px;
  }
}

/* mv banner */
.p-mvBnrblock {
  max-width: 2000px;
  /* width: calc(100% + 60px); */
  padding: 20px 0px;
  margin: 0 auto;
}
.p-mvBnrblock__inner {
  text-align: center;
}
.p-mvBnrblock__inner img {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .p-mvBnrblock {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* MV text block
============================================ */
@media screen and (min-width: 769px) {
  .p-mvslider.-bg-pc .p-mvTextblock,
  .p-mvslider .-bg-pc .p-mvTextblock {
    padding-top: 0;
    padding-right: 0;
    padding-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-mvslider.-bg-sp .p-mvTextblock,
  .p-mvslider .-bg-sp .p-mvTextblock {
    padding-top: 0;
  }
}

/* category
============================================ */
/* overwrite */
.c-categoryNormalbox__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  min-height: 100%;
  border: 2px solid #cb3346;
}

.c-categoryNormalbox__name {
  color: #FFFFFF;
  background-color: #cb3346;
}

@media screen and (max-width: 768px) {
  .c-categoryNormalbox__name {
    font-size: 16px;
    padding: 6px 10px;
    /* add */
    /* font-size*2*line-height + padding-top+padding-bottom  */
    min-height: calc(2.6em + 4px);
  }
}
/* /overwrite */
/* .c-categoryNormalbox__name.mc-categoryIconText {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .c-categoryNormalbox__name.mc-categoryIconText {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
} */

.mc-categoryIconText {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mc-categoryIconText__txt {
  line-height: 1.6;
}
.mc-categoryIconText__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding: 3px 4px;
  margin-right: 10px;
  border-radius: 3px;
  background-color: #FFFFFF;
  color: #313131;
  font-size: 14px;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .mc-categoryIconText__icon {
    margin-right: 0px;
  }
}
.mc-categoryIconText__icon.-feature {
  color: #A83218;
}

.mc-categoryIconText__icon::before {
  display: block;
  content: "";
  margin-right: 5px;
  height: 14px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

/* .mc-categoryIconText__icon.-feature::before {
  aspect-ratio: 26/26;
  background-image: url(/include/shopping/gift/kekkoniwai/image/icon_rank_star.png);
} */

.mc-categoryIconText__icon.-first::before {
  aspect-ratio: 44/28;
  background-image: url(/include/shopping/gift/kekkoniwai/image/icon_rank_no1.png);
}

.mc-categoryIconText__icon.-second::before {
  aspect-ratio: 44/28;
  background-image: url(/include/shopping/gift/kekkoniwai/image/icon_rank_no2.png);
}

.mc-categoryIconText__icon.-third::before {
  aspect-ratio: 44/28;
  background-image: url(/include/shopping/gift/kekkoniwai/image/icon_rank_no3.png);
}

.mc-categoryLabel__inner {
  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;
  height: 100%;
}

.mc-categoryLabel__img {
  display: block;
  width: auto;
  min-width: 1em;
  height: 1em;
  margin-right: 10px;
}

@media screen and (max-width: 400px) {
  .mc-categoryLabel__img {
    margin-right: 4px;
  }
}
.mc-categoryLabel__text {
  font-size: clamp(16px, 2.4vw, 19px);
  font-weight: bold;
  color: #464C4D;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .mc-categoryLabel__text {
    font-size: clamp(0.875rem, 0.7391rem + 0.5435vw, 1rem);
  }
}
.-no1.mc-categoryLabel__label .mc-categoryLabel__img {
  -webkit-filter: invert(85%) sepia(47%) saturate(476%) hue-rotate(357deg) brightness(104%) contrast(105%);
  filter: invert(85%) sepia(47%) saturate(476%) hue-rotate(357deg) brightness(104%) contrast(105%);
  /* アイコンの色 */
}

.-no2.mc-categoryLabel__label .mc-categoryLabel__img {
  -webkit-filter: invert(98%) sepia(1%) saturate(7465%) hue-rotate(195deg) brightness(122%) contrast(76%);
  filter: invert(98%) sepia(1%) saturate(7465%) hue-rotate(195deg) brightness(122%) contrast(76%);
  /* アイコンの色 */
}

.-no3.mc-categoryLabel__label .mc-categoryLabel__img {
  -webkit-filter: invert(76%) sepia(71%) saturate(613%) hue-rotate(304deg) brightness(98%) contrast(94%);
  filter: invert(76%) sepia(71%) saturate(613%) hue-rotate(304deg) brightness(98%) contrast(94%);
  /* アイコンの色 */
}






/* word Ranking
============================================ */
/* タイトル */
@media screen and (min-width: 769px) {
  .p-ranking#anchor_ranking {
    padding: 30px 5px;
  }
}
@media screen and (max-width: 768px) {
  .p-ranking#anchor_ranking {
    padding: 30px;
  }
}
@media screen and (max-width: 430px) {
  .p-ranking#anchor_ranking {
    padding: 30px 10px;
  }
}
.p-ranking__title{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: fit-content;
}
.p-ranking__title::after,
.p-ranking__title::before{
  position: absolute;
  display: block;
  width: 50px;
  height: 100%;
  top: 0;
  background-size: contain;
  background-repeat: no-repeat;
}
.p-ranking__title::after{
  content: "";
  background-image: url(/include/shopping/gift/summergift/2025/top/image/001_top_ranking_a.svg);
  right: -75px;
}
.p-ranking__title::before{
  content: "";
  background-image: url(/include/shopping/gift/summergift/2025/top/image/001_top_ranking_b.svg);
  left: -60px;
}
@media screen and (max-width: 500px) {
  .p-ranking__title::after,
  .p-ranking__title::before{
    width: 30px;
  }
  .p-ranking__title::after{
    right: -40px;
  }
  .p-ranking__title::before{
    left: -40px;
  }
}
.p-ranking__title .-main {
  text-align: center;
  font-size: 28px;
  line-height: 1.3;
}
.p-ranking__title .-sub {
  font-size: 16px;
  font-weight: normal;
  line-height: 1.3;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .p-ranking__title .-main {
    font-size: 18px;
  }
  .p-ranking__title .-sub {
    font-size: 12px;
  }
}
/*--- ランキング ---*/
.p-ranking__area {
  max-width: 785px;
  width: 100%;
  margin: 30px auto 0;
}
/* 共通 */
.p-ranking__item{
  width: fit-content;
  padding: 4px 16px;
  background-color: #ffffff;
  color: #313131;
  border-radius: 5px;
  display: flex;
  justify-content: center;
}
.p-ranking__tag {
  font-size: 14px;
  line-height: 1.6;
  display: block;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
/*--- TOP3 ---*/
.p-ranking__wrap.-top ul {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-ranking__wrap.-top ul {
    flex-direction: column;
    gap: 10px;
  }
}
.p-ranking__item.-top{
  width: calc((100% - 40px) / 3);
  position: relative;
  padding: 20px 16px;
}
@media screen and (max-width:768px) {
  .p-ranking__item.-top{
    width: 100%;
    padding: 15px;
    margin: 0 10vw;
    max-width: 465px;
  }
}
@media screen and (max-width: 450px) {
  .p-ranking__item.-top{
    max-width: 270px;
  }
}
@media screen and (max-width: 428px) {
  .p-ranking__item.-top{
    padding: 15px 0;
  }
}
.p-ranking__item.-top .p-ranking__tag{
  font-weight: bold;
  font-size: 16px;
  text-align: left;
  margin-left: 40px;
}
.p-ranking__item.-top::before{
  content: "";
  position: absolute;
  top: 65%;
  left: 5px;
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  max-width: 40px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .p-ranking__item.-top::before{
    top: 55%;
    left: 10px;
  }
  .p-ranking__item.-top .p-ranking__tag{
    margin-left: 55px;
  }
}
/* メダル */
.p-ranking__item.-no1::before{
  background-image: url(/include/shopping/gift/summergift/2025/top/image/001_top_ranking_no1.svg)
}
.p-ranking__item.-no2::before{
  background-image: url(/include/shopping/gift/summergift/2025/top/image/001_top_ranking_no2.svg)
}
.p-ranking__item.-no3::before{
  background-image: url(/include/shopping/gift/summergift/2025/top/image/001_top_ranking_no3.svg)
}
/*--- 4~15位 ---*/
.p-ranking__wrap.-bottom {
  width: 100%;
  margin: 20px auto 0;
}
.p-ranking__wrap.-bottom ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-ranking__wrap.-bottom{
    margin: 25px auto 0;
  }
  .p-ranking__wrap.-bottom ul {
    gap: 10px;
  }
}
/* aタグがないときにliを非表示 */
.p-ranking__item:not(:has(.p-ranking__tag)){
  display: none;
}

/* カテゴリランキング（カルーセル）背景色変更 */
.l-block[data-value="MOD_JP_00078"] {
  background-color: #f0eadb;
}
@media screen and (max-width: 768px) {
  .c-productslider--ranking {
    background-color: #ffffff;
  }
}



/* giftserviceSplit
============================================ */
.p-catalog__img {
  width: 100%;
  margin: 0 auto;
  max-width: 450px;
  text-align: center;
}
.p-giftserviceSplit {
  display: box;
  display: flexbox;
  display: flex;
}

@media screen and (min-width: 769px) {
  .p-giftserviceSplit {
    margin: 0 40px;
  }

  .-deliverylist.p-giftserviceSplit {
    gap: 0 30px;
  }

  .-deliverylist.p-giftserviceSplit .p-giftserviceSplit__img {
    width: 150px;
  }

  .-deliverylist.p-giftserviceSplit .p-giftserviceSplit__img img {
    width: 100%;
  }

  .-deliverylist.p-giftserviceSplit .p-giftserviceSplit__txts {
    width: calc((100% - (30px * 2) - 150px) * (538 / (538 + 384)));
    max-width: 538px;
  }

  .-deliverylist.p-giftserviceSplit .p-giftserviceSplit__btns {
    width: calc((100% - (30px * 2) - 150px) * (384 / (538 + 384)));
    max-width: 384px;
  }

  .-deliverylist.p-btncolumn {
    height: 100%;
  }

  .-deliverylist.p-btncolumn .l-btncolumn__lists {
    align-items: flex-end;
    height: calc(100% + 16px);

    -webkit-box-align: end;
    -ms-flex-align: end;
  }

  .-catalogSearch.p-giftserviceSplit {
    justify-content: center;
    align-items: center;

    -webkit-box-align: center;
    -webkit-box-pack: center;
    -ms-flex-align: center;
    -ms-flex-pack: center;
    gap: 0 40px;
  }

  .-catalogSearch.p-giftserviceSplit .p-giftserviceSplit__img {
    width: calc((100% - 40px) * (382 / (382 + 470)));
    max-width: 382px;
  }

  .-catalogSearch.p-giftserviceSplit .p-giftserviceSplit__btns {
    width: calc((100% - 40px) * (470 / (382 + 470)));
    max-width: 470px;
  }

  .-catalogRequest.p-giftserviceSplit {
    justify-content: center;
    align-items: center;

    -webkit-box-align: center;
    -webkit-box-pack: center;
    -ms-flex-align: center;
    -ms-flex-pack: center;
    gap: 0 40px;
  }

  .-catalogRequest.p-giftserviceSplit .p-giftserviceSplit__img {
    width: calc((100% - 40px) * (290 / (290 + 790)));
    max-width: 290px;
  }
  
  .-catalogRequest.p-giftserviceSplit .p-giftserviceSplit__btns {
    width: calc((100% - 40px) * (790 / (290 + 790)));
    max-width: 790px;
  }

  .-orderFlow.p-giftserviceSplit {
    justify-content: center;
    align-items: center;

    -webkit-box-align: center;
    -webkit-box-pack: center;
    -ms-flex-align: center;
    -ms-flex-pack: center;
    gap: 0 35px;
  }

  .-orderFlow.p-giftserviceSplit .p-giftserviceSplit__img {
    width: calc((100% - 35px) * (600 / (600 + 470)));
    max-width: 600px;
  }

  .-orderFlow.p-giftserviceSplit .p-giftserviceSplit__btns {
    width: calc((100% - 35px) * (470 / (600 + 470)));
    max-width: 470px;
  }
}
@media screen and (max-width: 768px) {
  .p-giftserviceSplit {
    flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .-deliverylist .p-giftserviceSplit__img {
    width: 100px;
    text-align: center;
  }

  .-deliverylist .p-giftserviceSplit__img img {
    width: 100%;
    text-align: center;
  }

  .-deliverylist .p-giftserviceSplit__txts {
    width: calc(100% - 100px);
    padding-left: 16px;
  }

  .-deliverylist .p-giftserviceSplit__btns {
    width: 100%;
    padding-top: 26px;
  }

  .-catalogSearch.p-giftserviceSplit {
    justify-content: center;
    align-items: center;

    -webkit-box-align: center;
    -webkit-box-pack: center;
    -ms-flex-align: center;
    -ms-flex-pack: center;
    gap: 30px 0;
  }

  .-catalogSearch.p-giftserviceSplit .p-giftserviceSplit__img {
    width: 75%;
    min-width: 250px;
    text-align: center;
  }

  .-catalogSearch.p-giftserviceSplit .p-giftserviceSplit__btns {
    width: 100%;
  }

  .-catalogRequest.p-giftserviceSplit {
    justify-content: center;
    align-items: center;

    -webkit-box-align: center;
    -webkit-box-pack: center;
    -ms-flex-align: center;
    -ms-flex-pack: center;
    gap: 15px;
    flex-direction: column;
  }

  .-catalogRequest.p-giftserviceSplit .p-giftserviceSplit__img {
    width: calc((100% - 17.5px) * (232 / (232 + 403)));
    text-align: center;
  }

  .-orderFlow.p-giftserviceSplit {
    justify-content: center;
    align-items: center;

    -webkit-box-align: center;
    -webkit-box-pack: center;
    -ms-flex-align: center;
    -ms-flex-pack: center;
    gap: 30px 0;
  }

  .-orderFlow.p-giftserviceSplit .p-giftserviceSplit__img {
    width: 100%;
    text-align: center;
  }

  .-orderFlow.p-giftserviceSplit .p-giftserviceSplit__btns {
    width: 100%;
  }
}
/* accordion
============================================ */
.c-accordion .c-accordion__title {
  color: #ffffff;
  text-align: center;
}

.c-accordion .c-accordion__icon::before {
  background-color: #ffffff;
}

.c-accordion .c-accordion__icon::after {
  background-color: #ffffff;
}

.c-accordion.p-accordion.-white .c-accordion__title {
  background-color: #fff;
  color: #000;
  text-align: center;
}

.c-accordion.p-accordion.-white .c-accordion__icon::before {
  background-color: #313131;
}

.c-accordion.p-accordion.-white .c-accordion__icon::after {
  background-color: #313131;
}

@media screen and (min-width: 769px) {
  .c-accordion[data-accordion="sp"] .c-accordion__title {
    display: none !important;
  }

  .c-accordion[data-accordion="sp"] .c-accordion__cont {
    display: block !important;
    padding: 0 !important;
  }
}
@media screen and (min-width: 769px) {
  .c-accordion.p-accordion .c-accordion__cont {
    padding: 30px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .c-accordion.p-accordion .c-accordion__cont {
    padding: 30px 10px 0;
  }
}