[data-browse-mode="S"] body,
[data-browse-mode="S"] .wrapper_ {
  height: 0;
}

#gift_occasion {
  background-color: #000;
  overflow-x: hidden;
  position: relative;
  z-index: -2;

  /* display: grid; */
  place-items: center;
  min-height: 100vh;

  p {
    font-size: 2rem;
  }

  .gallery {
    width: 100vw;
    padding-top: 40px;

    @media screen and (max-width: 959px) {
      padding-top: 0;
      margin-top: -90px;
    }
  }

  .gallery-pc {
    position: relative;
    height: 100vh;
    z-index: -1;
  }

  .gallery__movie {
    width: 50vw;
    height: auto;
  }

  .gallery__list {
    display: flex;
    justify-content: center;
    gap: 5px;
    width: 100%;

    @media screen and (min-width: 960px) {
      align-items: center;
    }
  }

  .gallery__list-pc {
    position: fixed;
  }

  .gallery__column-gift {
    display: flex;
    flex-direction: column;
    gap: 5px;

    @media screen and (min-width: 960px) {
      width: 350px;
    }
  }

  .gallery__column-gift:nth-child(2) {
    @media screen and (max-width: 959px) {
      padding-top: 50px;
    }
  }


  .ttl {
    padding-top: 200px;
    margin-top: 400px;
    text-align: center;

    @media screen and (max-width: 959px) {
      padding-top: 100px;
      margin-top: 0;
      font-size: 50px;
      line-height: 50px;
    }
  }

  @media screen and (max-width: 959px) {
    .ttl img {
      width: 80vw;
    }
  }

  .sec-bgc-black {
    width: 100%;
    height: 100%;
    position: relative;
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.7) 25%,
        black 50%);
  }

  .sec-bgc-black-sp {
    z-index: 1;
    width: 100%; 
    height: 100%; 
    position: relative; 
    background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.9) 18%,
      black 50%
    );
    bottom: 0;
    background-position: bottom;
    padding-bottom: 60px;
  }

  .intro {
    color: white;
    font-size: 16px;
    font-family: "Roboto", YuGothic, "Yu Gothic Medium", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Droid Sans", sans-serif;
    line-height: 1.9;
    letter-spacing: 0.80px;
    margin-top: 60px;
    text-align: center;
  }
  @media screen and (max-width: 959px) {
    .intro {
      margin-top: 40px;
      font-size: 12px;
      padding-bottom: 20px;
    }
    }

  .movie-modal-button {
    margin-top: 40px;
    color: #fff;
    border: solid 1px #fff;
    padding: 18px;
    font-size: 12px;
    font-family: "optima", serif;
    letter-spacing: 1.20px;
    line-height: 1;
  }
  @media screen and (max-width: 959px) {
      .movie-modal-button {
        margin: 0 auto 80px;
        display: flex;
        justify-content: center;
      }
    }
  .movie-modal-button .button_arrow {
    right: 30px;
    position: absolute;
    transition: transform 0.5s ease;
    @media screen and (max-width: 959px) {
        right: 20px;
    }
  }
  .movie-modal-button:hover {
      opacity: 0.7;
      transition: 0.7s;
  }

  /* ===============================================
# modal_movie
=============================================== */

.modal_movie {
  position: fixed;
  z-index: 500;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all ease .4s;
          transition: all ease .4s;
  pointer-events: none;
  opacity: 0;
}

.modal_movie.is-active {
  pointer-events: initial;
  opacity: 1;
}

.modal_movie .mov {
  position: absolute;
  z-index: 501;
  top: 50%;
  left: 50%;
  height: 80vh;
  /* ↓261113変更箇所 */
  aspect-ratio: 9 / 16;
  /* max-width: 870px; */
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
/* ↓261113変更箇所 */
@media screen and (max-width: 959px) {
      .modal_movie .mov {
        width: 60%;
        height: auto;
      }
    }

.modal_movie .mov .close_modal {
  position: absolute;
  top: -3rem;
  right: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
          justify-content: center;
}

.modal_movie .mov .close_modal img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.modal_movie .mov .youtube {
  position: relative;
  height: 0;
  padding-top: 56.25%;
  width: 100%;
  height: 100%;
}

.modal_movie .mov .youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal_movie .overlay {
  position: fixed;
  z-index: 500;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .9);
}


 .fv-box {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 10px;
    background: transparent;
  }

  .scroll-box {
    position: relative;
    bottom: -70%;
    left: -14px;
    z-index: 1;
  }

  .scroll-text {
    margin-top: 10px;
    left: 30px;
    bottom: -23px;
    position: relative;
  }

  .scroll-line {
    display: block;
    position: relative;
    height: 82px;
  }

  .scroll-line::after {
    background-color: #fff;
    content: '';
    display: block;
    height: 60px;
    width: 1px;
    position: absolute;
    left: 34px;
    bottom: -12px;
    animation: scroll-down 2.3s infinite;
    -webkit-animation: scroll-down 2.3s infinite;
  }

  .anchor-list {
    padding: 100px 0;
    display: flex;
    justify-content: center;
    gap: 6px;

    @media screen and (max-width: 959px) {
      padding: 38px 0 72px;
      width: 100%;
    }
  }

  .anchor-list-line-2_2 {
    padding: 100px 0;
    display: flex;
    justify-content: center;
    gap: 6px;

    @media screen and (max-width: 959px) {
      padding: 38px 0 72px;
      width: 100%;
      flex-wrap: wrap;
    }
  }
  .anchor-btn {
    width: 220px;
    height: 80px;
    background-color: #fff;
    display: table;

    @media screen and (max-width: 959px) {
     width: 45%;
     height: 68px; 
    }
  }


  .anchor-list-line-2_2 .anchor-btn {
    width: 220px;
    height: 80px;
    background-color: #fff;
    display: table;

    @media screen and (max-width: 959px) {
      width: calc(50% - 3px);
      height: 68px;
    }
  }

  .anchor-link {
    color: #000;
    display: block;
    padding-top: 10px;
    height: 100%;
    font-size: 18px;
    line-height: 1.2;
    display: table-cell;
    vertical-align: middle;
    font-family: "roboto", serif;
    text-align: center;

    @media screen and (max-width: 959px) {
      padding-top: 0;
      font-size: 16px;
    }
  }

  .anchor-link::after {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    margin: 8px auto;
    border: 1px solid;
    border-color: #000 #000 transparent transparent;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);

    @media screen and (max-width: 959px) {
      margin: 3px auto;
    }
    }

  /* GIFT WRAPPING */
  .gift-wrapping {
    background-image: url(/img/event/gift2/bg_paper.jpg);
    /* background-image: url(../../../../src/images/bg_paper.jpg); */
    width: 100%;
    background-size: contain;
    background-position: top center;
    background-attachment: fixed;
  }

  .ttl-gift-wrapping {
    padding-top: 112px;
    color: var(--Color-Text-Black, black);
    font-size: 57px;
    font-family: "optima", serif;
    font-weight: 400;
    line-height: 57px;
    text-align: center;

    @media screen and (max-width: 959px) {
      padding-top: 72px;
      font-size: 50px;
      line-height: 50px;
    }

  }

  .txt-gift-wrapping {
    color: var(--Color-Text-Black, black);
    font-size: 14px;
    font-family: "Roboto", YuGothic, "Yu Gothic Medium", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Droid Sans", sans-serif;
    margin: 35px 0 76px;
    line-height: 1.6;
    text-align: center;
    padding: 0 20px;

    @media screen and (max-width: 959px) {
      margin: 35px 0 0;
    }
  }

  /* swiper */
  .topToics_swiper {
    position: relative;
    margin: 107px 0 96px;

    @media screen and (max-width: 959px) {
      margin: 48px 0 72px;
    }
  }

  .swiper-wrapper-list {
    /* position: absolute;
    left: 70%; */
  }

  .topToics_content-scroll {
    position: absolute;
    width: 35%;
    height: 140%;
    top: -10px;
    left: 0;
    padding: 6%;
    margin-top: -5%;
    z-index: 2;
    background-image: url(/img/event/gift2/bg_paper.jpg);
    /* background-image: url(../../../../src/images/bg_paper.jpg); */
    background-size: contain;
    background-position: top center;
    background-attachment: fixed;

    @media screen and (max-width: 959px) {
      margin-top: 0;
      width: 100%;
      height: auto;
      position: relative;
      padding: 0 6% 6% 6%;
      margin-top: -4%;
    }
  }

  .topToics_content-scroll-modal {
    position: absolute;
    width: 400px;
    right: 60%;

    @media screen and (max-width: 959px) {
      position: relative;
      width: auto;
      right: 0;
    }
  }

  .wrap-size-sp {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .gift-wrapping-img {
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.08);
    display: block;
  }

  .swiper-button-next,
  .swiper-button-prev,
  .js-topToics-swiper-button-prev,
  .js-topToics-swiper-button-next {
    position: absolute;
    top: var(--swiper-navigation-top-offset, 38%);
    width: calc(var(--swiper-navigation-size) / 44* 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px -(var(--swiper-navigation-size) / 2));
    z-index: 9;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .swiper-button-prev,
  .js-topToics-swiper-button-prev {
    left: 35%;

    @media screen and (max-width: 959px) {
      left: 2%;
      top: 165px;
    }
  }

  .swiper-button-next,
  .js-topToics-swiper-button-next {
    right: 35%;

    @media screen and (max-width: 959px) {
      right: 2%;
      top: 165px;
    }
  }

  .swiper-button-next:after,
  .swiper-button-prev:after,
  .js-topToics-swiper-button-prev:after,
  .js-topToics-swiper-button-next:after {
    content: '';
    position: relative;
    background-image: url(/img/event/gift2/slide-arrow.svg);
    /* background-image: url(../../../../src/images/slide-arrow.svg); */
    width: 12px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
  }

  .swiper-button-prev:after,
  .js-topToics-swiper-button-prev:after {
    transform: scale(-1, 1);
  }

  .swiper-controller {
    display: flex;
    gap: 1.6rem;
    align-items: center;
    justify-content: flex-end;
    margin-top: 3.2rem;
  }

  .swiper-pagination {
    margin-right: auto;
  }

  .swiper-txt-pos {
    /* margin-top: -30%; */
  }

  .topToics_content-inner {
    height: 0 !important;

    @media screen and (max-width: 959px) {
      height: auto !important;
    }
  }

  .topToics_content-thubnail-txt {
    text-align: left;
    white-space: nowrap;
  }

  .topToics_content-thubnail-txt-modal {
    height: 34px;
    text-align: left;

    @media screen and (max-width: 959px) {
      height: 34px;
      display: flex;
    }
  }

  .topToics_content-thubnail-txt-modal img {
    height: 100%;
  }

  .topToics_content-thubnail-txt2 {
    text-align: left;
    color: var(--Color-Text-Black, black);
    font-size: 12px;
    font-family: "Roboto", YuGothic, "Yu Gothic Medium", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Droid Sans", sans-serif;
    line-height: 19.80px;
    margin-top: 40px;
    width: auto;

    @media screen and (max-width: 959px) {
      margin-top: 30px;
    }
  }

  .topToics_content-thubnail-txt2-modal {
    text-align: left;
    color: var(--Color-Text-White, white);
    font-size: 12px;
    font-family: "Roboto", YuGothic, "Yu Gothic Medium", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Droid Sans", sans-serif;
    line-height: 19.80px;
    margin-top: 40px;
    width: auto;

    @media screen and (max-width: 959px) {
      margin-top: 24px;
    }
  }

  .topToics_content-thubnail-txt3 {
    text-align: left;
    color: var(--Color-Text-Gray-Lighter-2, #999999);
    font-size: 11px;
    font-family: "Roboto", YuGothic, "Yu Gothic Medium", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Droid Sans", sans-serif;
    font-weight: 500;
    line-height: 16.50px;
    margin-top: 25px;

    @media screen and (max-width: 959px) {
      margin-top: 20px;
    }
  }

  .lebel-gift {
    display: flex;
    gap: 6px;
  }


  /* notes */
  .wrapping-annotation {
    background: rgba(0, 0, 0, 0.1);
    padding: 80px 0;

    @media screen and (max-width: 959px) {
      padding: 56px 0;
    }
  }

  .notes-wrapping {
    color: var(--Color-Text-Black, black);
    font-size: 26px;
    font-family: "Roboto", YuGothic, "Yu Gothic Medium", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Droid Sans", sans-serif;
    font-weight: 400;
    line-height: 41.60px;
    text-align: center;
    padding-bottom: 48px;

    @media screen and (max-width: 959px) {
      font-size: 21px;
      line-height: 21px;
      padding-bottom: 32px;
    }
  }

  /* accordin */
  .wrap {
    max-width: 600px;
    margin: 0 auto 40px;
    padding: 0 20px;
  }

  .wrap .toggle_contents {
    margin-bottom: 10px;
  }

  .toggle_title {
    font-size: 14px;
    font-weight: 500;
    position: relative;
    box-sizing: border-box;
    width: 100%;
    padding: 20px 24px;
    cursor: pointer;
    text-align: left;
    color: #000;
    background: #fff;
    border-radius: 2px;
    box-shadow: 0px 0px 6px rgba(112, 112, 112, 0.08);
  }

  .toggle_title .plus {
    position: absolute;
    top: 0;
    right: 24px;
    height: 100%;
  }

  .toggle_title .plus:before,
  .wrap .toggle_contents .toggle_title .plus:after {
    position: absolute;
    right: 50%;
    bottom: 50%;
    display: block;
    width: 16px;
    height: 1px;
    content: "";
    transition: 0.5s;
    transform: translate(50%, 50%);
    background-color: #000;
  }

  .wrap .toggle_contents .toggle_title .plus:before {
    width: 1px;
    height: 16px;
  }

  .wrap .toggle_contents .toggle_title.selected {
    color: #fff;
    background: #404040;
  }

  .wrap .toggle_contents .toggle_title.selected .plus:before {
    transform: translate(50%, 50%) rotate(90deg);
  }

  .wrap .toggle_contents .toggle_title.selected .plus:after {
    background-color: #fff;
  }

  .toggle_ans {
    font-size: 12px;
    line-height: 1.6;
    display: none;
    margin: 0;
    padding: 45px 50px;
    text-align: left;
    letter-spacing: 0.05em;
    background: #fff;
  }

  .toggle_ans .fw_bold {
    font-weight: bold;
  }

  .toggle_ans {
    font-size: 11px;
    line-height: 1.7;
    padding: 28px 20px;
  }

  .toggle_ans .fw_bold {
    font-size: 11px;
  }

  .shopping_guide_link {
    text-align: center;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
    color: #000;
  }

  .shopping_guide_link a {
    font-size: 13px;
    color: #000;
  }

}


/* モーダル */
.modal-trigger-s-black,
.modal-trigger-s-white,
.modal-trigger-m-black,
.modal-trigger-m-white,
.modal-trigger-l,
.modal-trigger-giftbox,
.modal-trigger-card {
  cursor: pointer;
}

.modal-container-s-black,
.modal-container-s-white,
.modal-container-m-black,
.modal-container-m-white,
.modal-container-l,
.modal-container-giftbox,
.modal-container-card {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  text-align: center;
  background: rgba(0, 0, 0, 1);
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: .3s ease-out;
  z-index: 9;
}

.modal-area {
  display: flex;
  gap: 70px;
  align-items: center;
  height: 80vh;

  @media screen and (max-width: 959px) {
    display: block;
  }
}

.slick-s-white,
.slick-s-black,
.slick-m-black,
.slick-m-white,
.slick-l,
.slick-giftbox,
.slick-card {
  left: 50%;

  @media screen and (max-width: 959px) {
    left: 0;
  }
}

.slick-prev,
.slick-next {
  color: #000;
}

.slick-prev:after,
.slick-next:after {
  content: '';
  position: relative;
  background-image: url(/img/event/gift2/slide-arrow.svg);
  /* background-image: url(../../../../src/images/slide-arrow.svg); */
  width: 12px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  top: -19px;
  border-bottom: none;
  display: block;
}

.slick-prev:after {
  transform: scale(-1, 1);

  @media screen and (max-width: 959px) {
    z-index: 1;
    left: -36vw;
    top: 200px;
  }
}

.slick-next:after {
  @media screen and (max-width: 959px) {
    z-index: 1;
    right: -43vw;
    top: -210px;
  }
}

.modal-container-s-black,
.modal-container-s-white,
.modal-container-m-black,
.modal-container-m-white,
.modal-container-l,
.modal-container-giftbox,
.modal-container-card::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

.modal-container-s-black.active,
.modal-container-s-white.active,
.modal-container-m-black.active,
.modal-container-m-white.active,
.modal-container-l.active,
.modal-container-giftbox.active,
.modal-container-card.active {
  opacity: 1;
  visibility: visible;
}

.modal-body {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 500px;
  max-height: 100vh;

  padding: 70px 0 40px;

  @media screen and (max-width: 959px) {
    width: 90%;
    overflow-y: auto;
  }
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

.modal-close {
  position: absolute;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 3;
  top: 15%;
  right: -65%;

  @media screen and (max-width: 959px) {
    top: 3%;
    right: 0;
    width: 30px;
    height: 30px;
  }
}

.modal-close::before,
.modal-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 50px;
  background: #fff;

  @media screen and (max-width: 959px) {
    height: 30px;
  }
}

.modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

body.modal-open {
  overflow: hidden;
}

.modal-trigger-s-black,
.modal-trigger-s-white,
.modal-trigger-m-black,
.modal-trigger-m-white,
.modal-trigger-l,
.modal-trigger-giftbox,
.modal-trigger-card {
  transition: transform 1.2s ease;
  transform: scale(0.9);

  @media screen and (max-width: 959px) {
    transform: scale(0.6);
  }
}

.swiper-slide-active .modal-trigger-s-black,
.swiper-slide-active .modal-trigger-s-white,
.swiper-slide-active .modal-trigger-m-black,
.swiper-slide-active .modal-trigger-m-white,
.swiper-slide-active .modal-trigger-l,
.swiper-slide-active .modal-trigger-giftbox,
.swiper-slide-active .modal-trigger-card {
  transition: transform 1.2s ease;
  transform: scale(1.2);

  @media screen and (max-width: 959px) {
    transform: scale(0.8);
  }
}

.swiper-slide-active .modal-trigger-s-black:after,
.swiper-slide-active .modal-trigger-s-white:after,
.swiper-slide-active .modal-trigger-m-black:after,
.swiper-slide-active .modal-trigger-m-white:after,
.swiper-slide-active .modal-trigger-l:after,
.swiper-slide-active .modal-trigger-giftbox:after,
.swiper-slide-active .modal-trigger-card:after {
  content: '';
  display: block;
  position: relative;
  background-image: url(/img/event/gift2/modal-zoom.png);
  /* background-image: url(../../../../src/images/modal-zoom.png); */
  width: 32px;
  height: 32px;
  background-size: contain;
  background-repeat: no-repeat;
  bottom: 50px;
  left: 20px;
}

.recommend_container {
  background-color: #fff;
  padding: 150px auto 30px;
  margin: 0;
}

.reco_ttl {
  padding: 30px 0;
  margin: 0;
}

#footer {
  padding-top: 180px;
  margin-top: 0;
  background-color: #fff;

  @media screen and (max-width: 959px) {
    padding-top: 0;
  }
}