|INFO|MAP|RANK|GOODS|HOME|
●第38回 おくのほそ道天童紅花まつり【山形県天童市】
body { font-family: 'M PLUS Rounded 1c', sans-serif; color: #333; line-height: 1.8; text-align: left; padding: 24px; background-color: #f8f8f8; max-width: 860px; margin: auto; box-sizing: border-box; font-size: 1.05em; } .article-title { margin: 0 auto 30px auto; font-size: 26px; padding: 0 0 10px 0; box-sizing: border-box; border-bottom: solid 2px #ff4081; text-align: center; display: block; width: 100%; color: #d2691e; font-weight: bold; } @media screen and (max-width: 480px) { .article-title { font-size: 20px; } } .section { margin-bottom: 2em; opacity: 0; transform: translateY(20px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; } .section.visible { opacity: 1; transform: translateY(0); } .section-title { font-size: 1.3em; font-weight: bold; color: #0056b3; /* 濃い青系に変更 */ margin-top: 40px; margin-bottom: 1em; border-bottom: 2px solid #007bff; /* 下線も青系に */ padding: 0; box-sizing: border-box; text-align: left; } .info-box { border: 1px solid #ffafaf; background-color: #fff7f7; border-radius: 8px; padding: 15px 20px; margin-bottom: 25px; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); } .info-box h4 { font-size: 1.15em; color: #28a745; /* 濃い緑系に変更 */ margin-top: 0; margin-bottom: 15px; border-bottom: 1px dashed #42b85a; /* 下線も緑系に */ padding-bottom: 8px; } .info-box ul { margin-top: 0; margin-bottom: 0; padding-left: 0; list-style: none; } .info-box ul li { margin-bottom: 8px; font-size: 1em; line-height: 1.6; text-align: left; display: flex; align-items: flex-start; } .info-box ul li:last-child { margin-bottom: 0; } .info-box ul li strong { width: auto; min-width: 80px; text-align: left; background-color: transparent; color: #333; border: none; border-radius: 0; padding: 0; margin-right: 8px; font-weight: bold; } /* 追加:特典リストのスタイル */ ul.bullet-list { list-style: disc; /* 黒丸のリストスタイル */ padding-left: 25px; /* インデント */ margin-top: 5px; margin-bottom: 5px; } ul.bullet-list li { display: list-item; /* リストアイテムとして表示 */ text-align: -webkit-match-parent; /* ブラウザ互換性のため */ margin-bottom: 5px; } .cta-button { display: inline-block; padding: 12px 28px; background-color: #ff4081; color: #fff !important; text-decoration: none; border-radius: 5px; font-weight: bold; font-size: 1.05em; box-shadow: 0 2px 5px rgba(0,0,0,0.1); transition: background-color 0.3s ease; } .cta-button:hover { background-color: #e03c31; } .button-group { text-align: center; margin-top: 30px; margin-bottom: 30px; } p { text-align: left; margin-bottom: 1em; } ul { padding-left: 0; list-style: none; margin-bottom: 2em; margin-top: 1em; } ul li { margin-bottom: 0.8em; font-size: 1.05em; line-height: 1.5; text-align: left; display: flex; align-items: flex-start; } ul li strong { display: inline-block; padding: 0.3em 0.6em; border: none; border-radius: 4px; margin-right: 1em; font-weight: bold; color: #fff; background-color: #6f42c1; /* 濃い紫系に変更 */ flex-shrink: 0; width: 90px; text-align: center; } ul li .item-content { display: block; flex-grow: 1; } .slider-container { position: relative; width: 100%; max-width: 800px; margin: 20px auto; overflow: hidden; border-radius: 5px; box-shadow: 0 2px 8px rgba(0,0,0,0.15); } .slider-wrapper { position: relative; width: 500%; /* 5枚の画像に対応 */ height: 350px; display: flex; transition: transform 0.6s ease-in-out; transform: translateX(0%); } .slider-wrapper img { width: calc(100% / 5); /* 5枚の画像に対応 */ height: 100%; object-fit: cover; } .slider-nav { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; } .slider-nav button { background-color: #bbb; border: none; color: white; padding: 8px 16px; font-size: 16px; margin: 0 5px; cursor: pointer; border-radius: 5px; } .slider-nav button.active { background-color: #555; } .sub-image-container { text-align: center; margin-top: 30px; margin-bottom: 20px; } .sub-image { max-width: 80%; height: auto; border-radius: 5px; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); } @media screen and (max-width: 480px) { body { padding: 15px; } ul li { flex-direction: column; margin-bottom: 1.2em; } ul li strong { margin-bottom: 0.5em; margin-right: 0; width: auto; } .info-box ul li { flex-direction: column; margin-bottom: 1em; } .info-box ul li strong { margin-bottom: 5px; margin-right: 0; width: auto; text-align: left; } .slider-wrapper { height: 250px; } .sub-image { max-width: 90%; } } document.addEventListener("DOMContentLoaded", () => { const sections = document.querySelectorAll(".section"); const observer = new IntersectionObserver( entries => { entries.forEach(entry => { if (entry.isIntersecting) { entry.target.classList.add("visible"); observer.unobserve(entry.target); } }); }, { threshold: 0.1 } ); sections.forEach(section => { observer.observe(section); }); showSlides(slideIndex); }); let slideIndex = 1; function currentSlide(n) { showSlides(n); } function showSlides(n) { const slides = document.querySelector(".slider-wrapper"); const dots = document.querySelector(".slider-nav").getElementsByTagName("button"); if (n > dots.length) { slideIndex = 1; } else if (n < 1) { slideIndex = dots.length; } else { slideIndex = n; } const translateX = -((slideIndex - 1) * (100 / dots.length)); slides.style.transform = `translateX(${translateX}%)`; for (let i = 0; i < dots.length; i++) { dots[i].className = dots[i].className.replace(" active", ""); } dots[slideIndex - 1].className += " active"; }芭蕉も愛でた 天童の紅花が咲き誇る! 12345松尾芭蕉が「まゆはきを俤(おもかげ)にして紅粉の花」と詠んだことで知られる天童の紅花。遠く月山を望むことができる上貫津(かみぬきづ)の紅花畑に、今年も約3万本の紅花が鮮やかに咲き誇ります。第38回を迎える「おくのほそ道天童紅花まつり」では、満開の紅花畑を舞台に様々なイベントが開催され、訪れる人々を魅了します。この夏は、天童の美しい紅花に触れる旅に出かけませんか?みどころ・イベント概要 開催期間令和7年7月5日(土)午前10時30分〜午後4時 令和7年7月6日(日)午前9時30分〜午後3時 会場上貫津紅花畑(天童市貫津88) 紅花畑約3万本の紅花が満開を迎える圧巻の景色 主なイベントキッチンカー出店、子ども縁日、日本唯一の白紅花畑展示、紅花染め体験(有料)、クラフトビール販売、紅花写真撮影会など 特典 紅花プレゼント(7/5のみ先着50名様) 紅花入り手作りクッキープレゼント(7/5のみ先着100名様) 紅花の種プレゼント(各日先着50名様) ※各プレゼントは上貫津紅花畑にてお渡し、無くなり次第終了。 【ご来場の方へ】 シャトルバス:道の駅天童温泉(もり〜な天童)〜上貫津紅花畑間で無料シャトルバスを運行します。畑周辺の駐車場は限りがあるため、ぜひご利用ください。 駐車場:「じゃがらもがら交流センター(天童市貫津1374−1)」周辺の駐車場をご利用ください。駐車場から紅花畑までは歩いてご移動をお願いいたします。 ご注意:畑への一般車両の乗り入れおよび周辺の路上駐車はご遠慮ください。※イベント内容は予告なく変更・中止となる場合がございます。写真や俳句で紅花を楽しもう!天童の紅花をテーマにした写真撮影会&コンテスト、そして紅花を詠んだ俳句大会も開催されます。コンテスト、俳句大会入賞者は、素敵な賞品がもらえるチャンスも!詳細は天童市ホームページのイベント情報をご確認ください。最新情報はこちらから!天童市商工観光課のインスタグラムアカウントでは、おくのほそ道天童紅花まつりをはじめ、天童市の観光情報等を発信しています。ぜひフォローして最新情報をチェックしてください!天童市商工観光課 Instagram日本遺産「山寺と紅花」紅花スタンプラリーキャンペーン日本遺産「山寺と紅花」を巡るスタンプラリーが開催中です。天童市のスタンプスポットは、シャトルバス発着場所でもある「道の駅天童温泉(もり〜な天童)」にあります。紅花まつりの時期に合わせ、山形県内各地の紅花関連スポットを巡ってスタンプを集めると、素敵な景品がもらえるチャンス!この機会に、歴史と文化に触れる旅も合わせてお楽しみください。スタンプラリー公式ページ 天童市の魅力をもっと深く!天童市には、紅花まつり以外にも魅力的な観光スポットやグルメが盛りだくさん!天童市の観光パンフレットでは、将棋のまちならではの体験や、美しい自然、温泉など、様々な情報を詳しくご紹介しています。紅花まつりの前後に、ぜひ天童市の魅力を存分にお楽しみください。天童市観光パンフレット(1/2)天童市観光パンフレット(2/2)

画像 ( )
2025.06.15
(C)やまがた広域観光協議会

|INFO|MAP|RANK|GOODS|HOME|
(C) Yamagatan All Rights Reserved.
Powered by samidare
system:network media mobile