@charset "shift_jis";

/* -----------------------------------------------------------
 共通タグ
----------------------------------------------------------- */
*{ margin:0; padding:0;}
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --orange: #E8793A;
      --orange-hover: #d06830;
      --orange-light: #FFF3EC;
      --text-dark: #3a3a3a;
      --text-mid: #666;
      --text-light: #999;
      --bg: #fafaf8;
      --card-bg: #ffffff;
      --radius: 14px;
      --shadow: 0 4px 20px rgba(0,0,0,0.07);
    }

a{
    outline: none;
    text-decoration: none!important;
}

a:focus{outline:none;}
img{
	vertical-align:bottom;
	border: none;
	}



#pro_wrapper{
	width:100%;
	font-size:12px;
-webkit-text-size-adjust: 100%;	
font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
}
p, dl, dt, dd, ul li{
	margin: 0px;
	padding: 0px;
}
h4, h5{
	margin: 0px 0px 0px 0px;
	padding: 0px;
}
li{ list-style-type: none;}
.contbox{
	width: 100%;
    font-size: 1.0rem;
    font-weight: 300;
    line-height: 1.6rem;
}
.mv-bg{
        background-color: #f4b0a3;
}
.cont-bg{
      background: var(--bg);
}
.alpha a:hover {
  opacity: 0.9;
  filter: alpha(opacity=90);
  -ms-filter: "alpha(opacity=90)";
}

.alpha_item  {
  opacity: 0.8;
  filter: alpha(opacity=80);
  -ms-filter: "alpha(opacity=80)";
}

.w_80{
 width: 80%;
 margin: 0 auto;
}
.w_90{
 width: 90%;
 margin: 0 auto;
}

.mv-pc{
width: 1000px;
	margin: 0 auto;
}
.bg-mv-pc{
   
}
.page__inner{
   width: 100%!important; 
}
/* mv images */
    /* Promo bar */
    .promo-bar {
      background: #e63946;
      color: #fff;
      text-align: center;
      padding: 14px 20px;
      font-size: clamp(15px, 3vw, 20px);
      font-weight: 900;
      letter-spacing: 0.08em;
    }
    .mv-bg {
      width: 100%;
      background-color: #f4b0a3;
    }

    .mv {
      max-width: 800px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .mv img {
      display: block;
      width: 100%;
      height: auto;
    }


.item-box {
      max-width: 960px;
      margin: 0 auto;
      padding: 48px 20px 64px;
    }

    /* item-namebox */
    .item-namebox {
      text-align: center;
      margin-bottom: 40px;
    }

    .item-namebox-brand {
      display: inline-flex;
      align-items: center;
      /*gap: 8px;*/
      font-size: 16px;
      font-weight: 700;
      letter-spacing: 0.12em;
      color: var(--orange);
      margin-bottom: 10px;
    }

   /* .item-namebox-brand::before,
    .item-namebox-brand::after {
      content: '';
      display: block;
      width: 28px;
      height: 1.5px;
      background: var(--orange);
    }*/

    .item-namebox-title {
      font-size: clamp(18px, 4vw, 24px);
      font-weight: 700;
      color: var(--text-dark);
      letter-spacing: 0.05em;
      line-height: 1.5;
      margin-bottom: 12px;
    }

    .item-namebox-desc {
      font-size: clamp(16px, 2.5vw, 16px);
      color: var(--text-mid);
      line-height: 1.8;
      max-width: 960px;
      margin: 0 auto;
    }

    /* Grid */
    .product-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 40px;
    }

    /* Card */
    .product-card {
      background: var(--card-bg);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      display: flex;
      flex-direction: column;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .product-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 32px rgba(0,0,0,0.12);
    }
/* Sale banner */
    .card-sale-banner {
      background: #e63946;
      color: #fff;
      text-align: center;
      padding: 10px 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .card-sale-banner .sale-discount {
      font-size: clamp(20px, 3vw, 26px);
      font-weight: 900;
      letter-spacing: 0.04em;
      line-height: 1;
    }

    .card-sale-banner .sale-date {
      font-size: clamp(11px, 1.8vw, 13px);
      font-weight: 700;
      letter-spacing: 0.05em;
      opacity: 0.92;
      white-space: nowrap;
    }

    .card-sale-banner .sale-divider {
      width: 1px;
      height: 22px;
      background: rgba(255,255,255,0.5);
    }
/* Image area */
    .card-image-wrap {
      position: relative;
      background: #f7f3ee;
      width: 350px;
      height: 350px;
      overflow: hidden;
      margin: 0 auto;
    }

    .card-image-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }



    /* Badge */
    .card-badge {
      position: absolute;
      top: 10px;
      right: 10px;
      background: var(--orange);
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.08em;
      padding: 3px 9px;
      border-radius: 20px;
    }

    /* Card body */
    .card-body {
      padding: 16px 18px 20px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      flex: 1;
    }

    .card-meta {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .card-flavor {
      font-size: clamp(20px, 2.5vw, 17px);
      font-weight: 700;
      color: var(--text-dark);
      letter-spacing: 0.03em;
    }

    .card-tag {
      font-size: 14px;
      color: var(--text-light);
      background: #f0ede8;
      padding: 3px 10px;
      border-radius: 20px;
      font-weight: 500;
      white-space: nowrap;
      margin-left: 10px;
    }

    /* CTA Button */
    .card-btn {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--orange);
      color: #fff!important;
      text-decoration: none;
      font-size: clamp(16px, 2vw, 16px);
      font-weight: 700;
      letter-spacing: 0.06em;
      padding: 20px 20px;
      border-radius: 50px;
      transition: background 0.2s ease, transform 0.15s ease;
      cursor: pointer;
      border: none;
      width: 100%;
    }

    .card-btn::after {
      content: '>';
      position: absolute;
      right: 30px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 18x;
      font-weight: 700;
      transition: right 0.2s ease;
    }

    .card-btn:hover {
      background: var(--orange-hover);
      transform: scale(1.02);
    }

    .card-btn:active {
      transform: scale(0.98);
    }

    .card-btn:hover::after {
      right: 26px;
    }

    /* Divider */
    .divider {
      /*width: 40px;
      height: 2px;
      background: #e8e0d8;
      margin: 0;*/
    }

    /* Responsive */
    @media (max-width: 600px) {
      .item-namebox-desc {
      text-align: left;
    }
      .section {
        padding: 32px 16px 48px;
      }

      .product-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .card-image-wrap {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
      }

      .card-body {
        padding: 12px 14px 16px;
        gap: 10px;
      }

      .card-btn {
        padding: 15px 14px;
        font-size: 16px;
      }
    }

    /* Fade-in animation */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .item-namebox {
      animation: fadeUp 0.5s ease both;
    }

    .product-card {
      animation: fadeUp 0.5s ease both;
    }

    .product-card:nth-child(1) { animation-delay: 0.1s; }
    .product-card:nth-child(2) { animation-delay: 0.18s; }
    .product-card:nth-child(3) { animation-delay: 0.26s; }
    .product-card:nth-child(4) { animation-delay: 0.34s; }

/*お問い合わせ*/
.btn-bg{
	background-color: #fde7f6;
	width: 100%;
}
.btn-box{
	margin: 0 auto;
	padding:  2rem 0;
}
.btn a {
  position: relative;
  display: block;
 width: 500px;
  padding: 25px 0;
  background-color: #de51af;
  border-radius: 60px;
  font-size: 1.4rem;;
   font-weight: 700;
  color: #FFFFFF!important;
  text-decoration: none;
  text-align: center;
  margin: 0 auto;
}
 
.btn a:link{
	color: #FFFFFF!important;
	text-decoration: none;
}
.btn a:hover{
	color: #FFFFFF!important;
	text-decoration: none;
}

/* アイコンのスタイル */
.btn-arrow-right a::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 27px;
  width: 12px;
  height: 12px;
  margin: auto;
  border-top: 2px solid #FFFFFF;
  border-right: 2px solid #FFFFFF;
  transform: rotate(45deg);
  box-sizing: border-box;
}
.btn-inner h3{
	color: #FFFFFF;
	font-size: 1.2rem;
	text-align: center;
	line-height: 2.4rem;
	font-weight: 700;
	margin-bottom: 2rem;
}

/*PCとSPで出しわける用*/
.pc {
    display: block;
  }
  .sp {
    display: none;
  }
  
@media screen and (min-width: 350px) and (max-width: 768px){
    .pc {
      display: none;
    }
    .sp {
      display: block;
    }
  }
@media screen and (min-width: 350px) and (max-width: 768px){


	/*お問い合わせ*/
.btn-bg{
	background-color: #fde7f6;
	width: 100%;
}
.btn-box{
	margin: 0 auto;
	padding: 2rem 0;
}
.btn a {
  position: relative;
  display: block;
  width: 100%;
  padding: 15px 90px;
  background-color: #de51af;
  border-radius: 60px;
  font-size: 1rem;;
   font-weight: 700;
  color: #FFFFFF!important;
  text-decoration: none;
  text-align: center;
  margin: 0 auto;
}
.btn a:link{
	color: #FFFFFF!important;
	text-decoration: none;
}
.btn a:hover{
	color: #FFFFFF!important;
	text-decoration: none;
}
.btn-box{
	margin: 0 auto;
	padding: 1rem 0;
}
.btn-box-orange{
	margin: 0 auto;
	padding: 2rem 0;
}
.btn-orange a {
  position: relative;
  display: block;
  width: 100%;
  padding: 15px 50px;
  background-color: #eb8029;
  border-radius: 60px;
  font-size: 1rem;;
   font-weight: 700;
  color: #FFFFFF!important;
  text-decoration: none;
  text-align: center;
  margin: 0 auto;
}
.btn-orange a:link{
	color: #FFFFFF!important;
	text-decoration: none;
}
.btn-orange a:hover{
	color: #FFFFFF!important;
	text-decoration: none;
}


/* アイコンのスタイル */
.btn-arrow-right a::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 27px;
  width: 12px;
  height: 12px;
  margin: auto;
  border-top: 2px solid #FFFFFF;
  border-right: 2px solid #FFFFFF;
  transform: rotate(45deg);
  box-sizing: border-box;
}


	.w1000px {
width: 90%;
max-width: 90%;
margin: 0 auto;
} 


}
/* -----------------------------------------------------------
 ↑↑↑↑↑ CSSの追記はここまで ↑↑↑↑↑
----------------------------------------------------------- */



/* for IE7 only */
*:first-child+html div,
*:first-child+html ul,
*:first-child+html ol,
*:first-child+html dl,
*:first-child+html .clearfix{
height:1%;
}

