@charset "UTF-8";
/** ============================================================
 * CMS用追加
 * ========================================================== */
.bootstrap a{
  color: #272727;
}
.bootstrap a:hover,
.bootstrap a:focus{
  color: #bc2739;
  text-decoration: none;
}
.bootstrap a.oval-link{
  text-decoration: none;
}
.bootstrap a.oval-link--border--red{
  color: #bc2739;
}
.bootstrap a.oval-link--red{
  background: #bc2739;
}
.bootstrap .text-underline{
  text-decoration: underline!important;
  transition: all 0.25s;
}
.bootstrap .text-underline:hover,
.bootstrap .text-underline:focus {
  color: #bc2739;
  text-decoration: none!important;
}
.bootstrap img{
  vertical-align: bottom;
}
.bootstrap h1,
.bootstrap h2,
.bootstrap h3,
.bootstrap ul,
.bootstrap ol,
.bootstrap p{
  margin-bottom: 0;
}
.node__content{
  margin-top: 0;
}
.pc_only {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc_only {
    display: block; /* または flex, inline-block など */
  }
}
/** ============================================================
 * 共通
 * ========================================================== */
/* ブロック */
.content-inner {
  max-width: 1200px;
}
.content-block{
  margin: 60px 0;
}

/* 見出し系 */
.content-heading{
  font-size: 32px!important;
  font-weight: 900!important;
  text-align: center;
}

/* ブロック上線 */
.content-block--top-border{
  position: relative;
  padding-top: 60px;
}
.content-block--top-border::before{
  content: "";
  display: inline-block;
  width: 100%;
  max-width: 1200px;
  height: 1px;
  background: #707070;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* テキスト系 */
.intro-text{
  margin: 16px 0 0!important;
  line-height: 2em;
  text-align: center;
}
.indent-text{
  margin-left: 1rem;
  text-indent: -1rem;
}


/* ボタン */
.link-block{
  margin: 40px 0 0;
}
.bootstrap a.oval-link{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 420px;
  min-height: 70px;
  margin: 0 auto;
  font-size: 24px;
}
.oval-link--red::after,
.oval-link--border--red::after{
  width: 24px;
  height: 24px;
}
.oval-link--red::after{
  background: url(/sites/default/files/media/office-products/lp-gift/image/icon_arrow-wt-r.webp) no-repeat center / contain;
}
.bootstrap a.oval-link--border--red{
  width: 380px;
  font-size: 20px;
}
.oval-link--border--red::after{
  background: url(/sites/default/files/media/office-products/lp-gift/image/icon_arrow-rd-r.webp) no-repeat center / contain;
}

@media screen and (max-width: 768px) {
  /* ブロック */
  .content-block{
    margin: 32px 0;
  }

  /* 見出し系 */
  .content-heading{
    font-size: 24px!important;
  }

  /* ブロック上線 */
  .content-block--top-border{
    position: relative;
    padding-top: 60px;
  }
  .content-block--top-border::before{
    width: calc(100% - 48px);
  }

  /* テキスト系 */
  .intro-text{
    text-align: left;
  }

  /* ボタン */
  .bootstrap a.oval-link{
    width: 100%;
    min-height: 63px;
    font-size: 18px;
  }
  .oval-link--red::after,
  .oval-link--border--red::after{
    width: 14px;
    height: 14px;
  }
  .oval-link--border--red{
    width: 100%;
  }

}


/** ============================================================
 * MV
 * ========================================================== */
.content-block.mv{
  margin: 0;
}
.content-block.mv .content-inner{
  width: auto;
  max-width: unset;
}
.content-block.mv .content-inner img{
  width: 100%;
  height: auto;
}

/* よく売れている商品 */
.content-block.anchor{
  margin: 0;
  padding: 40px 0 0;
  background: linear-gradient(to bottom, #FFDDDD 0%, #FFF4F4 50%, #FFFFFF 100%);
}

/* ページ内アンカー */
.anchor-list{
  display: flex;
  gap: 24px;
  margin: 20px 0 0!important;
}
.anchor-list__item{
  width: calc((100% - 72px) / 4);
}
.anchor-list__link{
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 24px 20px 30px;
  border: 1px solid #D9D9D9;
  border-radius: 8px;
  background: #fff!important;
  text-align: center;
}
.anchor-list__link::after{
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url(/sites/default/files/media/office-products/lp-gift/image/icon_circle_arrow-gr-d.webp) no-repeat center / contain;
}
.bootstrap .anchor-list__link:hover,
.bootstrap .anchor-list__link:focus{
  opacity: .7;
  color: #272727;
}
.anchor-list__title{
  margin: 6px 0 0!important;
  font-size: 24px;
  font-weight: 900;
}
.anchor-list__count{
  margin: 6px 0 0!important;
}
@media screen and (max-width: 768px) {
  .content-block.mv{
    margin: 0;/
  }
  .content-block.mv .content-inner{
    padding: 0;
  }

  /* よく売れている商品 */
  .content-block.anchor{
    background: linear-gradient(to bottom, #FFDDDD 0%, #FFF4F4 5%, #FFFFFF 20%);
  }

  /* ページ内アンカー */
  .anchor-list{
    flex-wrap: wrap;
    gap: 24px 12px;
    margin-top: 0!important;
  }
  .anchor-list__item{
    width: calc(50% - 6px);
  }
  .anchor-list__link{
    padding: 10px 10px 20px;
  }
  .anchor-list__link::after{
    bottom: -12px;
    width: 24px;
    height: 24px;
  }
  .anchor-list__link img{
    width: 33px;
  }
  .anchor-list__title{
    margin-top: 4px!important;
    font-size: 15px;
  }
  .anchor-list__count{
    margin-top: 4px!important;
    font-size: 14px;
  }
}


/** ============================================================
 * 商品一覧
 * ========================================================== */
.content-block.bestseller{
  margin: 0;
}

/* 見出し */
.category-heading{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  margin: 100px 0 0!important;
  border-radius: 8px;
  background: linear-gradient(to right, #831A1F 0%, #CC1C24 50%, #A41B21 75%, #871A1F 100%);
  color: #fff;
  font-size: 26px!important;
  font-weight: 700!important;
  text-align: center;
}
.category-heading span{
  position: relative;
  display: inline-block;
}
.category-heading span::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: inline-block;
}

/* 見出し個別設定 */
.category-heading--cafe span{
  padding-left: 51px;
}
.category-heading--cafe span::before{
  background: url(/sites/default/files/media/office-products/lp-gift/image/icon_cafe.webp) no-repeat center / contain;
  width: 41px;
  height: 40px;
}
.category-heading--catalog span{
  padding-left: 52px;
}
.category-heading--catalog span::before{
  background: url(/sites/default/files/media/office-products/lp-gift/image/icon_catalog.webp) no-repeat center / contain;
  width: 44px;
  height: 36px;
}
.category-heading--sweets span{
  padding-left: 52px;
}
.category-heading--sweets span::before{
  background: url(/sites/default/files/media/office-products/lp-gift/image/icon_sweets.webp) no-repeat center / contain;
  width: 47px;
  height: 39px;
}
.category-heading--gift span{
  padding-left: 44px;
}
.category-heading--gift span::before{
  background: url(/sites/default/files/media/office-products/lp-gift/image/icon_gift.webp) no-repeat center / contain;
  width: 38px;
  height: 37px;
}


/* 一覧 */
.product-list{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 40px 0 0!important;
}
.product-list__item{
  display: block;
  width: calc((100% - 36px) / 4);
  padding: 30px 16px 44px;
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  box-shadow: 6px 6px 20px 0 rgba(39, 39, 39, .2);
}
.product-list__image{
  text-align: center;
}
.product-list__image img{
  width: 140px;
  object-fit: contain;
}
.product-list__detail{
  margin: 12px 0 0;
}


/* 商品コード装飾 */
.bootstrap .product-code {
  display: flex;
  align-items: center;
}
.bootstrap .product-code__name,
.bootstrap .product-code__num{
  display: flex;
  align-items: center;
  min-height: 28px;
}

.bootstrap .product-code__name {
  color: #FFF;
  font-size: 12px;
  line-height: 1;
  padding: 2px 5px;
  background-color: #666;
  border: 2px solid #666;
  border-radius: 4px 0 0 4px;
}
.bootstrap .product-code__num {
  color: #666;
  font-size: 14px;
  line-height: 1;
  padding: 2px 5px;
  background-color: #FFF;
  border: 2px solid #666;
  border-radius: 0 4px 4px 0;
}


/* タイトル以降 */
.product-list__title{
  margin: 16px 0 0!important;
  font-size: 18px!important;
  font-weight: bold!important;
  line-height: 1.3!important;
}
.product-list__price{
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  margin: 16px 0 0;
}
.product-list__price-item .price{
  font-size: 20px;
  font-weight: bold;
}
.product-list__price-item .fee{
  margin-left: 4px;
  font-size: 12px;
}


@media screen and (max-width: 768px) {
  /* 見出し */
  .category-heading{
    margin-top: 60px!important;
    font-size: 24px!important;
  }


  /* 一覧 */
  .product-list__item{
    width: calc(50% - 6px);
    padding: 15px 12px 24px;
  }
  .product-list__image img{
    width: 60px;
  }


  /* 商品コード装飾 */
  .bootstrap .product-code__name,
  .bootstrap .product-code__num{
    min-height: 21px;
    font-size: 9px;
  }


  /* タイトル以降 */
  .product-list__title{
    margin-top: 15px!important;
    font-size: 11px!important;
  }
  .product-list__price{
    margin-top: 15px;
  }
  .product-list__price-item .price{
    font-size: 14px;
  }
  .product-list__price-item .fee{
    font-size: 8px;
  }

}



/** ============================================================
 * 商品の検索方法
 * ========================================================== */
.content-block.search{
  margin-top: 100px;
}
.content-block.search picture{
  display: block;
  padding: 20px;
  margin: 40px 0 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .content-block.search{
    margin-top: 60px;
  }
  .content-block.search picture{
    margin-top: 20px;
  }
}


/** ============================================================
 * ご注文の流れ
 * ========================================================== */
.content-block.flow .intro-text{
  margin-top: 12px!important;
}

.flow-list{
  margin: 40px 0 0!important;
}
.flow-list__item{
  position: relative;
}
.flow-list__item:nth-child(n + 2){
  margin-top: 40px;
}
.flow-list__item:nth-child(n + 2)::before{
  content: "";
  position: absolute;
  top: -25px;
  left: 93px;
  display: inline-block;
  border-top: 15px solid #BC2739;
  border-right: 27px solid transparent;
  border-left: 27px solid transparent;
}
.flow-list__inner{
  display: flex;
  border: 1px solid #D9D9D9;
  border-radius: 8px;
  background: #F6F6F6;
  overflow: hidden;
}
.flow-list__head{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 240px;
  padding: 20px;
  background: #BC2739;
}
.flow-list__step{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: #BC2739;
  font-size: 20px;
  font-weight: bold;
}
.flow-list__title{
  margin: 18px 0 0!important;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}
.flow-list__body{
  display: flex;
  width: calc(100% - 240px);
  padding: 20px 30px;
}
.flow-list__body:not(.flow-list__body--col2){
  flex-direction: column;
  justify-content: center;
}
.flow-list__text{
  font-size: 18px;
  font-weight: 700;
}
.flow-list__note{
  font-weight: 500;
}

.payment-block{
  width: calc(50% - 15px);
  background: #fff;
  padding: 25px 30px 30px;
}
.payment-block + .payment-block{
  margin-left: 30px;
}
.payment-block__heading,
.payment-block__heading02{
  position: relative;
  padding-left: 32px;
  font-size: 18px;
  font-weight: 700;
}
.payment-block__heading::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: inline-block;
  width: 24px;
  height: 24px;
}
.payment-block__heading02::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: inline-block;
  width: 24px;
  height: 24px;
}
.payment-block__text,
.payment-block__link{
  margin: 10px 0 0!important;
}
.payment-block__text span{
  font-weight: 700;
}

.payment-block__link{
  position: relative;
  padding-left: 18px;
}
.payment-block__link::before{
  content: "";
  position: absolute;
  top: calc((1em * 1.5 - 12px) / 2);
  left: 0;
  display: inline-block;
  width: 12px;
  height: 12px;
  background: url(/sites/default/files/media/office-products/lp-gift/image/icon_arrow-rd-r.webp) no-repeat center / contain;
}

.payment-block--point{
  border-top: 5px solid #BC2739;
}
.payment-block--point .payment-block__heading,
.payment-block--point .payment-block__heading02,
.payment-block--point .payment-block__text span{
  color: #BC2739;
}
.payment-block--point .payment-block__heading::before{
  background: url(/sites/default/files/media/office-products/lp-gift/image/icon_point.webp) no-repeat center / contain;
}
.payment-block--point .payment-block__heading02::before{
  background: url(/sites/default/files/media/office-products/lp-gift/image/icon_invoice.webp?20260401) no-repeat center / contain;
}
.payment-block--credit{
  border-top: 5px solid #333333;
}

.payment-block--credit .payment-block__heading::before{
  background: url(/sites/default/files/media/office-products/lp-gift/image/icon_credit.webp) no-repeat center / contain;
}
@media screen and (max-width: 768px) {
  .flow-list__item:nth-child(n + 2)::before{
    left: 50%;
    transform: translateX(-50%);
  }
  .flow-list__inner{
    display: block;
  }
  .flow-list__head{
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    width: 100%;
    padding: 14px 12px;
  }
  .flow-list__step{
    width: 32px;
    height: 32px;
  }
  .flow-list__title{
    margin: 0!important;
  }
  .flow-list__body{
    display: block;
    width: 100%;
    padding: 12px;
  }
  .flow-list__text{
    font-size: 16px
  }
  .flow-list__note{
    font-size: 14px
  }

  .payment-block{
    width: 100%;
    padding: 25px 24px 30px;
  }
  .payment-block + .payment-block{
    margin: 20px 0 0;
  }

}