/* ==================================================
   alacarte.css
   2万円以下特集ページ専用CSS
================================================== */

/* 全体 */
body{
  margin:0;
  font-family:"Yu Gothic","Meiryo",sans-serif;
  color:#555;
  line-height:1.9;
  background:linear-gradient(180deg,#fffaf7,#ffffff);
}

.container{
  max-width:1100px;
  margin:0 auto;
  padding:24px;
  text-align:center;
}

.section{
  margin:80px auto;
}

h1,h2,h3{
  color:#6b3f3f;
  font-weight:400;
  letter-spacing:.04em;
}

h1{
  font-size:clamp(30px,5vw,52px);
  line-height:1.5;
}

h2{
  font-size:clamp(24px,3vw,34px);
  line-height:1.6;
}

p{
  font-size:17px;
}

/* 上部リンク */
.top-links{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:12px;
  margin:20px 0 50px;
}

/* 共通ボタン */
.mini-btn,
.btn,
.btn-soft,
.product-btn,
.back-btn{
  display:inline-block;
  padding:12px 26px;
  border-radius:999px;
  text-decoration:none;
  letter-spacing:.04em;
  transition:.25s;
}

/* 白ボタン系 */
.mini-btn,
.btn-soft{
  background:#fff;
  color:#9b7770;
  border:1px solid #dfd1cc;
  box-shadow:0 3px 8px rgba(0,0,0,.05);
}

/* 色ボタン系 */
.btn,
.product-btn,
.back-btn{
  background:#c7a39b;
  color:#fff;
  border:1px solid #c7a39b;
  box-shadow:0 4px 12px rgba(0,0,0,.08);
}

/* hover */
.mini-btn:hover,
.btn-soft:hover,
.btn:hover,
.product-btn:hover,
.back-btn:hover{
  text-decoration:none;
  transform:translateY(-2px);
  box-shadow:0 8px 20px rgba(0,0,0,.12);
}

.mini-btn:hover,
.btn-soft:hover{
  background:#fff;
  color:#b08a82;
  border-color:#dfd1cc;
}

.btn:hover,
.product-btn:hover,
.back-btn:hover{
  background:#b8958d;
  color:#fff;
  border-color:#b8958d;
}

/* 固定ボタン */
.back-btn{
  position:fixed;
  right:20px;
  bottom:120px;
  z-index:9999;
  font-size:14px;
}

/* HERO */
.hero{
  text-align:center;
  padding:90px 20px 70px;
}

.hero-text,
.section-lead{
  font-size:18px;
  color:#666;
}

.hero-image,
.brand-image{
  width:100%;
  max-width:860px;
  border-radius:28px;
  box-shadow:0 18px 45px rgba(0,0,0,.08);
  margin-top:35px;
}

/* 共通ボックス */
.box,
.notice-box,
.rose-note,
.one-rose-box,
.next-budget-box,
.all-products-box,
.brand-message,
.shop-info,
.footer-note{
  max-width:960px;
  margin-left:auto;
  margin-right:auto;
  background:rgba(255,255,255,.9);
  border:1px solid #eadede;
  border-radius:28px;
  padding:50px 35px;
  box-shadow:0 12px 35px rgba(0,0,0,.045);
}

.notice-box,
.rose-note{
  max-width:900px;
}

.notice-box strong{
  color:#d33;
}

/* キャッチコピー */
.catch-copy{
  text-align:center;
  padding:50px 20px;
}

.catch-copy h2{
  color:#b85c5c;
}

/* フェードスライド */
.main_imgBox{
  position:relative;
  width:100%;
  max-width:920px;
  height:520px;
  margin:0 auto;
  overflow:hidden;
  border-radius:30px;
  box-shadow:0 18px 45px rgba(0,0,0,.08);
}

.main_img{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  animation:fadeGallery 25s infinite;
}

.main_img:nth-child(1){animation-delay:0s;}
.main_img:nth-child(2){animation-delay:5s;}
.main_img:nth-child(3){animation-delay:10s;}
.main_img:nth-child(4){animation-delay:15s;}
.main_img:nth-child(5){animation-delay:20s;}

@keyframes fadeGallery{
  0%{opacity:0; transform:scale(1);}
  8%{opacity:1;}
  28%{opacity:1; transform:scale(1.04);}
  36%{opacity:0;}
  100%{opacity:0;}
}







/* フェードスライド */
.main_imgBox{
  position:relative;
  width:100%;
  max-width:920px;
  height:520px;
  margin:0 auto;
  overflow:hidden;
  border-radius:30px;
  box-shadow:0 18px 45px rgba(0,0,0,.08);
}

/* 各画像 */
.main_img{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;

  /* 少し短く＆ふわっと */
  animation:fadeGallery 18s infinite ease-in-out;
}


.main_img{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;

  /* 15秒で1周 */
  animation:fadeGallery 15s infinite ease-in-out;
}

/* 5枚 */
.main_img:nth-child(1){animation-delay:0s;}
.main_img:nth-child(2){animation-delay:3s;}
.main_img:nth-child(3){animation-delay:6s;}
.main_img:nth-child(4){animation-delay:9s;}
.main_img:nth-child(5){animation-delay:12s;}

/* ふわっと切替 */
@keyframes fadeGallery{

  0%{
    opacity:0;
    transform:scale(1);
    filter:blur(5px);
  }

  10%{
    opacity:1;
    filter:blur(0);
  }

  30%{
    opacity:1;
    transform:scale(1.04);
    filter:blur(0);
  }

  42%{
    opacity:0;
    transform:scale(1.07);
    filter:blur(4px);
  }

  100%{
    opacity:0;
    transform:scale(1.07);
    filter:blur(4px);
  }
}











/* アラカルト見出し */
.alacarte-title{
  text-align:center;
  padding:50px 20px;
}

.eyebrow{
  color:#b85c5c;
  font-size:14px;
  font-weight:bold;
  letter-spacing:.16em;
  margin-bottom:10px;
}

/* 1輪保存 */
.one-rose-text{
  text-align:center;
  margin-bottom:35px;
}

.one-rose-visual{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:24px;
  flex-wrap:wrap;
  margin-top:35px;
}

.one-rose-visual img{
  width:280px;
  max-width:100%;
  border-radius:24px;
  box-shadow:0 10px 28px rgba(0,0,0,.08);
}

.arrow{
  font-size:34px;
  color:#b85c5c;
}

/* 商品一覧 */
.budget-products{
  text-align:center;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:28px;
  margin-top:40px;
}

.product-card{
  background:#fff;
  border:1px solid #eadede;
  border-radius:24px;
  padding:24px 20px;
  text-align:center;
  box-shadow:0 8px 25px rgba(0,0,0,.05);
  transition:.25s;
}

.product-card:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 35px rgba(0,0,0,.09);
}

.product-card a{
  text-decoration:none;
  color:inherit;
}

.product-img{
  width:100%;
  height:230px;
  object-fit:cover;
  border-radius:20px;
  margin-bottom:15px;
  box-shadow:0 4px 14px rgba(0,0,0,.05);
}

.product-card h3{
  color:#6b3f3f;
  font-size:18px;
  margin:10px 0;
}

.old-price{
  color:#999;
  text-decoration:line-through;
  margin-bottom:4px;
}

.sale-price,
.price{
  color:#e42e2e;
  font-size:20px;
  font-weight:bold;
  margin-bottom:16px;
}

/* 個別画像調整 */
.img-tall{
  object-fit:contain;
  height:300px;
  background:#fffaf7;
}

/* 画像列 */
.next-image-row{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
  gap:18px;
  margin:30px auto;
}

.next-image-row img{
  width:100%;
  height:150px;
  object-fit:cover;
  border-radius:20px;
  background:#fffaf7;
  box-shadow:0 8px 22px rgba(0,0,0,.06);
}

/* 店舗情報 */
.shop-card{
  background:#fffaf7;
  border-radius:22px;
  padding:28px;
  margin:25px auto 0;
  max-width:520px;
}

/* 補足 */
.note{
  font-size:14px;
  color:#777;
}

.red{
  color:#b00000;
}

.bold{
  font-weight:bold;
}

.text-center{
  text-align:center;
}

.footer-note{
  font-size:.95em;
  color:#666;
}

/* スマホ */
@media(max-width:768px){

  .container{
    padding:14px;
  }

  .section{
    margin:55px auto;
  }

  .hero{
    padding:45px 10px;
  }

  .hero h1{
    font-size:28px;
  }

  .hero-text,
  .section-lead{
    font-size:16px;
  }

  .box,
  .notice-box,
  .rose-note,
  .one-rose-box,
  .next-budget-box,
  .all-products-box,
  .brand-message,
  .shop-info,
  .footer-note{
    padding:32px 20px;
    border-radius:22px;
  }

  .main_imgBox{
    height:330px;
    border-radius:22px;
  }

  .product-grid{
    grid-template-columns:repeat(auto-fit,minmax(min(100%,220px),1fr));
    gap:22px;
  }

  .product-card{
    min-width:0;
  }

  .product-img{
    height:220px;
  }

  .img-tall{
    height:280px;
  }

  .one-rose-visual{
    flex-direction:column;
  }

  .arrow{
    transform:rotate(90deg);
  }

  .back-btn{
    right:12px;
    bottom:120px;
    padding:10px 18px;
    font-size:13px;
  }
}