
@charset "utf-8";
/* CSS Document */

/*==========================================================================================

初期設定

==========================================================================================*/


p {
  margin: 0;
}

main {
  display:block!important;
  padding-bottom: 0;
  margin-bottom: 0;
}

h3 {
  color: #00a960;
  border: solid 2px #00a960;
  padding: 0.5em;
  border-radius: 0.5em;
  margin: 20px;
  text-align: center
}
.toweb {
  background:#000;
  color:#fff;
}
.toweb:hover {
  background:#ececec;
  color: #333;
}


/*==========================================================================================

共通

==========================================================================================*/
.feature {
  background: #f6c53e;
  padding: 40px 0 0;
  position: relative;
  z-index: 1;
}

.feature::before {
  position: fixed;
  content: "";
  display: block;
  background: url(/menu/images/deco_chocolate.webp) no-repeat top/contain;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/*TB*/
@media screen and (max-width: 767px) {  
  .feature::before {
    background: url(/menu/images/deco_chocolate_sp.webp) no-repeat top/contain;
  }
}

.cntbox {
  background: #835f48;
  box-sizing: border-box;
  max-width: 980px;
  margin: 0px auto;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.cntbox .image.ttlimg,
.cntbox .image.ttlimg img{
  border-radius: 20px 20px 0 0;
}

/*TB*/
@media screen and (max-width: 767px) {
  
  .feature {
    padding: 15px 0 0;
  }
  
  .cntbox {
    box-sizing: border-box;
    margin:0 20px;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
  }
  
  .cntbox .image.ttlimg,
  .cntbox .image.ttlimg img {
    border-radius: 20px 20px 0 0;
    text-align: center;
  }

}

/*SP*/
@media screen and (max-width: 767px) {  
  .cntbox {
    box-sizing: border-box;
    margin:0 15px;
  }
}

/*==========================================================================================

padding設定

==========================================================================================*/
.pd_30 {
  padding: 65px 25px 70px;
}

@media print, screen and (max-width:480px) {
  .pd_30 {
    padding: 30px 10px 0;
  }

}

/*==========================================================================================

リード文

==========================================================================================*/
.feature .cntbox .lead{
  font-size: 25px;
  font-weight: 700;
  text-align: center;
  line-height: 40px;
  margin-top: 40px;
}

/*SP～TB*/
@media print, screen and (max-width: 767px) {
  .feature .cntbox .lead{
    font-size: 20px;
    line-height: 32px;
    margin-top: 30px;
  }  
}

/*SP*/
@media print, screen and (max-width:480px) {
  .feature .cntbox .lead{
    font-size: 17px;
    line-height: 28px;
    margin-top: 20px;
    padding: 0 10px;
  }

}



/*=============================================

商品画像

=============================================*/
.feature .product_img_area {
  /* margin: 0 auto 0; */
  width: 100%;
}

.feature .product_img_area .product_img {
  display: flex;
  flex-wrap: wrap;
  margin: 60px auto 10px;
  gap: 0 15px;
}

.feature .product_img_area .product_img .image {
  border: solid 1px #fff;
  box-sizing: border-box;
  width: calc((100% - 30px) / 3);
}

.feature .caption_area .caption_text_right {
  text-align: right;
  color: #fff;
  font-size: 15px;
}

@media print, screen and (max-width:767px) {
  .feature .product_img_area .product_img {
    gap: 0 10px;
    margin: 35px auto 10px;
  }

  .feature .product_img_area .product_img .image {
    width: calc((100% - 20px) / 3);
  }
}
/*SP*/
@media print, screen and (max-width:480px) {
  .feature .product_img_area {
    margin: 30px auto 0;
  }
  
  .feature .product_img_area .product_img {
    gap: 0 5px;
  }

  .feature .product_img_area .product_img .image {
    width: calc((100% - 10px) / 3);
  }
  
  .feature .caption_area .caption_text_right {
    padding-right: 0;
    font-size: 14px;
  }

}


/*=============================================

クーポン詳細

=============================================*/
.feature .coupon_area {
  margin: 40px auto 0px;
}

.feature .coupon_area .image {
  width: 100%;
}


/*SP*/
@media print, screen and (max-width:480px) {
  .feature .coupon_area {
    margin: 30px auto 40px;
  }
}


/*=============================================

モーダル

=============================================*/
/* モーダルを開くボタンのスタイル */
.open-modal {
  padding: 15px 30px;
  background-color: #fff;
  color: #75503c;
  border: none;
  cursor: pointer;
  border-radius: 50px;
  max-width: 415px;
  font-size: 25px;
  font-weight: 600;
  position: relative;
}
/* モーダルを開くボタン 装飾 */
.open-modal::before,
.open-modal::after {
  position: absolute;
  content: "";
  display: block;
  background: url(/menu/images/deco_pink_heart.webp) no-repeat center/contain;
  bottom: 0;
  width: 62px;
  height: 65px;
  visibility: visible;
}

.open-modal::before {
  left: -30%;
}

.open-modal::after {
  right: -30%;
  transform: scaleX(-1);
}

.button {
  display: none;
}


/* モーダルの基本スタイル */
.modal {
  display: none; /* 初期状態では非表示 */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff9de;
  padding: 33px 40px 35px;
  max-width: 800px;
  height: 60%;
  border-radius: 35px;
  overflow: scroll;
}

.modal-content::-webkit-scrollbar {
  width: 13px;
}

.modal-content::-webkit-scrollbar-track {
  background-color: transparent;
}

.modal-content::-webkit-scrollbar-thumb {
  background-color: #52301e;
  border-radius: 8px;
}

#closeModal {
  font-size: 2.8em;
  font-weight: 400;
  cursor: pointer;
  float: right;
  position: absolute;
  display: table-cell;
  width: 50px;
  height: 50px;
  background-color: #52301e;
  color: #fff7d7;
  border-radius: 50px;
  border: solid #fff7d7 2px;
  right: -0.3vw;
  top: 0;
  transform: translate(-10px, 10px);
  z-index: 3;
}

h2#modal_title {
  font-size: 30px;
  letter-spacing: 9px;
  line-height: 1.2em;
}

span.small_en {
  font-size: 22px;
  letter-spacing: 9px;
}

.brand_list {
  text-align: left;
  margin-top: 2em;
}

p.store_name {
  font-size: 17px;
  font-weight: bold;
  border-bottom: solid 1px;
  display: inline-block;
  margin-bottom: 1em;
}

p.modal_description {
  font-size: 17px;
  line-height: 1.8em;
  font-weight: 500;
}

span.red_tx {
  color: red;
  font-size: 15px;
}

p.modal_caution {
  text-align: right;
  margin-top: 2em;
  font-weight: 400;
}

.no_scroll {
  overflow: hidden;
}

.br-sp {
  display: none;
}

.modal_description span.small_tx {
  padding-right: 3px;
  font-size: 14px;
}

@media print, screen and (max-width:767px){
  /* モーダルを開くボタンのスタイル */
  .open-modal {
    font-size: 22px;
  }
  
  /* モーダルを開くボタン 装飾 */
  .open-modal::before,
  .open-modal::after {
    width: 8vw;
    height: 9vw;
  }
  
  .open-modal::before {
    left: -12vw;
  }

  .open-modal::after {
    right: -12vw;
  }
  
  #closeModal {
    font-size: 2.4em;
  }
  .modal-content {
    width: 60%;
    height: 50%;
    padding: 30px 40px 30px 30px;
  }
  
  p.modal_description {
    font-size: 15px;
    line-height: 1.5em;
  }
  
  p.modal_caution {
    text-align: left;
    font-size: 13px;
    font-weight: 500;
    padding-left: 13px;
    text-indent: -13px;
  }
  .modal_description span.small_tx {
    font-size: 12px;
  }
}

@media print, screen and (max-width:480px){
  /* モーダルを開くボタンのスタイル */
  .open-modal {
    font-size: 16px;
    font-weight: 600;
    padding: 13px 25px;
  }

  .modal-content {
    height: 65%;
    border-radius: 30px;
  }
  
  #closeModal {
    font-size: 1.7em;
    width: 35px;
    height: 35px;
    transform: translate(-5px, 10px);
  }
  
  h2#modal_title {
    font-size: 25px;
    line-height: 1em;
  }
  
  span.small_en {
    font-size: 17px;
  }
  
  p.modal_description {
    /*text-wrap: balance;*/ /* 文節ごとの美しさを優先 */
    /*word-break: auto-phrase;*/ /* 単語の途中での改行を避ける */
  }
  
  span.red_tx {
    font-size: 13px;
  }
  
  .br-sp {
    display: block;
  }
}



