/* ==================================================
oshibana.css
押し花総合ページ専用CSS
================================================== */

/* ===== HERO ===== */
.oshibana-hero{
text-align:center;
margin-bottom:50px;
}

.oshibana-hero img{
border-radius:16px;
}

.oshibana-lead{
max-width:800px;
margin:25px auto 0;
font-size:17px;
line-height:2;
}

/* ===== 商品一覧 ===== */
.oshibana-products{
margin-top:40px;
}

/* ===== 商品カード ===== */
.oshibana-card{
border:1px solid #ead5d8;
border-radius:14px;
background:#fff;
padding:20px;
text-align:center;
box-shadow:0 4px 12px rgba(0,0,0,0.06);
transition:0.25s;
}

.oshibana-card:hover{
transform:translateY(-4px);
box-shadow:0 10px 24px rgba(0,0,0,0.10);
}

.oshibana-card img{
border-radius:10px;
}

/* ===== 商品名 ===== */
.oshibana-title{
font-size:22px;
margin:18px 0 10px;
color:#6d4b4b;
}

/* ===== 商品説明 ===== */
.oshibana-copy{
font-size:15px;
line-height:1.9;
margin-bottom:14px;
}

/* ===== タグ ===== */
.oshibana-tags{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:8px;
margin-bottom:14px;
}

.oshibana-tag{
background:#fff2f4;
color:#b85c5c;
font-size:13px;
padding:6px 12px;
border-radius:999px;
}

/* ===== ボタン ===== */
.oshibana-btn{
display:inline-block;
padding:12px 24px;
background:#b85c5c;
color:#fff;
border-radius:999px;
font-weight:bold;
text-decoration:none;
transition:0.2s;
}

.oshibana-btn:hover{
opacity:0.85;
text-decoration:none;
color:#fff;
}

/* ===== 説明BOX ===== */
.oshibana-point{
background:#fff8f8;
border-left:5px solid #e6b7bd;
padding:20px;
margin:40px 0;
border-radius:10px;
}

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

.oshibana-title{
font-size:20px;
}

.oshibana-lead{
font-size:16px;
}

}


/* ===== シリーズ切り替え帯 ===== */
.oshibana-series-change{
  background:linear-gradient(135deg,#fff1f4,#ffffff);
  border:2px solid #e6b7bd;
  border-radius:22px;
  padding:38px 24px;
  text-align:center;
  margin:70px auto 50px;
  box-shadow:0 8px 24px rgba(0,0,0,0.08);
}

.oshibana-series-label{
  display:inline-block;
  background:#b85c5c;
  color:#fff;
  font-size:14px;
  font-weight:bold;
  padding:6px 18px;
  border-radius:999px;
  margin-bottom:18px;
}


.oshibana-series-label{
  display:block;
  width:fit-content;

  background:#b85c5c;
  color:#fff;
  font-size:14px;
  font-weight:bold;
  padding:6px 18px;
  border-radius:999px;

  margin:0 auto 18px;
}










.oshibana-series-change h2{
  border-left:none;
  padding-left:0;
  margin-top:0;
  color:#8a4a4a;
}




/* ===== 真空押し花ギャラリー ===== */

.oshibana-gallery{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:22px;
}

.oshibana-gallery-item{
  background:#fff;
  border-radius:18px;
  padding:14px;
  box-shadow:0 6px 18px rgba(0,0,0,0.08);
  transition:0.25s;
}

.oshibana-gallery-item:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 28px rgba(0,0,0,0.12);
}

.oshibana-gallery-item img{
  width:100%;
  aspect-ratio:1 / 1.15;
  object-fit:cover;
  border-radius:12px;
}


/* ===== メインビジュアル ===== */

.oshibana-main-visual{
  width:100%;
  max-width:700px;
  border-radius:24px;
  box-shadow:0 10px 30px rgba(0,0,0,0.12);
}





.oshibana-special-price{
  background:linear-gradient(180deg,#fff8f8,#ffffff);
}

.oshibana-price-box{
  display:inline-flex;
  
  flex-direction:column;
  align-items:center;
  gap:4px;
  margin:24px auto;
  padding:18px 32px;
  background:#fff;
  border:2px solid #e6b7bd;
  border-radius:18px;
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.oshibana-price-label{
  font-size:14px;
  color:#b85c5c;
  font-weight:bold;
}

.oshibana-price-box strong{
  font-size:32px;
  color:#d33;
  line-height:1.2;
}

.oshibana-price-note{
  font-size:12px;
  color:#888;
}


.oshibana-bargain-card{
  position:relative;
  border:2px solid #f2c6c6;
  background:linear-gradient(180deg,#fffafa,#ffffff);
}

.oshibana-sale-badge{
  display:inline-block;
  background:#d33;
  color:#fff;
  font-size:14px;
  font-weight:bold;
  padding:5px 16px;
  border-radius:999px;
  margin:0 auto 14px;
}

.oshibana-sale-price{
  font-size:30px;
  font-weight:bold;
  color:#d33;
  margin:12px 0;
  line-height:1.2;
}

.oshibana-sale-price::before{
  content:"税別 ";
  font-size:13px;
  color:#888;
  font-weight:normal;
}


.container{
  padding-bottom:120px;
}


.oshibana-price-box{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:4px;

  width:fit-content;
  margin:24px auto 30px;
  padding:18px 32px;

  background:#fff;
  border:2px solid #e6b7bd;
  border-radius:18px;
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
}


.oshibana-main-visual{
  display:block;
  width:100%;
  max-width:700px;
  margin:30px auto 0;
  border-radius:24px;
  box-shadow:0 10px 30px rgba(0,0,0,0.12);
}