<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */

/* ----------
base
---------- */
div#base{
  width: 1200px;
} 
#mainContainer{
  color: #333;
  font: 500 14px 'Noto Serif JP', serif;
  line-height: 1.6;
  letter-spacing: 0;
  text-align: left;
}
@media screen and (max-width: 768px){
  div#base{
    width: 100%;
  } 
}
/* ----------
layout
---------- */
/* ラッパー */
.l_wrapper {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px){
  .l_wrapper {
    width: 100%;
  }
}

/* メインコンテンツ */
.l_mainContainer{
  order: 2;
  width: 970px;
}
@media screen and (max-width:768px){
  .l_mainContainer { width: 100%; }
  .l_wrapper { display: block; }
}

/* サイドナビ */
.l_sideNav{
  width: 200px;
  order: 1;
}

/* 節 */
.l_section{}
.l_section__item{}
.l_section--primary{}
.l_section--primary &gt; .l_section__item{
  padding-left: 20px;
  padding-right: 20px;
}
.l_section--primary &gt; .l_section__item--noPad{
  padding-left: 0;
  padding-right: 0;
}
.l_section--primary &gt; .l_section__item + .l_section__item{
  margin-top: 104px;
}
.l_section--secondary &gt; .l_section__item + .l_section__item{
  margin-top: 40px;
}
.l_section--tertiary &gt; .l_section__item + .l_section__item{
  margin-top: 16px;
}
.l_section--edit{}
.l_section--edit .ttl{
  margin-bottom: 8px;
  font-size: 16px;
}
.l_section--edit p + p,
.l_section--edit ul + p,
.l_section--edit p + ul{
  margin-top: 8px;
}
.l_section--edit div + div{
  margin-top: 16px;
}
.l_section--edit li + li{
  margin-top: 4px;
}

/* リスト */
.l_list{}
.l_list__item + .l_list__item{
  margin-top: 4px;
}

/* メディアデザイン */
.l_media{}
.l_media::after{
  content: "";
  display: block;
  clear: both;
}
.l_media__img{
  float: left;
  margin: 0 16px 16px 0;
}
.l_media__img--rev{
  float: right;
  margin: 0 0 16px 16px;
}
@media screen and (max-width: 599px){
  .l_media--resSmCancel .l_media__img{
    float: none;
    text-align: center;
    margin: 0 0 16px;
  }
}

/* グリッド */
.l_grid{
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
.l_grid__item{
  display: flex;
}
.l_grid__inner{
  display: block;
  width: 100%;
}
.l_grid--hasGutterMd{
  margin: -20px;
}
.l_grid--hasGutterMd &gt; .l_grid__item{
  padding: 20px;
}

.l_grid--recommend{
  margin: -20px;
}
.l_grid--recommend &gt; .l_grid__item{
  align-items: flex-start;
  padding: 20px;
}
.l_grid--recommend &gt; .l_grid__item:nth-of-type(2){
  margin-top: 32px;
}
.l_grid--recommend &gt; .l_grid__item:nth-of-type(3){
  margin-top: 64px;
}
@media screen and (max-width: 768px){
  .l_grid--recommend &gt; .l_grid__item{
    align-items: stretch;
  }
  .l_grid--recommend &gt; .l_grid__item:nth-of-type(2){
    margin-top: 0;
  }
  .l_grid--recommend &gt; .l_grid__item:nth-of-type(3){
    margin-top: 0;
  }
}
/* ナビ */
.l_nav{
  display: flex;
  align-items: stretch;
}
.l_nav__item{
  display: flex;
  width: 100%;
}
.l_nav__target{
  display: block;
  width: 100%;
}
.l_nav--local{
  padding: 0 12px;
}
.l_nav--local .l_nav__item{
  padding: 0 12px;
}
@media screen and (max-width: 599px){
  .l_nav{
    flex-wrap: wrap;
  }
  .l_nav__item{
    width: 50%;
  }
}

/* ----------
module
---------- */
/* ボタン */
.m_btn{
  display: flex;
  align-items: stretch;
}
.m_btn::before{
  content: "";
  display: block;
  width: 0; 
}
.m_btn__target{
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
}
.m_btn__inner{
  display: block;
}
.m_btn--center{
  justify-content: center;
}
.m_btn--cta{
  font-size: 16px;
}
.m_btn--cta::before{
  height: 2em;
}
.m_btn--cta .m_btn__target{
  width: 100%;
  max-width: 240px;
  border-radius: 100px;
  background: #222;
  color: #fff;
}
.m_btn--cta .m_btn__inner{
  position: relative;
  padding-left: 1.6em;
}
.m_btn--cta .m_btn__inner::before{
  content: "\f07a";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  height: 1em;
  margin: auto;
  line-height: 1;
  font-family: FontAwesome;
}

/* 見出し */
.m_heading{}
.m_heading__ttl{
  line-height: 1.4;
  font-weight: bold;
}
.m_heading__sub{
  font-weight: bold;
}
.m_heading--primary{
  display: flex;
  align-items: center;
  margin-bottom: 72px;
  color: #a27c52;
}
.m_heading--primary .m_heading__ttl{
  padding-left: 20px;
  font-size: 20px;
  line-height: 1;
}
.m_heading--primary .m_heading__sub{
  line-height: 0;
}
.m_heading--valentine{
  position: relative;
  z-index: 1;
  color: #aa3030;
}
.m_heading--valentine::before{
  content: url("../../img/buppan/img_monchamp-valentine.png");
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  display: block;
  width: 86px;
  height: 105px;
  margin: auto 0;
}
.m_heading--summerGift{
  position: relative;
  z-index: 1;
  color: #150F88;
}
.m_heading--summerGift::before{
  content: url("../../img/buppan/img_monchamp-summergift.png");
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  display: block;
  width: 114px;
  height: 91px;
  margin: auto 0;
}
.m_heading--recommend{
  color: #fff;
}
.m_heading--recommend .m_heading__ttl{
  margin-top: 16px;
}
.m_heading--chocolate{
  position: relative;
}
.m_heading--chocolate::before{
  content: url("../../img/buppan/img_monchamp-chocolate.png");
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  display: block;
  width: 213px;
  height: 172px;
  margin: auto 0;
}
.m_heading--baked{
  position: relative;
}
.m_heading--baked::before{
  content: url("../../img/buppan/img_monchamp-baked-sweets.png");
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  display: block;
  width: 205px;
  height: 185px;
  margin: auto 0;
}
.m_heading--sweets{
  position: relative;
}
.m_heading--sweets::before{
  content: url("../../img/buppan/img_monchamp-baked-sweets.png");
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  display: block;
  width: 205px;
  height: 185px;
  margin: auto 0;
}
.m_heading--sweets .m_heading__sub{
  line-height: 1;
  font-family: rage, serif;
  font-size: 80px;
  font-weight: normal;
}
.m_heading--coffee{
  position: relative;
}
.m_heading--coffee::before{
  content: url("/resource/img/buppan/img_monchamp-drink.png");
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  display: block;
  width: 205px;
  height: 185px;
  margin: auto 0;
}
.m_heading--coffee .m_heading__sub{
  line-height: 1;
  font-family: rage, serif;
  font-size: 80px;
  font-weight: normal;
}
@media screen and (max-width: 768px){
  .m_heading--primary{
    display: block;
    text-align: center;
  }
  .m_heading--primary .m_heading__ttl{
    padding-left: 0;
  }
  .m_heading--valentine::before{
    opacity: .4;
  }
  .m_heading--summerGift::before{
    opacity: .4;
  }
  .m_heading--chocolate::before{
    opacity: .4;
  }
  .m_heading--baked::before{
    opacity: .4;
  }
  .m_heading--sweets::before{
    opacity: .4;
  }
  .m_heading--coffee::before{
    opacity: .4;
  }
}
@media screen and (max-width: 599px){
  .m_heading--chocolate::before{
    opacity: .2;
  }
  .m_heading--baked::before{
    opacity: .2;
  }
}

/* 脚注 */
.m_footnote{
  display: flex;
  justify-content: flex-start;
}
.m_footnote__note{
  position: relative;
  padding-left: 1em;
  font-size: 12px;
  text-align: left;
}
.m_footnote__note::before{
  content: "※";
  position: absolute;
  left: 0;
  display: block;
}
.m_footnote--lead{
  justify-content: center;
}
@media screen and (max-width: 768px){
  .m_footnote--lead{
    justify-content: left;
  }
}
/* カード */
.m_card{
  display: flex;
  flex-direction: column;
  max-width: 280px;
  margin: 0 auto;
  transition: .7s opacity;
}
.m_card:hover{
  opacity: .7;
}
.m_card__img{
  line-height: 0;
  text-align: center;
  overflow: hidden;
}
.m_card__img img{
  width: 100%;
  height: auto;
  transition: .7s transform;
}
.m_card:hover .m_card__img img{
  transform: scale(1.2);
}
.m_card__body{
  flex: 1 1 auto;
  position: relative;
  margin-left: 20px;
  padding: 12px 16px 64px 16px;
  border-left: 1px solid;  
}
.m_card__body::before{
  content: "";
  position: absolute;
  top: 0;
  left: -1px;
  display: block;
  width: 1px;
  height: 40px;
  border-left: 1px solid #4c2607;
  transform: translateY(-100%);
}
.m_card__ttl{
  margin-bottom: 8px;
  font-weight: bold;
}
.m_card__footer{
  position: absolute;
  bottom: 0;
  right: 16px;
}
.m_card__price{
  font-size: 20px;
  text-align: right;
}
/* 期間限定価格の期限 */
.m_card__specialPrice{
  border: 2px solid #f11616;
  color: #f11616;
  font-family: "Noto Sans JP",sans-serif;
  font-size: 13px;
  font-weight: bold;
  line-height: 1;
  margin: 8px 0 0 auto;
  padding: .2em .5em;
  width: fit-content;
}
.m_card__specialPrice--rev {
  border-color: #fd0;
  color: #fd0;
}
.m_card__unit{
  font-size: 14px;
}
.m_card__shop{
  font-weight: bold;
  text-align: right;
}
.m_card__shop::before{
  content: url("../../img/buppan/icon_monchamp-shop.png");
  margin-right: 4px;
  vertical-align: -2px;
}
.m_card--colorTheme{
  color: #4c2607;
}
.m_card--colorTheme .m_card__msg{
  color: #333;
}
.m_card--recommend{
  color: #fff;
}
.m_card--recommend .m_card__body::before{
  border-color: #4c2607;
}
.m_card--recommend .m_card__shop::before{
  content: url("../../img/buppan/icon_monchamp-shop-w.png");
}
/* ヒーローズエリア */ 
.m_herosArea{}
.m_herosArea__icon{
  line-height: 0;
  text-align: center;
}
.m_herosArea__icon img{
  max-width: 100%;
  height: auto;
}
.m_herosArea__icon + .m_herosArea__keyvisual{
  margin-top: 24px;
}
.m_herosArea__keyvisual{
  position: relative;
  line-height: 0;
  text-align: center;  
}
.m_herosArea__keyvisual::before{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 20%;
  background: linear-gradient(to top, #fff 0, rgba(255, 255, 255, 0) 100%);
}
.m_herosArea__keyvisual + .m_herosArea__nav{
  margin-top: 16px;
}
.m_herosArea__nav + .m_herosArea__lead{
  margin-top: 40px;
}
.m_herosArea__lead{
  text-align: center;
}
.m_herosArea__leadItem + .m_herosArea__leadItem{
  margin-top: 24px;
}
@media screen and (max-width: 768px){
  .m_herosArea__lead{
    text-align: left;
  }
}

/* ローカルナビ */
.m_localNav{
  position: relative;
  padding: 24px 0;
  text-align: center;
  line-height: 1.3;
}
.m_localNav::before,
.m_localNav::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;  
}
.m_localNav::before{
  z-index: -2;
}
.m_localNav::after{
  z-index: -1;
  background: #fff;
  transition: .7s opacity;
}
.m_localNav:hover::after{
  opacity: 0;
}
.m_localNav__en{
  font-family: 'Prata', serif;
  font-weight: bold;
}
.m_localNav__en + .m_localNav__ttl{
  margin-top: 8px;
}

.m_localNav__ttl{
  font-size: 12px;
  font-weight: bold;
  font-family: 'Noto Serif JP', serif;
}
.m_localNav--colorTheme::before{
  background: url(../../img/buppan/nav_monchamp.png)  no-repeat center center / contain;
}
.m_localNav--colorTheme &gt; .m_localNav__en{
  color: #4c2607;
}
.m_localNav--colorTheme &gt; .m_localNav__ttl{
  color: #896239;
}
@media screen and (max-width: 599px){
  .m_localNav{
    padding: 12px 0;
  }
}

/* バレンタイン */
.m_valentine{
  position: relative;
  margin-bottom: calc(-1 * 104px - 100% * 0.05);
  overflow: hidden;
}
.m_valentine__body{
  padding: 40px 20px calc(100% * 140 / 970);
  border-top: calc(970px * 14 / 970) solid transparent;
  background: #ffe5e3;
  background-clip: padding-box;
}
.m_valentine::before{
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 970px;
  padding-top: calc(970px * 14 / 970);
  background: url(/resource/img/buppan/bg_monchamp-valentine.png) no-repeat center top / cover;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px){
  .m_valentine{
    width: calc(105% + 20px);
    margin-left: calc(-1 * 10px - 2.5%);
  }
  .m_valentine__body{
    padding-left: calc(20px + 10px + 2.5%);
    padding-right: calc(20px + 10px + 2.5%);
  }
}
/* ホワイトデー */
.m_whiteday{
  position: relative;
  margin-bottom: calc(-1 * 104px - 100% * 0.05);
  overflow: hidden;
}
.m_whiteday__body{
  padding: 40px 20px calc(100% * 140 / 970);
  border-top: calc(970px * 14 / 970) solid transparent;
  background: #ebfdff;
  background-clip: padding-box;
}
.m_whiteday::before{
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 970px;
  padding-top: calc(970px * 14 / 970);
  background: url(/resource/img/buppan/bg_monchamp-whiteday.png) no-repeat center top / cover;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px){
  .m_whiteday{
    width: calc(105% + 20px);
    margin-left: calc(-1 * 10px - 2.5%);
  }
  .m_whiteday__body{
    padding-left: calc(20px + 10px + 2.5%);
    padding-right: calc(20px + 10px + 2.5%);
  }
}
/* サマーギフト */
.m_summerGift{
  position: relative;
  margin-bottom: calc(-1 * 104px - 100% * 0.05);
  overflow: hidden;
}
.m_summerGift__body{
  padding: 40px 20px calc(100% * 140 / 970);
  border-top: calc(970px * 14 / 970) solid transparent;
  background: #E8F1F1;
  background-clip: padding-box;
}
.m_summerGift::before{
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 970px;
  padding-top: calc(970px * 14 / 970);
  background: url(/resource/img/buppan/bg_monchamp-summergift.png) no-repeat center top / cover;
  transform: translateX(-50%);
}
.m_summerGift .m_card__body,
.m_summerGift .m_card__body::before { border-color: #150f88; }
.m_summerGift .m_card__img img { filter: brightness(1.1); }
.m_summerGift .m_card__shop::before { filter: hue-rotate(210deg); }
.m_summerGift .m_card__ttl,
.m_summerGift .m_card__footer { color: #150f88; }
@media screen and (max-width: 768px){
  .m_summerGift{
    width: calc(105% + 20px);
    margin-left: calc(-1 * 10px - 2.5%);
  }
  .m_summerGift__body{
    padding-left: calc(20px + 10px + 2.5%);
    padding-right: calc(20px + 10px + 2.5%);
  }
}

/* レコメンド */
.m_recommend {
  position: relative;
  margin-top: calc(100% * 0.05);
  margin-bottom: calc(100% * 0.05);
  padding-top: calc(100% * 0.05);
  padding-bottom: calc(100% * 0.05);
}
.m_recommend__body {
  z-index: 10;
  position: relative;
  padding-bottom: 24px;
}
.m_recommend__item {
  -webkit-backface-visibility: hidden;
  z-index: 9;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  backface-visibility: hidden;
  transform: skewY(5deg) translateY(-50%);
}
.m_recommend__item--rev{
  height: 90%;
  transform: skewY(-5deg) translateY(-50%); 
}
.m_recommend__item::before{
  -webkit-backface-visibility: hidden;
  box-sizing: content-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  padding: calc(100% * 0.05) 0;
  transform: translate(-50%, -50%) skewY(-5deg);
  backface-visibility: hidden;
  content: "";
}
.m_recommend__item::before{
  background: url("../../img/buppan/back-ground_monchamp-recommend-brown.jpg") no-repeat center center / cover;
  opacity: .9;
}
.m_recommend__item--rev::before{
  transform: translate(-50%, -50%) skewY(5deg);
}
.m_recommend__item--rev::before{
  background-image: url("../../img/buppan/back-ground_monchamp-recommend-yellow.jpg");
  opacity: 1;
}
.m_recommend__item--rev::after{
  background-color: rgba(244, 191, 47, 0.7);
}

@media screen and (max-width: 768px){
  .m_recommend__item{
    width: calc(100vw + 20px);
    margin-left: calc(-5% - 10px);
  }
  .m_recommend__item--rev{
    height: 95%;
  }
}
@media screen and (max-width: 599px){
  .m_recommend__item--rev{
    height: 98%;
  }
}

/**********
utility
**********/
/*横幅*/
.u_col1{width:8.333%;}
.u_col2{width:16.667%;}
.u_col3{width:25%;}
.u_col4{width:33.333%;}
.u_col5{width:41.666%;}
.u_col6{width:50%;}
.u_col7{width:58.333%;}
.u_col8{width:66.666%;}
.u_col9{width:75%;}
.u_col10{width:83.33%;}
.u_col11{width:91.666%;}
.u_col12{width:100%;}
@media screen and (max-width:768px){
  .u_resMdCol1{width:8.333%;}
  .u_resMdCol2{width:16.667%;}
  .u_resMdCol3{width:25%;}
  .u_resMdCol4{width:33.333%;}
  .u_resMdCol5{width:41.666%;}
  .u_resMdCol6{width:50%;}
  .u_resMdCol7{width:58.333%;}
  .u_resMdCol8{width:66.666%;}
  .u_resMdCol9{width:75%;}
  .u_resMdCol10{width:83.33%;}
  .u_resMdCol11{width:91.666%;}
  .u_resMdCol12{width:100%;}
}
@media screen and (max-width:599px){
  .u_resSmCol1{width:8.333%;}
  .u_resSmCol2{width:16.667%;}
  .u_resSmCol3{width:25%;}
  .u_resSmCol4{width:33.333%;}
  .u_resSmCol5{width:41.666%;}
  .u_resSmCol6{width:50%;}
  .u_resSmCol7{width:58.333%;}
  .u_resSmCol8{width:66.666%;}
  .u_resSmCol9{width:75%;}
  .u_resSmCol10{width:83.33%;}
  .u_resSmCol11{width:91.666%;}
  .u_resSmCol12{width:100%;}
}

/* 間隙 */
.u_mb40{
  margin-bottom: 40px;
}
.u_mb64{
  margin-bottom: 64px;
}
.u_pb40{
  padding-bottom: 40px;
}

/* フォントサイズ */
.u_fs12{
  font-size: 12px;
}

/*表示*/
.u_hide{
  display: none;
}
@media screen and (max-width:768px){
  .u_resMdHide{
    display: none;
  }
  .u_resMdInline{
    display: inline;
  }
}

@media screen and (max-width:599px){
  .u_resSmHide{
    display: none;
  }
  .u_resSmInline{
    display: inline;
  }
}</pre></body></html>