@charset "UTF-8";
/* =====================
	ホワイトデー特集
 ======================= */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Poppins&family=Zen+Old+Mincho&display=swap");
/** -------------------- ページ内共通 -------------------- **/
:root {
  --w_font_sansserif: "Noto Sans JP", sans-serif;
  --w_font_serif: "Zen Old Mincho", serif;
  --w_font_num: "Poppins", "Noto Sans JP", sans-serif;
  --w_c_red: #CF0037;
  --w_c_blk: #333333;
  --w_c_wht: #fff;
  --w_c_blue: #308EAC;
  --w_filter_red: invert(16%) sepia(67%) saturate(6136%) hue-rotate(335deg) brightness(77%) contrast(116%);
  --w_filter_blk: invert(0%) sepia(7%) saturate(141%) hue-rotate(55deg) brightness(91%) contrast(82%);
  --w_filter_wht: brightness(0) invert(1);
  --w_anim: all 0.4s ease;
}

.whiteday {
  color: #333;
  font-family: var(--w_font_sansserif);
}

.whiteday-inner {
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 15px;
}

.whiteday-ttl {
  text-align: center;
  margin: 0 auto 18px;
}
.whiteday-ttl::before {
  content: "";
  width: 46px;
  height: 58px;
  background: url(../images/whiteday/medal.png) no-repeat center/contain;
  display: block;
  margin: 0 auto;
}

.whiteday-slider-scroll {
  padding: 0 15px;
  margin: 30px -15px;
  overflow-x: auto;
  overflow-y: hidden;
}
.whiteday-slider-scroll:first-child {
  margin-top: 0;
}
.whiteday-slider-scroll:last-child {
  margin-bottom: 0;
}
.whiteday-slider-scroll::-webkit-scrollbar {
  height: 4px;
}
.whiteday-slider-scroll::-webkit-scrollbar-track {
  background: transparent;
}
.whiteday-slider-scroll::-webkit-scrollbar-thumb {
  background: var(--w_c_red);
  border-radius: 100px;
}
.whiteday-slider-scroll .whiteday-slider {
  overflow: visible;
}
.whiteday-slider-scroll .whiteday-slider .swiper-wrapper::after {
  content: "";
  width: 15px;
  margin-left: -16px;
  flex-shrink: 0;
}

.whiteday-slider-item a {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  color: #000;
}
.whiteday-slider-item-img {
  border-radius: 6px;
  overflow: hidden;
}
.whiteday-slider-item-name {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.whiteday-slider-item-txt {
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.whiteday-slider-item-price {
  font-family: var(--w_font_num);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--w_c_red);
}
.whiteday-slider-item-price > span {
  font-size: 11px;
  font-weight: 400;
}
.whiteday-slider-item-tag {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.whiteday-slider-item-tag > li {
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  border-radius: 100px;
  padding: 0 6px;
}
.whiteday-slider-item-tag-ec {
  border: 1px solid var(--w_c_red);
  background: var(--w_c_wht);
  color: var(--w_c_red);
}
.whiteday-slider-item-tag-include {
  border: 1px solid #61B2D4;
  background: #61B2D4;
  color: var(--w_c_wht);
}
.whiteday-slider-item-tag-free {
  border: 1px solid #678FBA;
  background: #678FBA;
  color: var(--w_c_wht);
}
.whiteday-slider-item-tag-limited {
  border: 1px solid var(--w_c_red);
  background: var(--w_c_red);
  color: var(--w_c_wht);
}
.whiteday-slider-item-tag-cool {
  border: 1px solid #E0A641;
  background: #E0A641;
  color: var(--w_c_wht);
}

.whiteday-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  margin: 0 auto;
  background: var(--w_c_red);
  color: var(--w_c_wht);
  border: 1px solid var(--w_c_red);
  border-radius: 100px;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 13px 17px 14px;
}
.whiteday-btn > span {
  flex-grow: 1;
}
.whiteday-btn::after {
  content: "";
  width: 15px;
  height: 15px;
  background: url(../images/whiteday/arrow.png) no-repeat center/contain;
  flex-shrink: 0;
  filter: var(--w_filter_wht);
  transition: var(--w_anim);
}
.whiteday-btn:visited, .whiteday-btn:active, .whiteday-btn:hover {
  color: var(--w_c_wht);
}
.whiteday-btn--egift {
  background: #42C6C5;
  border-color: #42C6C5;
}

.whiteday-frame {
  position: relative;
  padding: 40px 10px 60px;
  background: #D5EAE7;
}
.whiteday-frame02 {
  background: #BFCCDF;
}
.whiteday-frame::before {
  content: "";
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  background: var(--w_c_wht);
  position: absolute;
  left: 10px;
  top: 10px;
}
.whiteday-frame > * {
  position: relative;
}
.whiteday-frame .whiteday-inner {
  padding: 0 10px;
}
.whiteday-frame .whiteday-slider-scroll {
  padding: 0 10px;
  margin-right: -10px;
  margin-left: -10px;
}
.whiteday-frame .whiteday-slider .swiper-wrapper::after {
  width: 10px;
}

.whiteday-lead {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
}
.whiteday-lead strong {
  font-weight: 500;
  color: var(--w_c_red);
}

/** -------------------- Pagetop -------------------- **/
#pagetop {
  display: none !important;
}

.whiteday-pagetop {
  position: fixed;
  right: 10px;
  bottom: 82px;
  z-index: 500;
  width: 40px;
  transition: var(--w_anim);
  opacity: 0;
  visibility: hidden;
}
.whiteday-pagetop.is-show {
  opacity: 1;
  visibility: visible;
}

/** -------------------- MV -------------------- **/
.whiteday-mv {
  position: relative;
  padding: 61.33dvw 0 40px;
}
.whiteday-mv-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}
.whiteday-mv-bg img {
  width: 100%;
}
.whiteday-mv-ttl {
  text-align: center;
  margin-bottom: 40px;
}
.whiteday-mv-lead {
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
  padding: 0 20px;
  margin-bottom: 16px;
}
.whiteday-mv-txt {
  text-align: center;
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  padding: 0 20px;
}

/** -------------------- ランキング -------------------- **/
.whiteday-ranking-section {
  margin-bottom: 60px;
}
.whiteday-ranking-section:last-child {
  margin-bottom: 0;
}
.whiteday-ranking-header {
  margin-bottom: 30px;
}
.whiteday-ranking-header-lead {
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 10px;
}
.whiteday-ranking-header-lead::before {
  content: "＼ ";
}
.whiteday-ranking-header-lead::after {
  content: " ／";
}
.whiteday-ranking-header-ttl {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: var(--w_c_red);
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  width: fit-content;
  margin: 0 auto 20px;
  background: #FFFBE1;
  padding: 3px 12px;
}
.whiteday-ranking-header-ttl::before {
  content: "";
  width: 25px;
  height: 25px;
  background: url(../images/whiteday/ranking_icon.png) no-repeat center/contain;
  flex-shrink: 0;
}
.whiteday-ranking-header-txt {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8;
  width: fit-content;
  margin: 0 auto;
}
.whiteday-ranking-header-txt strong {
  font-weight: 500;
  color: var(--w_c_red);
}
.whiteday-ranking-no1 {
  margin-bottom: 30px;
}
.whiteday-ranking-no1-img {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}
.whiteday-ranking-no1-img::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 80px 80px 0px 0px;
  border-color: #D7A430 transparent transparent transparent;
  position: absolute;
  top: 0;
  left: 0;
}
.whiteday-ranking-no1-img::after {
  content: "1";
  font-family: var(--w_font_num);
  font-size: 29px;
  line-height: 1.5;
  color: var(--w_c_wht);
  position: absolute;
  top: 4px;
  left: 20px;
}
.whiteday-ranking-no1-img img {
  width: 100%;
}
.whiteday-ranking-no1-txtbox {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.whiteday-ranking-no1-name {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.whiteday-ranking-no1-sub img {
  border-radius: 10px;
  width: 100%;
}
.whiteday-ranking-no1-txt {
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.whiteday-ranking-no1-price {
  color: var(--w_c_red);
  font-family: var(--w_font_num);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}
.whiteday-ranking-no1-price > span {
  font-size: 11px;
  font-weight: 400;
}
.whiteday-ranking-no1-tag {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.whiteday-ranking-no1-tag > li {
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  border-radius: 100px;
  padding: 0 6px;
}
.whiteday-ranking-no1-tag-ec {
  border: 1px solid var(--w_c_red);
  background: var(--w_c_wht);
  color: var(--w_c_red);
}
.whiteday-ranking-no1-tag-include {
  border: 1px solid #61B2D4;
  background: #61B2D4;
  color: var(--w_c_wht);
}
.whiteday-ranking-no1-tag-free {
  border: 1px solid #678FBA;
  background: #678FBA;
  color: var(--w_c_wht);
}
.whiteday-ranking-no1-tag-limited {
  border: 1px solid var(--w_c_red);
  background: var(--w_c_red);
  color: var(--w_c_wht);
}
.whiteday-ranking-no1-tag-cool {
  border: 1px solid #E0A641;
  background: #E0A641;
  color: var(--w_c_wht);
}
.whiteday-ranking .whiteday-slider {
  counter-reset: cnt 1;
}
.whiteday-ranking .whiteday-slider-item {
  counter-increment: cnt;
}
.whiteday-ranking .whiteday-slider-item-img {
  position: relative;
}
.whiteday-ranking .whiteday-slider-item-img::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 36px 36px 0px 0px;
  border-color: #000 transparent transparent transparent;
  position: absolute;
  top: 0;
  left: 0;
}
.whiteday-ranking .whiteday-slider-item-img::after {
  content: counter(cnt);
  font-family: var(--w_font_num);
  font-size: 13px;
  line-height: 1.5;
  position: absolute;
  top: 2px;
  left: 7px;
  color: var(--w_c_wht);
}
.whiteday-ranking .whiteday-slider-item:nth-child(1) .whiteday-slider-item-img::before {
  border-color: #869098 transparent transparent transparent;
}
.whiteday-ranking .whiteday-slider-item:nth-child(2) .whiteday-slider-item-img::before {
  border-color: #C06544 transparent transparent transparent;
}

/** -------------------- その他の商品を探す -------------------- **/
.whiteday-search {
  padding: 60px 0;
}

.whiteday-search-subttl {
  display: flex;
  justify-content: center;
  align-items: baseline;
  column-gap: 1em;
  color: var(--w_c_red);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin: 40px 0 20px;
}
.whiteday-search-subttl::before, .whiteday-search-subttl::after {
  content: "・・・";
  font-size: 10px;
  font-weight: 700;
}
.whiteday-search-subttl:first-child {
  margin-top: 0;
}

.whiteday-search-category {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 24px 12px 0;
}
.whiteday-search-category-item a {
  text-align: center;
  display: block;
  color: #171717;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
.whiteday-search-category-item a > div {
  background: #FFFCEA;
  border-radius: 6px;
  padding: 9px 0 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 3px;
  margin-bottom: 8px;
}
.whiteday-search-category-item a > div img {
  width: 60px;
}
.whiteday-search-category-item a > div:after {
  content: "";
  width: 12px;
  height: 6px;
  background: url(../images/whiteday/search_arrow.png) no-repeat center/contain;
}

.whiteday-search-price {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px 12px;
  margin: 0 15px;
}
.whiteday-search-price-item a {
  display: block;
  background: #FFFCEA;
  text-align: center;
  border-radius: 100px;
  font-family: var(--w_font_num);
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.08em;
  padding: 16px 0;
  border: 1px solid #FFFCEA;
  color: #171717;
}

/** -------------------- セレクション -------------------- **/
.whiteday-selection-section {
  margin-bottom: 60px;
}
.whiteday-selection-section:last-child {
  margin-bottom: 0;
}
.whiteday-selection-header {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
}
.whiteday-selection-header-img img {
  width: 100%;
}
.whiteday-selection-header-txtbox {
  text-align: center;
}
.whiteday-selection-header-ttl {
  font-family: var(--w_font_serif);
  font-size: 22px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
  padding: 8px;
}
.whiteday-selection-lead {
  font-size: 12px;
  line-height: 1.8;
  margin: 30px auto;
  width: fit-content;
}

#ichigo .whiteday-selection-header-txtbox {
  background: #6FB7CF;
  color: #fff;
}

#celeb .whiteday-selection-header-txtbox {
  background: #DE3F69;
  color: #fff;
}

/** -------------------- サンリオ〜プリン　共通 -------------------- **/
.whiteday-category {
  margin-bottom: 60px;
}
.whiteday-category:last-child {
  margin-bottom: 0;
}
.whiteday-category-header {
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
}
.whiteday-category-header-img img {
  width: 100%;
}
.whiteday-category-header-txtbox {
  text-align: center;
  padding: 22px 6px 16px;
}
.whiteday-category-header-ttl {
  margin-bottom: 10px;
}
.whiteday-category-header-ttl-jp {
  font-size: 11px;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 8px;
}
.whiteday-category-header-txt {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}
.whiteday-category-lead {
  font-size: 12px;
  line-height: 1.8;
  margin: 20px auto;
  width: fit-content;
}
.whiteday-category-more {
  margin-top: 20px;
}

#sanrio .whiteday-category-header-txtbox {
  background: #F5648B;
  color: #fff;
}

#egift .whiteday-category-header-txtbox {
  background: #42C6C5;
  color: #fff;
}

#baked .whiteday-category-header-txtbox {
  background: #F8AD39;
  color: #fff;
}

#cake .whiteday-category-header-txtbox {
  background: #6FB7CF;
  color: #fff;
}

#pudding .whiteday-category-header-txtbox {
  background: #F8AD39;
  color: #fff;
}

/** -------------------- レコメンド -------------------- **/
.whiteday-recommend-section {
  margin-bottom: 60px;
}
.whiteday-recommend-section:last-child {
  margin-bottom: 0;
}
.whiteday-recommend-header {
  padding: 0 20px;
  margin-bottom: 30px;
}
.whiteday-recommend-ttl {
  text-align: center;
  color: var(--w_c_red);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.whiteday-recommend-txt {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  width: fit-content;
  margin: 0 auto;
}
.whiteday-recommend-point {
  margin-top: 20px;
}
.whiteday-recommend-point-ttl {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 10px;
}
.whiteday-recommend-point-ttl > span {
  background: #FFFBE1;
  color: var(--w_c_red);
  display: inline-block;
  padding: 0 10px;
}
.whiteday-recommend-point-ttl > span::before {
  content: "＼ ";
}
.whiteday-recommend-point-ttl > span::after {
  content: " ／";
}
.whiteday-recommend-point-txt {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  width: fit-content;
  margin: 0 auto;
}

/** -------------------- おすすめコンテンツ -------------------- **/
.whiteday-voice {
  padding: 80px 0;
}
.whiteday-voice:last-child {
  padding-bottom: 0;
}

.whiteday-voice-ttl {
  text-align: center;
  margin: 0 0 40px;
}
.whiteday-voice-ttl-jp {
  margin: 16px 0 0;
  color: var(--w_c_red);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.whiteday-voice-item {
  margin: 0 0 40px;
}
.whiteday-voice-item:last-child {
  margin-bottom: 0;
}
.whiteday-voice-item-img {
  margin: 0 0 20px;
}
.whiteday-voice-item-img img {
  width: 100%;
}
.whiteday-voice-item-ttl {
  color: var(--w_c_red);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 10px;
}
.whiteday-voice-item-txt {
  font-size: 12px;
  line-height: 2;
}
.whiteday-voice-item-txt strong {
  color: #308EAC;
  font-weight: 700;
}
.whiteday-voice-item-more {
  margin: 10px 0 0;
  text-align: right;
}
.whiteday-voice-item-more a {
  display: inline-flex;
  align-items: center;
  column-gap: 15px;
  padding-bottom: 6px;
  color: var(--w_c_blk);
  border-bottom: 1px solid var(--w_c_blk);
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
.whiteday-voice-item-more a::after {
  content: "";
  width: 15px;
  height: 15px;
  background: url(../images/whiteday/arrow.png) no-repeat center/contain;
  filter: var(--w_filter_blk);
  flex-shrink: 0;
}

/* スマホのみ
  ------------------------ */
@media (max-width: 1199px) {
  .u-onlyPC {
    display: none !important;
  }
}
/* PC
  ------------------------ */
@media (min-width: 1200px) {
  .u-onlySP {
    display: none !important;
  }
  /** -------------------- ページ内共通 -------------------- **/
  .whiteday-ttl {
    margin-bottom: 24px;
  }
  .whiteday-ttl::before {
    width: 82px;
    height: 102px;
  }
  .whiteday-slider-scroll {
    overflow: hidden;
  }
  /** -------------------- Pagetop -------------------- **/
  /** -------------------- MV -------------------- **/
  /** -------------------- ランキング -------------------- **/
  /** -------------------- その他の商品を探す -------------------- **/
  /** -------------------- セレクション -------------------- **/
  /** -------------------- サンリオ〜プリン　共通 -------------------- **/
  /** -------------------- レコメンド -------------------- **/
  /** -------------------- おすすめコンテンツ -------------------- **/
}
@media (min-width: 1200px) and (min-width: 1280px) {
  .whiteday-slider-scroll {
    padding: 0 30px;
    margin: 30px -30px 60px;
    position: relative;
  }
}
@media (min-width: 1200px) and (min-width: 1328px) {
  .whiteday-slider-scroll {
    padding: 0 64px;
    margin: 30px -64px 60px;
  }
}
@media (min-width: 1200px) {
  .whiteday-slider-scroll .whiteday-slider {
    overflow: hidden;
  }
}
@media (min-width: 1200px) and (min-width: 1280px) {
  .whiteday-slider-scroll .whiteday-slider {
    position: initial;
  }
}
@media (min-width: 1200px) {
  .whiteday-slider-scroll .whiteday-slider .swiper-wrapper::after {
    display: none;
  }
  .whiteday-slider {
    padding: 0 15px;
    margin: 0 -15px;
  }
}
@media (min-width: 1200px) and (min-width: 1280px) {
  .whiteday-slider {
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
  }
}
@media (min-width: 1200px) {
  .whiteday-slider-item a {
    row-gap: 16px;
  }
  .whiteday-slider-item-img {
    border-radius: 10px;
    margin-bottom: 4px;
  }
  .whiteday-slider-item-name {
    font-size: 15px;
  }
  .whiteday-slider-item-txt {
    font-size: 13px;
  }
  .whiteday-slider-item-price {
    font-size: 15px;
  }
  .whiteday-slider-item-price > span {
    font-size: 13px;
  }
  .whiteday-slider-item-tag > li {
    font-size: 12px;
    padding: 0 14px 1px;
  }
  .whiteday-slider-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--w_c_wht);
    position: absolute;
    top: 0;
    margin-top: calc((100% - 60px - 60px) / 3 / 2);
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--w_anim);
  }
}
@media (min-width: 1200px) and (min-width: 1280px) {
  .whiteday-slider-arrow {
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.25);
  }
}
@media (min-width: 1200px) and (min-width: 1328px) {
  .whiteday-slider-arrow {
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.25);
  }
}
@media (min-width: 1200px) {
  .whiteday-slider-arrow::before {
    content: "";
    width: 21px;
    height: 21px;
    background: url(../images/whiteday/arrow.png) no-repeat center/contain;
    filter: var(--w_filter_blk);
  }
  .whiteday-slider-arrow--prev {
    left: 0;
  }
}
@media (min-width: 1200px) and (min-width: 1328px) {
  .whiteday-slider-arrow--prev {
    left: 34px;
  }
}
@media (min-width: 1200px) {
  .whiteday-slider-arrow--prev::before {
    transform: scale(-1, 1);
  }
  .whiteday-slider-arrow--next {
    right: 0;
  }
}
@media (min-width: 1200px) and (min-width: 1328px) {
  .whiteday-slider-arrow--next {
    right: 34px;
  }
}
@media (min-width: 1200px) {
  .whiteday-slider-arrow.swiper-button-disabled {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .whiteday-btn {
    width: 378px;
    font-size: 15px;
    font-weight: 500;
    padding: 15px 18px 17px;
  }
  .whiteday-btn::after {
    width: 20px;
    height: 20px;
  }
  .whiteday-frame {
    padding: 140px 40px;
  }
  .whiteday-frame::before {
    width: calc(100% - 80px);
    height: calc(100% - 80px);
    top: 40px;
    left: 40px;
    border-radius: 10px;
  }
  .whiteday-frame .whiteday-inner {
    padding: 0 15px;
  }
  .whiteday-frame .whiteday-slider-scroll {
    margin-right: -64px;
    margin-left: -64px;
    padding: 0 64px;
  }
  .whiteday-lead {
    font-size: 18px;
    margin-bottom: 80px;
  }
  .whiteday-pagetop {
    right: 40px;
    bottom: 40px;
    width: 100px;
  }
  .whiteday-mv {
    padding: 816px 0 120px;
  }
  .whiteday-mv-ttl {
    margin-bottom: 40px;
  }
  .whiteday-mv-lead {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .whiteday-mv-txt {
    font-size: 18px;
    line-height: 2.2;
    letter-spacing: 0;
  }
  .whiteday-ranking-section {
    margin-bottom: 100px;
  }
  .whiteday-ranking-header {
    margin-bottom: 40px;
  }
  .whiteday-ranking-header-lead {
    font-size: 16px;
  }
  .whiteday-ranking-header-ttl {
    font-size: 22px;
    padding: 5px 20px;
  }
  .whiteday-ranking-header-ttl::before {
    width: 34px;
    height: 34px;
  }
  .whiteday-ranking-header-txt {
    text-align: center;
    font-size: 15px;
    line-height: 2;
  }
  .whiteday-ranking-no1 {
    margin-bottom: 60px;
  }
  .whiteday-ranking-no1 a {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .whiteday-ranking-no1-img {
    flex: 0 1 63.33%;
    margin: 0;
  }
  .whiteday-ranking-no1-img::before {
    border-width: 112px 112px 0px 0px;
  }
  .whiteday-ranking-no1-img::after {
    font-size: 31px;
    top: 24px;
    left: 30px;
  }
  .whiteday-ranking-no1-txtbox {
    flex: 0 1 33.33%;
    row-gap: 16px;
  }
  .whiteday-ranking-no1-name {
    font-size: 18px;
  }
  .whiteday-ranking-no1-price {
    font-size: 15px;
  }
  .whiteday-ranking-no1-price > span {
    font-size: 13px;
  }
  .whiteday-ranking .whiteday-slider-item-img::before {
    border-width: 112px 112px 0px 0px;
  }
  .whiteday-ranking .whiteday-slider-item-img::after {
    font-size: 31px;
    top: 12px;
    left: 26px;
  }
  .whiteday-search {
    padding: 120px 0;
  }
  .whiteday-search-subttl {
    font-size: 22px;
    margin: 80px 0 40px;
  }
  .whiteday-search-subttl::before, .whiteday-search-subttl::after {
    content: "・・・・・";
    font-size: 12px;
  }
  .whiteday-search-category {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
  }
  .whiteday-search-category-item {
    flex: 0 0 250px;
  }
  .whiteday-search-category-item a {
    font-size: 18px;
  }
  .whiteday-search-category-item a > div {
    border-radius: 10px;
    padding: 15px 0 10px;
    row-gap: 5px;
    margin-bottom: 12px;
  }
  .whiteday-search-category-item a > div img {
    width: 100px;
  }
  .whiteday-search-category-item a > div::after {
    width: 18px;
    height: 10px;
  }
  .whiteday-search-price {
    grid-template-columns: repeat(3, 280px);
    gap: 22px 40px;
    justify-content: center;
  }
  .whiteday-search-price-item a {
    font-size: 22px;
    padding: 23px 0;
  }
  .whiteday-selection-section {
    margin-bottom: 100px;
  }
  .whiteday-selection-header {
    margin-bottom: 40px;
    display: flex;
  }
  .whiteday-selection-header-txtbox {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .whiteday-selection-header-ttl {
    font-size: 38px;
    padding: 0;
  }
  .whiteday-selection-lead {
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    line-height: 2;
    margin: 40px auto 60px;
  }
  .whiteday-category {
    margin-bottom: 100px;
  }
  .whiteday-category-header {
    margin-bottom: 40px;
    display: flex;
  }
  .whiteday-category-header-txtbox {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
  }
  .whiteday-category-header-ttl {
    margin-bottom: 20px;
  }
  .whiteday-category-header-ttl-jp {
    font-size: 16px;
  }
  .whiteday-category-header-txt {
    font-size: 20px;
  }
  .whiteday-category-lead {
    margin: 40px auto 60px;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    line-height: 2;
  }
  .whiteday-recommend-section {
    margin-bottom: 100px;
  }
  .whiteday-recommend-header {
    padding: 0;
    margin-bottom: 60px;
    text-align: center;
  }
  .whiteday-recommend-ttl {
    margin-bottom: 6px;
    font-size: 24px;
    line-height: 1.8;
  }
  .whiteday-recommend-txt {
    font-size: 18px;
    letter-spacing: 0;
  }
  .whiteday-recommend-point {
    margin-top: 60px;
  }
  .whiteday-recommend-point-ttl {
    font-size: 18px;
  }
  .whiteday-recommend-point-ttl > span {
    padding: 2px 20px;
  }
  .whiteday-recommend-point-txt {
    font-size: 18px;
    letter-spacing: 0;
  }
  .whiteday-voice {
    padding: 140px 0;
  }
  .whiteday-voice-ttl {
    margin-bottom: 100px;
  }
  .whiteday-voice-ttl-jp {
    font-size: 22px;
  }
  .whiteday-voice-item {
    margin-bottom: 100px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .whiteday-voice-item-img {
    flex: 0 1 41.667%;
  }
  .whiteday-voice-item-txtbox {
    flex: 0 1 53.333%;
  }
  .whiteday-voice-item-ttl {
    font-size: 24px;
    line-height: 1.7;
    margin-bottom: 20px;
  }
  .whiteday-voice-item-txt {
    font-size: 15px;
  }
  .whiteday-voice-item-more a {
    font-size: 14px;
    padding-bottom: 12px;
    column-gap: 15px;
  }
  .whiteday-voice-item-more a::after {
    width: 18px;
    height: 18px;
  }
}
/* hover
  ------------------------ */
@media (hover: hover) {
  .whiteday-slider-arrow:hover {
    opacity: 0.7;
  }
  .whiteday-btn:hover {
    opacity: 1;
    background: var(--w_c_wht);
    color: var(--w_c_red);
  }
  .whiteday-btn:hover::after {
    filter: var(--w_filter_red);
  }
  .whiteday-btn--egift:hover {
    color: #42C6C5;
  }
  .whiteday-btn--egift:hover::after {
    filter: invert(82%) sepia(10%) saturate(2562%) hue-rotate(123deg) brightness(87%) contrast(79%);
  }
}