配送ポリシー|【公式】温活農園
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;600;700&family=Noto+Sans+JP:wght@400;500&display=swap');
:root {
--earth: #6B3A1F;
--moss: #E8651A;
--cream: #FFF8EE;
--sand: #FDE9C8;
--warm: #F5C200;
--light: #FDF6EC;
--text: #3D1F0A;
--muted: #8C6040;
--border: #F0D8B0;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
background: var(--light);
color: var(--text);
font-family: 'Noto Sans JP', sans-serif;
font-size: 15px;
line-height: 1.8;
}
/* ── ヘッダー ── */
header {
background: linear-gradient(135deg, #E8651A 0%, #C94A08 60%, #6B3A1F 100%);
padding: 40px 24px 36px;
text-align: center;
}
header .eyebrow {
font-family: 'Noto Serif JP', serif;
font-size: 11px;
letter-spacing: 0.18em;
color: #F5C200;
text-transform: uppercase;
margin-bottom: 10px;
}
header h1 {
font-family: 'Noto Serif JP', serif;
font-size: clamp(22px, 5vw, 30px);
font-weight: 700;
color: var(--cream);
letter-spacing: 0.04em;
line-height: 1.4;
}
header .sub {
margin-top: 10px;
font-size: 13px;
color: #E8C8A8;
letter-spacing: 0.05em;
}
/* ── レイアウト ── */
.container {
max-width: 740px;
margin: 0 auto;
padding: 48px 24px 80px;
}
/* ── 送料ハイライトカード ── */
.highlight-card {
background: linear-gradient(135deg, #E8651A 0%, #C94A08 100%);
border-radius: 10px;
padding: 28px 32px;
margin-bottom: 48px;
display: flex;
align-items: center;
gap: 24px;
flex-wrap: wrap;
}
.highlight-card .icon {
font-size: 40px;
line-height: 1;
flex-shrink: 0;
}
.highlight-card .content { flex: 1; min-width: 180px; }
.highlight-card .label {
font-size: 12px;
color: rgba(255,255,255,0.75);
letter-spacing: 0.1em;
margin-bottom: 4px;
}
.highlight-card .value {
font-family: 'Noto Serif JP', serif;
font-size: clamp(20px, 4vw, 26px);
font-weight: 700;
color: #fff;
line-height: 1.3;
}
.highlight-card .value span {
font-size: 14px;
font-weight: 400;
color: rgba(255,255,255,0.8);
margin-left: 6px;
}
.highlight-card .divider-v {
width: 1px;
height: 60px;
background: rgba(255,255,255,0.3);
flex-shrink: 0;
}
/* ── セクション ── */
.section {
margin-bottom: 44px;
}
.section-label {
display: inline-block;
font-size: 10px;
font-weight: 500;
letter-spacing: 0.2em;
color: var(--moss);
background: var(--sand);
padding: 3px 10px;
border-radius: 2px;
margin-bottom: 10px;
}
.section-title {
font-family: 'Noto Serif JP', serif;
font-size: clamp(16px, 3.5vw, 19px);
font-weight: 700;
color: var(--earth);
border-left: 3px solid var(--moss);
padding-left: 12px;
margin-bottom: 18px;
line-height: 1.4;
}
/* ── テーブル ── */
.policy-table {
width: 100%;
border-collapse: collapse;
font-size: 14px;
}
.policy-table th {
background: var(--sand);
font-weight: 500;
font-size: 12px;
letter-spacing: 0.06em;
color: var(--earth);
padding: 10px 14px;
text-align: left;
border: 1px solid var(--border);
}
.policy-table td {
padding: 11px 14px;
border: 1px solid var(--border);
vertical-align: middle;
line-height: 1.6;
font-size: 14px;
}
.policy-table tr:nth-child(even) td {
background: #FDFAF5;
}
.tag-free {
display: inline-block;
background: #E8651A;
color: #fff;
font-size: 11px;
font-weight: 600;
padding: 2px 9px;
border-radius: 10px;
letter-spacing: 0.05em;
margin-left: 6px;
vertical-align: middle;
}
/* ── 配送会社カード ── */
.carrier-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 12px;
margin-top: 4px;
}
.carrier-card {
background: var(--cream);
border: 1.5px solid var(--border);
border-radius: 8px;
padding: 16px 12px;
text-align: center;
}
.carrier-card .carrier-icon {
font-size: 26px;
margin-bottom: 6px;
line-height: 1;
}
.carrier-card .carrier-name {
font-size: 13px;
font-weight: 500;
color: var(--earth);
line-height: 1.4;
}
/* ── リスト ── */
.policy-list {
list-style: none;
padding: 0;
}
.policy-list li {
padding: 8px 0 8px 22px;
position: relative;
border-bottom: 1px dashed var(--border);
font-size: 14px;
}
.policy-list li:last-child { border-bottom: none; }
.policy-list li::before {
content: "―";
position: absolute;
left: 0;
color: var(--moss);
font-size: 11px;
top: 10px;
}
/* ── 注意書き ── */
.note {
background: var(--sand);
border-left: 3px solid var(--warm);
padding: 13px 16px;
font-size: 13px;
color: var(--muted);
border-radius: 0 4px 4px 0;
margin-top: 14px;
line-height: 1.7;
}
/* ── 区切り線 ── */
.divider {
border: none;
border-top: 1px solid var(--border);
margin: 44px 0;
}
/* ── お問い合わせ ── */
.contact-box {
background: linear-gradient(135deg, #E8651A 0%, #C94A08 60%, #6B3A1F 100%);
border-radius: 8px;
padding: 28px 28px 24px;
color: var(--cream);
}
.contact-box h3 {
font-family: 'Noto Serif JP', serif;
font-size: 16px;
font-weight: 700;
margin-bottom: 16px;
letter-spacing: 0.05em;
}
.contact-box table {
width: 100%;
font-size: 13px;
border-collapse: collapse;
}
.contact-box td {
padding: 8px 0;
border-bottom: 1px solid rgba(255,255,255,0.15);
vertical-align: top;
}
.contact-box td:first-child {
color: #F5C200;
white-space: nowrap;
padding-right: 20px;
font-weight: 500;
width: 130px;
}
/* ── フッター ── */
footer {
text-align: center;
padding: 24px;
font-size: 12px;
color: var(--muted);
border-top: 1px solid var(--border);
}
/* ── モバイル ── */
@media (max-width: 480px) {
header { padding: 32px 16px 28px; }
.container { padding: 32px 16px 60px; }
.highlight-card { padding: 20px 18px; gap: 16px; }
.highlight-card .divider-v { display: none; }
.carrier-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
.contact-box { padding: 20px 16px; }
}
【公式】温活農園
配送ポリシー
onkatsunouen.com
🚚
通常注文:送料無料の条件
3,000円以上(税込)のご注文
SHIPPING FEE
送料について
| 注文種別・ご注文金額 |
送料 |
| 通常注文:3,000円未満(税込) |
363円(税込) |
| 通常注文:3,000円以上(税込) |
無料送料無料
|
| 定期便:すべての定期購入 |
無料送料無料
|
※ 極めてまれな特殊事情(災害・交通遮断等)により配送が困難な場合は、ご注文をお断りする場合があります。あらかじめご了承ください。
DELIVERY
お届けまでの流れ
| ステップ |
内容 |
目安 |
| ① ご注文確定 |
注文完了メールをお送りします |
即時 |
| ② 発送準備 |
倉庫にてピッキング・梱包 |
1〜2営業日 |
| ③ 発送・お届け |
配送会社へ引き渡し後、お届け |
発送後2〜3営業日 |
※ ご注文からお届けまでの目安は3〜5営業日です(土日祝・年末年始・お盆を除く)。
※ ご注文状況や配送地域によってはさらにお時間をいただく場合があります。
CARRIER
ご利用配送会社
商品・発送拠点・配送地域によって配送会社が異なります。お客様によるご指定はお受けできませんのでご了承ください。
NOTES
配送に関する注意事項
- 配送先は日本国内のみとなります。海外への発送は承っておりません
- 複数拠点からの発送となるため、同一注文でも複数便に分かれてお届けする場合があります
- 天候・交通事情・災害等により、配送が遅延する場合があります
- お届け先の不在が続く場合、配送会社の保管期間を過ぎると返送される場合があります
- 配送会社の追跡サービスにて、お荷物のお届け状況をご確認いただけます
- 年末年始・大型連休・お盆期間中は、お届けに通常より多くのお時間をいただく場合があります
© 【公式】温活農園 All Rights Reserved.