@charset "UTF-8";


@media screen and (max-width:767px) {
  :root {
    --lpSetSize: (100vw / 750);
  }
}

@media screen and (min-width:768px) {
  :root {
    --lpNavSetSize: (100vw / 1400);
    --lpSetSize: 0.64px;
  }
}

:root{
  --scrollbarSize: 0;
}

/*
@media screen and (min-width:768px) and (max-width:1400px) {
  :root {
    --lpSetSize: (100vw / 1400) * 0.64px;
  }
}

@media screen and (min-width:1401px){
  :root {
    --lpSetSize: 0.64px;
  }
}
*/

#CE251113gift {
  /* --font-yu-gothic: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif; */
  --font-ja: 'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  --font-shippori-min: "shippori-mincho", sans-serif;
  font-style: normal;
  --fw-thin: 100;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-bold: 700;
  --color-white: #ffffff;
  --color-black: #333333;
  --color-lightgray: #f4f7fa;
  --color-blue: #607793;
  --color-lightblue: #d1dae7;
  overflow: clip;
  font-family: var(--font-ja);
  color: var(--color-black);
  text-align: center;
  font-feature-settings: "palt";
}

/*******************************
CE251113gift
*******************************/
#CE251113gift{
  display: block;
  width: 100%;
  padding: 0 0 0;
  box-sizing: border-box;
}


#CE251113gift *{box-sizing: border-box;}


/*******************************
img setting
*******************************/
#CE251113gift .imgOuter{
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
  /*background: #FFFFFF;*/
}

#CE251113gift .imgOuter > .outer,
#CE251113gift .imgOuter picture,
#CE251113gift .imgOuter img{
  display: block;
  width: 100%;
  height: auto;
}
#CE251113gift .imgOuter > a{
  display: block;
  width: 100%;
  height: auto;
  pointer-events: auto;
  overflow: hidden;
}


/*******************************
creditLinks
*******************************/
#CE251113gift .creditArea{
  display: block;
  padding-top: calc(60 * var(--lpSetSize));
  position: relative;
  z-index: 3;
}

#CE251113gift .creditLinks{
  display: block;
  white-space: nowrap;
  text-align: center;
}

#CE251113gift .creditArea.alignRight .creditLinks{
  text-align: right;
}

#CE251113gift .creditArea.alignLeft .creditLinks{
  text-align: left;
}

#CE251113gift .creditLinks > a,
#CE251113gift .creditLinks > span{
  display: inline-block;
  /*
  padding-bottom: calc(2 * var(--lpSetSize));
  */
  border-bottom: calc(2 * var(--lpSetSize)) solid #b2b2b2;
  white-space: nowrap;
  font-weight: 400;
  font-style: normal;
  font-size: calc(24 * var(--lpSetSize));
  letter-spacing: 0.025em;
  line-height: 1;
  color: #000000;
  text-decoration: none;
  font-feature-settings: "palt";
}

#CE251113gift .creditLinks > a + a,
#CE251113gift .creditLinks > span + span,
#CE251113gift .creditLinks > a + span,
#CE251113gift .creditLinks > span + a{
  margin-left: calc(18 * var(--lpSetSize));
}

#CE251113gift .creditLinks > br + a,
#CE251113gift .creditLinks > br + span,
#CE251113gift .creditLinks > br + a + a,
#CE251113gift .creditLinks > br + a + span,
#CE251113gift .creditLinks > br + span + a,
#CE251113gift .creditLinks > br + span + span{
  margin-top: calc(26 * var(--lpSetSize));
}

/*
#CE251113gift .creditLinks > a:not(:nth-last-of-type(1))::after,
#CE251113gift .creditLinks > span:not(:nth-last-of-type(1))::after{
  content: ',';
  display: inline-block;
}
*/

/*******************************
figSlider
*******************************/
#CE251113gift .figSlider{
	overflow: hidden;
	position: relative;
}


#CE251113gift .figSlider .container{
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

#CE251113gift .figSlider .sliderWrapper{}

#CE251113gift .figSlider .slider{
  display: block;
  width: 100%;
  background: #FFFFFF;
}

#CE251113gift .figSlider .slider a{
  display: block;
  width: 100%;
  height: auto;
}

#CE251113gift .figSlider .slider a > img{
  display: block;
  width: 100%;
  height: auto;
}

#CE251113gift .figSlider .slider.swiper-slide-active{
  pointer-events: auto;
}

#CE251113gift .figSlider ul.pager{
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0 calc(14 * var(--lpSetSize));
  width: calc(100% - 35 * var(--lpSetSize));
  position: absolute;
  left: calc(6 * var(--lpSetSize));
  bottom: calc(28 * var(--lpSetSize));
  z-index: 2;
}

#CE251113gift .figSlider ul.pager > li{
  display: block;
  width: calc(10 * var(--lpSetSize));
  height: calc(10 * var(--lpSetSize));
  background-color: inherit;
  border: calc(1.5 * var(--lpSetSize)) solid #FFFFFF;
  margin-left: 0;
  margin-right: 0;
  transition: background 0.3s ease;
  cursor: pointer;
  opacity: 1;
  pointer-events: auto;
  border-radius: inherit;
  transform: rotate(45deg);
}

#CE251113gift .figSlider ul.pager > li.swiper-pagination-bullet-active{
  opacity: 1;
  background: #FFFFFF;
}

#CE251113gift .figSlider02 ul.pager{
  left: calc(12 * var(--lpSetSize));
  bottom: calc(22 * var(--lpSetSize));
}


/*******************************
fadeInSetting
*******************************/
#CE251113gift .fadeInBlock{
  opacity: 0;
  transition: opacity 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),transform 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#CE251113gift .fadeInBlock.leftIn:not(.view){
  transform: translate(calc(-60 * var(--lpSetSize)), 0);
}

#CE251113gift .fadeInBlock.rightIn:not(.view){
  transform: translate(calc(60 * var(--lpSetSize)), 0);
}

#CE251113gift .fadeInBlock.bottomIn:not(.view){
  transform: translate(0,calc(60 * var(--lpSetSize)));
}

#CE251113gift .fadeInBlock.leftIn img{
  scale: 1.1;
  filter: blur(5px);
  transition: 1.3s ease 0s;
}

#CE251113gift .fadeInBlock.rightIn img{
  scale: 1.1;
  filter: blur(5px);
  transition: 1.3s ease 0s;
}

#CE251113gift .fadeInBlock.bottomIn img{
  scale: 1.1;
  filter: blur(5px);
  transition: 1.3s ease 0s;
}

#CE251113gift .fadeInBlock.leftIn.view img{
  scale: 1;
  filter: blur(0);
}

#CE251113gift .fadeInBlock.rightIn.view img{
  scale: 1;
  filter: blur(0);
}

#CE251113gift .fadeInBlock.bottomIn.view img{
  scale: 1;
  filter: blur(0);
}

#CE251113gift .fadeInBlock.view{
  opacity: 1;
  transform: translate(0,0);
}

#CE251113gift .scroll_box {
  width: calc(128* var(--lpSetSize));
  margin: calc(84 * var(--lpSetSize)) auto 0;
}
#CE251113gift .scroll_box .scroll__title {
  width: 100%;
  margin: 0 auto;
}
#CE251113gift .scroll_box .line{
  display: block;
  width: calc(2 * var(--lpSetSize));
  height: calc(200 * var(--lpSetSize));
  margin: calc(25 * var(--lpSetSize)) auto 0;
}

#CE251113gift .scroll_box .line.js-fadeIn{
  position: relative;
  transform: translate3d(0, 0, 0);
}
#CE251113gift .scroll_box .line.js-fadeIn::before{
  position: absolute;
  top: 0;
  content: "";
  transition: height 0.8s;
  transform: translate(0);
  width: calc(2 * var(--lpSetSize));
  height: 0;
  background: var(--color-black);
}
#CE251113gift .scroll_box .line.js-fadeIn.view::before{
  transform: translate(0);
  height: 100%;
}


/*******************************
lpMainWrap
*******************************/
#CE251113gift .lpMainWrap{
  display: block;
  width: 100%;
}


@media screen and (max-width:767px) {
  #CE251113gift .lpMainWrap{
    display: block;
    width: 100%;
    overflow: hidden;
  }
}


#CE251113gift .leftTTL{
  display: none;
}

#CE251113gift .rightAllItems{
  display: block;
  width: calc(220 * var(--lpSetSize));
  height: calc(220 * var(--lpSetSize));
  position: fixed;
  right: calc(10 * var(--lpSetSize));
  bottom: calc(10 * var(--lpSetSize));
  z-index: 99;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

#CE251113gift .rightAllItems.view{
  opacity: 1;
  pointer-events: auto;
}

#CE251113gift .rightAllItems a.pcView{display: none;}

#CE251113gift .rightAllItems a.spView{
  display: block;
  width: 100%;
  height: 100%;
}


#CE251113gift .lpMainBlock{
  display: block;
  width: 100%;
  background: var(--color-lightblue);
}


@media screen and (min-width:768px){

  #CE251113gift .lpMainWrap{
    display: grid;
    grid-template-columns: 1fr calc(750 * var(--lpSetSize)) 1fr;
  }

  #CE251113gift .leftWrap{
    position: sticky;
    top: 0;
    display: grid;
    place-content: center;
    height: 100vh;
    background-image: url(../img/left_bg_pc.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  /* #CE251113gift .leftWrap::before{
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: url("../img/left_bg_pc.jpg") center center no-repeat;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    pointer-events: none;
  } */

  #CE251113gift .leftTTL{
    opacity: 0;
    transition: opacity 1.1s ease;
    pointer-events: none;
    width: calc(50vw - 480 * var(--lpNavSetSize) / 2);
    padding-right: calc(10 * var(--lpNavSetSize));
    height: 100%;
    display: block;
  }
  
  #CE251113gift .leftTTL.view{
    opacity: 1;
    pointer-events: auto;
  }

  #CE251113gift .leftTTL > picture{
    display: block;
    width: 100%;
    position: sticky;
    left: 0;
    top: calc(50% - 130 * var(--lpNavSetSize) / 2);
  }
  
  #CE251113gift .leftTTL > picture > img{
    display: block;
    width: calc(379 * var(--lpNavSetSize));
    margin: 0 auto;
  }

  #CE251113gift .rightWrap{
    position: sticky;
    top: 0;
    display: grid;
    place-content: center;
    height: 100vh;
    background-image: url(../img/right_bg_pc.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  /* #CE251113gift .rightWrap::before{
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: url("../img/right_bg_pc.jpg") center center no-repeat;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    pointer-events: none;
  } */

  #CE251113gift .rightAllItems{
    opacity: 0;
    transition: opacity 1.1s ease;
    pointer-events: none;
    width: calc(50vw - 480 * var(--lpNavSetSize) / 2);
    /* padding-right: calc(10 * var(--lpNavSetSize)); */
    height: 100%;
    position: relative;
    right: initial;
    bottom: initial;
  }

  #CE251113gift .rightAllItems.view{
    opacity: 1;
    pointer-events: auto;
  }

  #CE251113gift .rightAllItems a.spView{display: none;}
  
  #CE251113gift .rightAllItems a.pcView{
    display: block;
    width: calc(300  * var(--lpNavSetSize));
    margin: 0 auto;
    position: sticky;
    right: 0;
    /* top: calc(50% - 34.2856 * var(--lpNavSetSize) / 2); */
    top: 50%;
    z-index: 99;
  }


  #CE251113gift .lpMainBlock{
    display: block;
    width: calc(750 * var(--lpSetSize));
    overflow: clip;
  }
  
}


/*******************************
mvBlock
*******************************/
#CE251113gift .mvBlock{
  display: block;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}


/* @media screen and (max-width:767px) {
  #CE251113gift .mvBlock{
    width: 100%;
    margin: 0 auto calc(75 * var(--lpSetSize));
  }
} */

#CE251113gift .mvBlock .mvOuter{
  display: block;
  width: 100%;
  height: auto;
}

#CE251113gift .mvBlock picture,
#CE251113gift .mvBlock img{
  display: block;
  width: 100%;
  height: auto;
}

/*******************************
firstLead
*******************************/
#CE251113gift #firstLead{
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

#CE251113gift #firstLead::after{
  content: '';
  display: block;
  width: 100%;
  height: calc(2204 * var(--lpSetSize));
  background: url(../img/bg_sp.jpg) center center no-repeat;
  background-size: 100% auto;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

#CE251113gift #firstLead .first_lead{
  font-family: var(--font-ja);
  font-size: calc(24 * var(--lpSetSize));
  line-height: 2.2;
  letter-spacing: 0.05em;
  font-weight: var(--fw-medium);
  padding-top: calc(104 * var(--lpSetSize));
}


/* =========================================
   カテゴリー
========================================= */
#CE251113gift .category_box {
  background-color: var(--color-white);
  padding: calc(72 * var(--lpSetSize)) calc(20 * var(--lpSetSize)) calc(88 * var(--lpSetSize));
  width: calc(680 * var(--lpSetSize));
  margin: 0 auto;
  text-align: center;
  box-sizing: border-box;
  margin-top: calc(90 * var(--lpSetSize));
  position: relative;
}
#CE251113gift .category_box::after {
  content: "";
  border: calc(2 * var(--lpSetSize)) solid var(--color-lightblue); /* 淡いブルーグレーの枠線 */
  width: calc(660 * var(--lpSetSize));
  height: calc(1442 * var(--lpSetSize));
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
}

#CE251113gift .category_title {
  font-size: calc(40 * var(--lpSetSize));
  color: var(--color-blue);
  font-family: var(--font-shippori-min);
  letter-spacing: 0.075em;
  margin-bottom: calc(60 * var(--lpSetSize));
}

#CE251113gift .category_flex {
  width: wcalc(570 * var(--lpSetSize));
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: calc(50 * var(--lpSetSize));
  row-gap: calc(38 * var(--lpSetSize));
}

#CE251113gift .category_contents {
  width: calc(260 * var(--lpSetSize));
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 商品画像エリア */
#CE251113gift .category_img {
  width: 100%;
  height: calc(260 * var(--lpSetSize));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: calc(6 * var(--lpSetSize));
}

#CE251113gift .category_img img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
}

/* カテゴリー名テキスト */
#CE251113gift .category_lead {
  margin-bottom: calc(6 * var(--lpSetSize));
  font-family: var(--font-ja);
  font-size: calc(24 * var(--lpSetSize));
  line-height: 2.2;
  letter-spacing: 0.05em;
  font-weight: var(--fw-medium);
}

/* CHECKボタンエリア */
#CE251113gift .category_btn {
  width: calc(240 * var(--lpSetSize));
  margin: 0 auto;
}

#CE251113gift .category_btn a {
  display: block;
  transition: opacity 0.3s;
}

#CE251113gift .category_btn a:hover {
  opacity: 0.7;
}

#CE251113gift .category_btn img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

#CE251113gift .stars {
  position: absolute;
  pointer-events: none;
}

#CE251113gift .stars_blink {
  position: absolute;
  pointer-events: none;
  animation: blink 3s ease-in-out infinite;
}

#CE251113gift .stars_blink2 {
  position: absolute;
  pointer-events: none;
  animation: blink2 3s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}

@keyframes blink2 {
  0%, 100% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
}

/*******************************
sec01
*******************************/
#CE251113gift #sec01{
  display: block;
  margin: 0 auto;
  padding-top: calc(80 * var(--lpSetSize));
  padding-bottom: calc(155 * var(--lpSetSize));
  position: relative;
}

#CE251113gift #sec01 .star_img01{
  width: calc(29 * var(--lpSetSize));
  top: calc(-42 * var(--lpSetSize));
  right: calc(153 * var(--lpSetSize));
  z-index: 3;
}
#CE251113gift #sec01 .star_img02{
  width: calc(156 * var(--lpSetSize));
  top: calc(28 * var(--lpSetSize));
  right: calc(22 * var(--lpSetSize));
  z-index: 3;
}
#CE251113gift #sec01 .star_img03{
  width: calc(29 * var(--lpSetSize));
  top: calc(226 * var(--lpSetSize));
  right: calc(64 * var(--lpSetSize));
  z-index: 3;
}
#CE251113gift #sec01 .star_img04{
  width: calc(34 * var(--lpSetSize));
  bottom: calc(678 * var(--lpSetSize));
  left: calc(72 * var(--lpSetSize));
  z-index: 3;
}
#CE251113gift #sec01 .star_img05{
  width: calc(325 * var(--lpSetSize));
  bottom: calc(343 * var(--lpSetSize));
  left: calc(-54 * var(--lpSetSize));
  z-index: 3;
}
#CE251113gift #sec01 .star_img06{
  width: calc(34 * var(--lpSetSize));
  bottom: calc(205 * var(--lpSetSize));
  left: calc(12 * var(--lpSetSize));
  z-index: 3;
}
#CE251113gift #sec01 .star_img07{
  width: calc(80 * var(--lpSetSize));
  bottom: calc(92 * var(--lpSetSize));
  right: calc(-14 * var(--lpSetSize));
  z-index: 3;
}
#CE251113gift #sec01 .star_img08{
  width: calc(29 * var(--lpSetSize));
  bottom: calc(48 * var(--lpSetSize));
  right: calc(82 * var(--lpSetSize));
  z-index: 3;
}

#CE251113gift #sec01 .img01{
  width: calc(650 * var(--lpSetSize));
  margin: 0 auto;
}

#CE251113gift .sec_lead{
  font-size:  calc(24 * var(--lpSetSize));
  margin: calc(64 * var(--lpSetSize)) auto 0;
  letter-spacing: 0.05em;
  font-weight: var(--fw-medium);
  line-height: 2.2;
}

/*******************************
sec02
*******************************/
#CE251113gift #sec02{
  display: block;
  margin: 0 auto;
  position: relative;
  padding-bottom: calc(200 * var(--lpSetSize));
}
#CE251113gift #sec02::before{
  content: " ";
  position: absolute;
  background: var(--color-lightgray);
  width: calc(710 * var(--lpSetSize));
  height: calc(3690 * var(--lpSetSize));
  top: calc(120 * var(--lpSetSize));
  right: 0;
  z-index: 0;
}

#CE251113gift #sec02 .img01{
  width: calc(640 * var(--lpSetSize));
  margin-left: 0;
}

#CE251113gift #sec02 .img02{
  width: calc(660 * var(--lpSetSize));
  margin: calc(40 * var(--lpSetSize)) 0 0 calc(90 * var(--lpSetSize));
}

#CE251113gift #sec02 .sec02_lead01{
  margin: calc(66 * var(--lpSetSize)) auto 0 calc(130 * var(--lpSetSize));
  text-align: left;
  position: relative;
}

#CE251113gift #sec02 .img03{
  width: calc(660 * var(--lpSetSize));
  margin: calc(130 * var(--lpSetSize)) auto 0 0;
}

#CE251113gift #sec02 .sec02_lead02{
  margin: calc(66 * var(--lpSetSize)) auto 0 calc(121 * var(--lpSetSize));
  text-align: left;
  position: relative;
}

/*******************************
sec03
*******************************/
#CE251113gift #sec03{
  display: block;
  margin: 0 auto;
  padding-top: calc(73 * var(--lpSetSize));
  padding-bottom: calc(90 * var(--lpSetSize));
  position: relative;
}

#CE251113gift #sec03 .star_img01{
  width: calc(37 * var(--lpSetSize));
  top: calc(-68 * var(--lpSetSize));
  left: calc(164 * var(--lpSetSize));
  z-index: 3;
}
#CE251113gift #sec03 .star_img02{
  width: calc(80 * var(--lpSetSize));
  top: calc(-46 * var(--lpSetSize));
  left: calc(248 * var(--lpSetSize));
  z-index: 3;
}
#CE251113gift #sec03 .star_img03{
  width: calc(150 * var(--lpSetSize));
  top: calc(12 * var(--lpSetSize));
  left: calc(-26 * var(--lpSetSize));
  z-index: 0;
}
#CE251113gift #sec03 .star_img04{
  width: calc(50 * var(--lpSetSize));
  top: calc(254 * var(--lpSetSize));
  left: calc(2 * var(--lpSetSize));
  z-index: 3;
}

#CE251113gift #sec03 .img01{
  width: calc(680 * var(--lpSetSize));
  margin-left: calc(70 * var(--lpSetSize));
}

#CE251113gift #sec03 .sec03_lead01{
  margin: calc(66 * var(--lpSetSize)) auto 0 calc(111 * var(--lpSetSize));
  text-align: left;
}


/*******************************
sec04
*******************************/
#CE251113gift #sec04{
  display: block;
  margin: 0 auto;
  padding-top: calc(80 * var(--lpSetSize));
  padding-bottom: calc(155 * var(--lpSetSize));
  position: relative;
}

#CE251113gift #sec04 .star_img01{
  width: calc(50 * var(--lpSetSize));
  top: calc(-62 * var(--lpSetSize));
  right: calc(20 * var(--lpSetSize));
  z-index: 3;
}
#CE251113gift #sec04 .star_img02{
  width: calc(241 * var(--lpSetSize));
  top: calc(-28 * var(--lpSetSize));
  right: calc(79 * var(--lpSetSize));
  z-index: 3;
}
#CE251113gift #sec04 .star_img03{
  width: calc(40 * var(--lpSetSize));
  top: calc(192 * var(--lpSetSize));
  right: calc(158 * var(--lpSetSize));
  z-index: 3;
}
#CE251113gift #sec04 .star_img04{
  width: calc(35 * var(--lpSetSize));
  bottom: calc(705 * var(--lpSetSize));
  right: calc(45 * var(--lpSetSize));
  z-index: 3;
}
#CE251113gift #sec04 .star_img05{
  width: calc(70 * var(--lpSetSize));
  bottom: calc(570 * var(--lpSetSize));
  left: calc(26 * var(--lpSetSize));
  z-index: 3;
}
#CE251113gift #sec04 .star_img06{
  width: calc(35 * var(--lpSetSize));
  bottom: calc(512 * var(--lpSetSize));
  left: calc(92 * var(--lpSetSize));
  z-index: 3;
}
#CE251113gift #sec04 .star_img07{
  width: calc(281 * var(--lpSetSize));
  bottom: calc(393 * var(--lpSetSize));
  right: calc(17 * var(--lpSetSize));
  z-index: 3;
}
#CE251113gift #sec04 .star_img08{
  width: calc(40 * var(--lpSetSize));
  bottom: calc(276 * var(--lpSetSize));
  right: calc(42 * var(--lpSetSize));
  z-index: 3;
}

#CE251113gift #sec04 .img01{
  width: calc(640 * var(--lpSetSize));
  margin-left: 0;
}

#CE251113gift #sec04 .sec04_lead01{
  margin: calc(64 * var(--lpSetSize)) auto 0 calc(80 * var(--lpSetSize));
  text-align: left;
}


/*******************************
sec05
*******************************/
#CE251113gift #sec05{
  display: block;
  margin: 0 auto;
  padding-top: calc(17 * var(--lpSetSize));
  padding-bottom: calc(155 * var(--lpSetSize));
  position: relative;
}

#CE251113gift #sec05 .star_img01{
  width: calc(284 * var(--lpSetSize));
  top: calc(-139 * var(--lpSetSize));
  left: calc(-43 * var(--lpSetSize));
  z-index: 0;
}
#CE251113gift #sec05 .star_img02{
  width: calc(70 * var(--lpSetSize));
  top: calc(86 * var(--lpSetSize));
  left: calc(-28 * var(--lpSetSize));
  z-index: 3;
}
#CE251113gift #sec05 .star_img03{
  width: calc(26 * var(--lpSetSize));
  top: calc(278 * var(--lpSetSize));
  left: calc(-8 * var(--lpSetSize));
  z-index: 3;
}
#CE251113gift #sec05 .star_img04{
  width: calc(40 * var(--lpSetSize));
  bottom: calc(166 * var(--lpSetSize));
  right: calc(29 * var(--lpSetSize));
  z-index: 3;
}
#CE251113gift #sec05 .star_img05{
  width: calc(80 * var(--lpSetSize));
  bottom: calc(56 * var(--lpSetSize));
  right: calc(79 * var(--lpSetSize));
  z-index: 3;
}

#CE251113gift #sec05 .img01{
  width: calc(660 * var(--lpSetSize));
  margin: 0 auto;
}

#CE251113gift .sec05_lead01{
  margin: calc(64 * var(--lpSetSize)) auto 0;
}

/*******************************
sec06
*******************************/
#CE251113gift #sec06{
  display: block;
  margin: 0 auto calc(180 * var(--lpSetSize));
}

#CE251113gift #sec06 .img01{
  display: block;
  width: calc(750 * var(--lpSetSize));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

@media screen and (min-width:768px){

}

/*******************************
sec07
*******************************/
#CE251113gift #sec07{
  display: block;
  margin: 0 auto calc(180 * var(--lpSetSize));
  position: relative;
}

#CE251113gift #sec07::after{
  content: '';
  display: block;
  width: calc(750 * var(--lpSetSize));
  height: calc(6823 * var(--lpSetSize));
  background: url("../img/bg02.jpg?20251007") center center no-repeat;
  background-size: 100% auto;
  position: absolute;
  left: 0;
  top: calc(180 * var(--lpSetSize));
  z-index: 1;
}

#CE251113gift #sec07 .img01{
  display: block;
  width: calc(700 * var(--lpSetSize));
  margin-left: 0;
  position: relative;
  z-index: 2;
}

#CE251113gift #sec07 .img02{
  display: block;
  width: calc(600 * var(--lpSetSize));
  margin: calc(60 * var(--lpSetSize)) auto 0 calc(150 * var(--lpSetSize));
  position: relative;
  z-index: 2;
}

#CE251113gift #sec07 .creditArea{
  padding-top:  calc(62 * var(--lpSetSize));
  padding-left:  calc(150 * var(--lpSetSize));
}

/*******************************
sec08
*******************************/
#CE251113gift #sec08{
  display: block;
  margin: 0 auto calc(180 * var(--lpSetSize));
}

#CE251113gift #sec08 .img01{
  display: block;
  width: calc(640 * var(--lpSetSize));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

#CE251113gift #sec08 .img02{
  display: block;
  width: calc(750 * var(--lpSetSize));
  margin: calc(60 * var(--lpSetSize)) auto 0;
  position: relative;
  z-index: 2;
}

#CE251113gift #sec08 .img03{
  display: block;
  width: calc(560 * var(--lpSetSize));
  margin: calc(60 * var(--lpSetSize)) auto 0;
  position: relative;
  z-index: 2;
}


/*******************************
sec09
*******************************/
#CE251113gift #sec09{
  display: block;
  margin: 0 auto calc(280 * var(--lpSetSize));
}


#CE251113gift #sec09 .img01{
  display: block;
  width: calc(680 * var(--lpSetSize));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/*******************************
sec10
*******************************/
#CE251113gift #sec10{
  display: block;
  margin: 0 auto calc(180 * var(--lpSetSize));
}

#CE251113gift #sec10 .img01{
  display: block;
  width: calc(600 * var(--lpSetSize));
  margin: 0 auto 0 calc(150 * var(--lpSetSize));
  position: relative;
  z-index: 2;
}

#CE251113gift #sec10 .img02{
  display: block;
  width: calc(700 * var(--lpSetSize));
  margin: calc(60 * var(--lpSetSize)) auto 0 0;
  position: relative;
  z-index: 2;
}

#CE251113gift #sec10 .creditArea{
  padding-top: calc(62 * var(--lpSetSize));
  padding-right: calc(50 * var(--lpSetSize));
}

/*******************************
sec11
*******************************/
#CE251113gift #sec11{
  display: block;
  margin: 0 auto calc(180 * var(--lpSetSize));
}

#CE251113gift #sec11 .img01{
  display: block;
  width: calc(660 * var(--lpSetSize));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}


#CE251113gift #sec11 .img02{
  display: block;
  width: calc(750 * var(--lpSetSize));
  margin: calc(60 * var(--lpSetSize)) auto 0;
  border-radius: 0 0 calc(300 * var(--lpSetSize)) 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

#CE251113gift #sec11 .creditArea{
  padding-top: calc(62 * var(--lpSetSize));
}

/*******************************
sec12
*******************************/
#CE251113gift #sec12{
  display: block;
  margin: 0 auto calc(180 * var(--lpSetSize));
}

#CE251113gift #sec12 .img01{
  display: block;
  width: calc(630 * var(--lpSetSize));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}


/*******************************
sec13
*******************************/
#CE251113gift #sec13{
  display: block;
  margin: 0 auto calc(180 * var(--lpSetSize));
}

#CE251113gift #sec13 .img01{
  display: block;
  width: calc(750 * var(--lpSetSize));
  margin: 0 auto;
  border-radius: calc(375 * var(--lpSetSize)) calc(375 * var(--lpSetSize)) 0 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

#CE251113gift #sec13 .img02{
  display: block;
  width: calc(670 * var(--lpSetSize));
  margin: calc(60 * var(--lpSetSize)) auto 0 0;
  position: relative;
  z-index: 2;
}

#CE251113gift #sec13 .creditArea{
  padding-right: calc(80 * var(--lpSetSize));
  padding-top: calc(62 * var(--lpSetSize));
}


/*******************************
sec14
*******************************/
#CE251113gift #sec14{
  display: block;
  margin: 0 auto calc(180 * var(--lpSetSize));
}

#CE251113gift #sec14 .img01{
  display: block;
  width: calc(420 * var(--lpSetSize));
  margin-left: calc(330 * var(--lpSetSize));
  position: relative;
  z-index: 2;
}

#CE251113gift #sec14 .creditArea{
  padding-top: calc(62 * var(--lpSetSize));
  padding-left: calc(330 * var(--lpSetSize));
}

/*******************************
sec15
*******************************/
#CE251113gift #sec15{
  display: block;
  margin: 0 auto calc(180 * var(--lpSetSize));
}

#CE251113gift #sec15 .img01{
  display: block;
  width: calc(710 * var(--lpSetSize));
  margin-left: 0;
  position: relative;
  z-index: 2;
}

#CE251113gift #sec15 .img02{
  display: block;
  width: calc(680 * var(--lpSetSize));
  margin: calc(120 * var(--lpSetSize)) auto 0 calc(70 * var(--lpSetSize));
  position: relative;
  z-index: 2;
}

#CE251113gift #sec15 .img02::before{
  content: '';
  display: block;
  width: calc(340 * var(--lpSetSize));
  height: calc(580 * var(--lpSetSize));
  background: url("../img/bg03.jpg") center center no-repeat;
  background-size: 100% auto;
  position: absolute;
  left: calc(-70 * var(--lpSetSize));
  top: calc(-60 * var(--lpSetSize));
  z-index: 0;
  pointer-events: none;
}

#CE251113gift #sec15 .creditArea{
  padding-left: calc(70 * var(--lpSetSize));
}

/*******************************
sec16
*******************************/
#CE251113gift #sec16{
  display: block;
  margin: 0 auto calc(180 * var(--lpSetSize));
}

#CE251113gift #sec16 .img01{
  display: block;
  width: calc(680 * var(--lpSetSize));
  margin-left: calc(70 * var(--lpSetSize));
  border-radius: calc(300 * var(--lpSetSize)) 0 0 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

#CE251113gift #sec16 .img02{
  display: block;
  width: calc(660 * var(--lpSetSize));
  margin: calc(60 * var(--lpSetSize)) auto 0 0;
  position: relative;
  z-index: 2;
}

#CE251113gift #sec16 .creditArea{
  padding-right: calc(90 * var(--lpSetSize));
  padding-top: calc(62 * var(--lpSetSize));
}

/*******************************
sec17
*******************************/
#CE251113gift #sec17{
  display: block;
  margin: 0 auto calc(240 * var(--lpSetSize));
}

#CE251113gift #sec17 .img01{
  display: block;
  width: calc(660 * var(--lpSetSize));
  margin-left: 0;
  position: relative;
  z-index: 2;
}

#CE251113gift #sec17 .img02{
  display: block;
  width: calc(710 * var(--lpSetSize));
  margin: calc(60 * var(--lpSetSize)) auto 0 calc(40 * var(--lpSetSize));
  position: relative;
  z-index: 2;
}
#CE251113gift #sec17 .img02::before{
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-black);
  box-sizing: border-box;
  z-index: 3;
  pointer-events: none;
}

#CE251113gift #sec17 .creditArea{
  padding-left: calc(40 * var(--lpSetSize));
}


/*******************************
sec18
*******************************/
#CE251113gift #sec18{
  display: block;
  margin: 0 auto calc(180 * var(--lpSetSize));
  position: relative;
}

#CE251113gift #sec18::after{
  content: '';
  display: block;
  width: calc(750 * var(--lpSetSize));
  height: calc(6604 * var(--lpSetSize));
  background: url("../img/bg04.jpg?20251007") center center no-repeat;
  background-size: 100% auto;
  position: absolute;
  left: 0;
  top: calc(-60 * var(--lpSetSize));
  z-index: 1;
}

#CE251113gift #sec18 .img01{
  display: block;
  width: calc(640 * var(--lpSetSize));
  margin-left: calc(110 * var(--lpSetSize));
  position: relative;
  z-index: 2;
}

#CE251113gift #sec18 .img02{
  display: block;
  width: calc(660 * var(--lpSetSize));
  margin: calc(60 * var(--lpSetSize)) auto 0;
  position: relative;
  z-index: 2;
}


/*******************************
sec19
*******************************/
#CE251113gift #sec19{
  display: block;
  margin: 0 auto calc(180 * var(--lpSetSize));
}

#CE251113gift #sec19 .img01{
  display: block;
  width: calc(680 * var(--lpSetSize));
  margin-left: 0;
  position: relative;
  z-index: 2;
}

#CE251113gift #sec19 .creditArea{
  padding-top: calc(62 * var(--lpSetSize));
  padding-right: calc(70 * var(--lpSetSize));
}

/*******************************
sec20
*******************************/
#CE251113gift #sec20{
  display: block;
  margin: 0 auto;
}

#CE251113gift #sec20 .img01{
  display: block;
  width: calc(700 * var(--lpSetSize));
  margin-left: calc(50 * var(--lpSetSize));
  position: relative;
  z-index: 2;
}

#CE251113gift #sec20 .img02{
  display: block;
  width: calc(650 * var(--lpSetSize));
  margin: calc(60 * var(--lpSetSize)) auto 0;
  position: relative;
  z-index: 2;
}

#CE251113gift #sec20 .creditArea{
  padding-top: calc(62 * var(--lpSetSize));
}

/*******************************
lpMainBottomArea
*******************************/
#CE251113gift #lpMainBottomArea{
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: calc(17 * var(--lpSetSize)) 0 calc(180 * var(--lpSetSize));
  position: relative;
  z-index: 2;
}

@media screen and (min-width:768px){

}

/*******************************
lpStaffList
*******************************/
#CE251113gift dl.lpStaffList{
  display: block;
  margin: 0 auto calc(52  * var(--lpSetSize));
  overflow: hidden;
}

#CE251113gift dl.lpStaffList > dt,
#CE251113gift dl.lpStaffList > dd{
  font-family: var(--font-crimson);
  display: block;
  font-weight: 400;
  font-family: var(--fw-regular);
  font-size: calc(24  * var(--lpSetSize));
  line-height: 1.666666666666667;
  letter-spacing: 0.015em;
  font-feature-settings: "palt";
  color: #4F546E;
  text-align: center;
}


#CE251113gift dl.lpStaffList > dd > span{
  font-family: var(--font-crimson);
  display: block;
  font-weight: 400;
  font-family: var(--fw-regular);
  font-size: calc(24  * var(--lpSetSize));
  line-height: 1.666666666666667;
  letter-spacing: 0.015em;
  font-feature-settings: "palt";
  color: #4F546E;
  text-align: center;
}


@media screen and (min-width:768px){

}


/*******************************
allItemBtn
*******************************/
#CE251113gift .allItemBtn{
  display: block;
  width: calc(660 * var(--lpSetSize));
  margin: 0 auto;
  position: relative;
}

@media screen and (min-width:768px){

}


#CE251113gift *::before,
#CE251113gift *::after{
  box-sizing: border-box;
  pointer-events: none;
}


/*******************************
overRide
*******************************/
@media screen and (max-width:767px) {
  #CE251113gift .pcView{display: none;}
}

@media screen and (min-width:768px){
  #CE251113gift .spView{display: none;}
}








