/* 作用域,避免影響站內其他文章 */
.sounkyo-theme { --brand:#005BAC; --accent:#FFC107; --accent-hover:#E0A800; --ink:#222; --bg:#fff; --muted:#f5f7fb; --sticky-top:8px; }
/* 版心與排版 */
.sounkyo-theme { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif; color: var(--ink); line-height: 1.75; }
.sounkyo-theme .container { max-width: 980px; margin: 0 auto; padding: 0 14px; }
/* 圖片美化與置中 */
.sounkyo-theme img { max-width: 100%; height: auto; border-radius: 10px; box-shadow: 0 6px 18px rgba(0,0,0,.15); }
.sounkyo-theme p[style*="text-align:center"] img { display: inline-block; }
/* 段落間距微調(保留原
結構) */
.sounkyo-theme p { margin: 0.75em 0; }
/* 區隔線 */
.sounkyo-theme hr { border: 0; height: 10px; margin: 28px auto; max-width: 860px;
background: linear-gradient(90deg, transparent, #d6e6ff 20%, #b7d2ff 50%, #d6e6ff 80%, transparent);
border-radius: 999px;
}
/* 內文中用
+span 當標題者(32px)做視覺強化,保留原藍色 */
.sounkyo-theme p span[style*="font-size:32px"] { display:inline-block; padding:.2em .6em; border-radius:10px; background: linear-gradient(180deg,#f0f7ff,#ffffff); box-shadow: 0 2px 10px rgba(0,0,0,.06); }
/* 表格:不改你原本的表格結構,純樣式覆蓋 */
.sounkyo-theme table { border-collapse: collapse; margin: 14px auto; width: 100% !important; max-width: 860px; font-size: 15px; display: block; overflow-x: auto; border-radius: 12px; background: #fff; box-shadow: 0 8px 22px rgba(0,0,0,.08); }
.sounkyo-theme table tbody { display: table; width: 100%; }
.sounkyo-theme table td,
.sounkyo-theme table th { border: 1px solid #e9eef7 !important; padding: 10px 12px; text-align: center; vertical-align: middle; }
.sounkyo-theme table tr:first-child td,
.sounkyo-theme table tr:first-child th { background: var(--brand); color: #fff; font-weight: 800; letter-spacing: .5px; }
.sounkyo-theme table tr:nth-child(even) td { background: #fafcff; }
.sounkyo-theme table tr:hover td { background: #f2f7ff; }
/* 小尺寸欄寬優化(保留你設的 width,不強改) */
@media (max-width: 600px) {
.sounkyo-theme table td { padding: 10px 8px; font-size: 14px; }
}
/* 主要功能按鈕(官網/KKday/Agoda/Trip)=> 黃色 */
.sounkyo-theme a[href*="kkday.com"],
.sounkyo-theme a[href*="agoda.com"],
.sounkyo-theme a[href*="trip.com"],
.sounkyo-theme a[href*="sounkyo.net"] {
display: inline-block; padding: 8px 14px; margin: 2px 4px;
background: var(--accent); color: #222 !important; text-decoration: none !important;
border-radius: 999px; font-weight: 800; box-shadow: 0 6px 16px rgba(255,193,7,.25);
transition: transform .06s ease, box-shadow .2s ease, filter .2s ease;
}
/* 內含 span 的文字也轉為深色,避免原文橘色覆蓋 */
.sounkyo-theme a[href*="kkday.com"] *,
.sounkyo-theme a[href*="agoda.com"] *,
.sounkyo-theme a[href*="trip.com"] *,
.sounkyo-theme a[href*="sounkyo.net"] * { color:#222 !important; }
.sounkyo-theme a[href*="kkday.com"]:hover,
.sounkyo-theme a[href*="agoda.com"]:hover,
.sounkyo-theme a[href*="trip.com"]:hover,
.sounkyo-theme a[href*="sounkyo.net"]:hover { transform: translateY(-1px); filter: brightness(.97); background: var(--accent-hover); box-shadow: 0 10px 20px rgba(255,193,7,.33); color:#111 !important; }
/* 回到目錄按鈕:藍色 + 靠右 */
.sounkyo-theme .toc-back { text-align: right; margin: 14px 0 8px; }
.sounkyo-theme .btn-back {
display:inline-block; padding:8px 14px; border-radius:999px; font-weight:800;
text-decoration:none !important; color:#fff !important; background:#1B6EF3;
box-shadow:0 6px 16px rgba(27,110,243,.25); transition: transform .06s ease, box-shadow .2s ease, filter .2s ease;
}
.sounkyo-theme .btn-back:hover { transform: translateY(-1px); filter:brightness(.97); background:#0F55C7; box-shadow:0 10px 20px rgba(27,110,243,.33); }
/* 文章目錄 */
.sounkyo-theme .toc { background: #F7FBFF; border: 2px solid var(--brand); border-radius: 12px; padding: 14px 16px; margin: 18px auto; width: 100%; max-width: 860px; box-shadow: 0 6px 16px rgba(0,0,0,0.05); }
.sounkyo-theme .toc-title { font-size: 1.2em; font-weight: 900; color: var(--brand); margin-bottom: 8px; display:flex; align-items:center; gap:.4em; }
.sounkyo-theme .toc ol { padding-left: 1.2em; margin: 0; }
.sounkyo-theme .toc ol li { margin: .35em 0; }
.sounkyo-theme .toc a { color: var(--brand); text-decoration: none; font-weight: 800; }
.sounkyo-theme .toc a:hover { color: var(--accent-hover); text-decoration: underline; }
/* 交通小目錄(段內導覽)— sticky 吸頂 */
.sounkyo-theme .subnav {
position: -webkit-sticky; /* iOS */
position: sticky;
top: var(--sticky-top, 8px);
z-index: 999;
display:flex; gap:8px; flex-wrap:wrap; align-items:center; justify-content:center;
background: rgba(255,243,205,.92);
border:1px solid #ffec99; border-radius:12px; padding:10px 12px;
margin:10px auto 16px; max-width:860px;
backdrop-filter: blur(6px);
-webkit-backdrop-filter: blur(6px);
box-shadow: 0 6px 16px rgba(0,0,0,.06);
transform: translateZ(0); /* 防止父層 transform 破壞 sticky */
}
.sounkyo-theme .subnav a {
display:inline-block; padding:8px 12px; border-radius:999px; font-weight:800; text-decoration:none !important;
background:#fff3cd; color:#7a5a00 !important; border:1px solid #ffe08a;
}
.sounkyo-theme .subnav a:hover { filter:brightness(.97); }
/* 平滑捲動(舊瀏覽器自動忽略) + 全域錨點保險 */
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--sticky-top, 8px) + 24px); }
/* 捲動定位時,留出吸頂小目錄的高度 */
.sounkyo-theme [id]{ scroll-margin-top: calc(var(--sticky-top, 8px) + 24px); }
/* 行動版最佳化 */
.sounkyo-theme .container { overflow: visible; } /* 確保 sticky 有效 */
@media (max-width: 768px) {
.sounkyo-theme { --sticky-top: 56px; } /* 若有高頂欄可再調成 64/72 */
.sounkyo-theme .subnav {
max-width: none;
margin: 8px -14px 12px; /* 與頁邊齊平 */
border-radius: 0;
padding: 10px 12px;
gap: 6px;
}
.sounkyo-theme .subnav a {
padding: 10px 12px; /* 增加觸控面積 */
font-size: 14px;
line-height: 1.2;
}
.sounkyo-theme table {
font-size: 14px;
border-radius: 8px;
-webkit-overflow-scrolling: touch; /* 慣性滑動 */
}
.sounkyo-theme table td,
.sounkyo-theme table th {
padding: 8px 10px;
white-space: nowrap;
}
}

2025 層雲峽溫泉冰瀑祭 (層雲峡温泉氷瀑まつり)
⬆ 回到目錄
飯店推薦

⬆ 回到目錄
交通
冬天交通不確定因素太多,強烈建議參加一日觀光巴士:
前往層雲峽溫泉的交通方式有3種
|
|
|
|
|
|
|
|
|
|
|
|
|
|
合計 |
JR PASS |
第1種
全程巴士
(道北バス)
|

|
80分 1,280円 |
110分 2,140円 |
|
|
巴士搭乘站 NO8
JR旭川駅
|
⇔ |
上川森のテラス
バスタッチ
|
⇔ |
層雲峽
巴士搭乘站
|
|
|
第2種
普通電車
+
巴士
|

|
70分 1,290円 |

|
30分 890円 |

|
100分 2,140円 |
100分 890円 (1,290円) |
|
|
|
休息5分 |
|
|
|
|
第3種
特急電車
+
巴士
|
38分 1,920円 |
|
68分 2,810円 |
68分 890円 (1,920円) |
|
|
|
|
⬆ 回到目錄
第1種【全程巴士】

(時刻表可能有所變動,以「官網」為準)

「JR旭川駅」前「巴士搭乘站 NO8」上車,
一般巴士車上沒有廁所,到「上川森のテラス バスタッチ」之前車程80分鐘記得先上廁所、別喝太多水。

「上川森のテラス バスタッチ」在這裡休息5分鐘,旁邊是道北巴士營業所可以入內上廁所。
⬆ 回到目錄
第2、3種【普通、特急電車+巴士】

「JR上川駅」旁就是「上川森のテラス バスタッチ」步行不到1分鐘

「上川森のテラス バスタッチ」

(時刻表可能有所變動,以「官網」為準)
【末2班巴士+電車表】
|
|
層雲峽 |
上川 |
旭川 |
搭乘時間(分) |
運賃(円) |
巴士 |
|
17:55 |
18:25 |
|
30 |
890 |
JR |
JR石北本線 ・旭川行 |
|
18:40 |
19:50 |
70 |
1,290 |
合計 |
100 |
2,180 |
持JR PASS |
100 |
890 |
注意!搭乘 18:40 末班巴士需等 85分才能銜接電車,請自行衡量 |
|
|
層雲峽 |
上川 |
旭川 |
搭乘時間(分) |
運賃(円) |
巴士 |
12/1~3/21 運行 |
18:40 |
19:10 |
|
30 |
890 |
JR |
特急オホーツク4号 |
|
20:35 |
21:13 |
38 |
1,920 |
合計 |
68 |
2,810 |
持JR PASS |
68 |
890 |
⬆ 回到目錄
觀光 宿泊案內所.巴士搭乘站

【觀光宿泊案內所.巴士搭乘站】


【觀光宿泊案內所】可以入內躲風雪休息,室內很溫暖,還設有「投幣式置物櫃」、「廁所」

【投幣式置物櫃】From 8:30 To 17:00 要特別注意哦!

【觀光 宿泊案內所.巴士搭乘站】前方就是「冰瀑祭」
⬆ 回到目錄


【冰瀑祭】日與夜的美
⬆ 回到目錄

【入口】

入場費 500 円(2025 已調漲到 1000 円)
層雲峡温泉氷瀑祭 預售票 - KKday
⬆ 回到目錄
保佑金榜題名的【冰瀑神社】


在冰製的神玉上按住硬幣,便自動牢牢黏上而「不會落下(落榜)」…
⬆ 回到目錄
【全長100公尺的冰雪隧道】






…打造出冰之藝術,值得一遊。
⬆ 回到目錄
【冰雪溜滑梯】

可以租借大型內輪胎來玩,15分500円
⬆ 回到目錄
20:30【煙火】

20:30準時施放約2分30秒的煙火秀…
⬆ 回到目錄
【分撒麻糬】

…看起來很歡樂哦!
⬆ 回到目錄