@charset "utf-8";
/* CSS Document */
:root{
    --theme-color:navy;/* スキー場だより */
    --black:#333;
}
.seasonal-news__area *, .seasonal-news__area * *{
	font-family: "Zen Kaku Gothic New", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	color: var(--black);
}
.seasonal-news__area{
	background-image: url(img/background.jpg);
	padding: 2vh 0 1rem;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

.seasonal-news__area img{
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
}

.seasonal-news__mainVisual{
	width: min(96%,648px);
	text-align: center;
	margin: 15px auto;
}

.seasonal-news__img{
	margin: 0 auto;
}

.seasonal-news__area .container{
	margin: 0 auto;
}

	@media screen and (min-width:600px) {
		.seasonal-news__area .container{
			width: min(96%,1024px);
		}
	}

	@media screen and (min-width:1281px) {
		.seasonal-news__area .container{
			width: min(96%,800px);
		}
	}

/* 更新日付 */
.seasonal-news__area .date__wrap{
	width: 12rem;
	text-align: center;
	background:var(--black);
	font-size: 0.875rem;
	color: #fff;
	padding: 0.25rem 1rem;
	margin: 0 auto 1rem;
	border-radius: 30px;
}
.seasonal-news__area .date__wrap date{
	color: #fff;
}
	@media screen and (min-width:600px) {
		.seasonal-news__area .date__wrap{
				margin: 0.5rem 11% 1.5rem auto;
			}
		}

/* 凡例 */
.seasonal-news__area .notes__wrap{
	width: 80%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	margin-bottom: 1rem;
	border-radius: 10px;
	overflow: hidden;
	border: 2px solid var(--theme-color);
}

.seasonal-news__area .notes__head{
	width: 100%;
	text-align: center;
	font-weight: bold;
	color: #fff;
	padding: 0.5rem;
	background: var(--theme-color);
	display: grid;
	place-items: center;
}

.seasonal-news__area .notes{
	width: 100%;
	background: #fff;
	display: grid;
	justify-content: center;
	grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr));
	gap: 0.5rem;
}

	@media screen and (min-width:480px) {
		.seasonal-news__area .notes{
			padding: 0 2rem;
		}
		.seasonal-news__area .notes__wrap{
			flex-direction: row;
			align-items: stretch;
		}
		.seasonal-news__area .notes__head{
			width: 5rem;
		}
	}

.seasonal-news__area .notes__item{
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 1rem;
	gap: 0.5rem;
}
.seasonal-news__area .notes__icon{
	width: 2rem;
	height: 2rem;
}
.seasonal-news__area .notes dd{
	font-weight: bold;
}
/* スキー場リスト */
.spot__list{
	margin: 0 auto;
	backdrop-filter: blur(10px);
    background-color: rgba(100, 100, 100, .1);
	padding: 0.75rem;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(136px, 1fr));
	gap: 0.75rem;
}
	@media screen and (min-width:768px) {
		.spot__list{
			grid-template-columns: repeat(auto-fill, minmax(192px, 1fr));
			padding: 1rem;
		}
	}

.spot{
	background: #fff;
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.spot dt{
	width: 100%;
	min-height: 3em;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.5rem 0.5rem calc(0.5rem - 2px);
	border-bottom: var(--theme-color) 2px solid;
	font-weight: bold;
	font-size: clamp(1rem,2.25vw,1.125rem);
	color: var(--theme-color);
}

.spot dd{
	display: flex;
	gap: 0.5rem;
	align-items: center;
	justify-content: center;
	padding: 0.5rem;
	width: 100%;
	min-height: 3em;
}

.spot dd .snowfall{
	min-width: 3rem;
	text-align: center;
	font-weight: 500;
	font-size: clamp(1rem,2.25vw,1.5rem);
	color: var(--black);
}
.spot dd .status::after{
	content: "";
	display: block;
	width: 2rem;
	height: 2rem;
	background-size: contain;
	background-repeat: no-repeat;
}
	@media screen and (min-width:1024px) {
		.spot dd .status::after{
			width: 2.5rem;
			height: 2.5rem;
		}
	}


@keyframes yurayura {
    0%, 100% {
        transform: rotate(0);
    }
    50% {
        transform: rotate(10deg);
    }
}

@keyframes zoom {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* スキー場だよりステータスアイコン */
.spot dd .ka::after{background-image: url(img/ski_ka.png);
}
.spot dd .ichibuka::after{background-image: url(img/ski_ichibuka.png); 
}
.spot dd .fuka::after{background-image: url(img/ski_fuka.png);
}
.spot dd .heisa::after{background-image: url(img/ski_heisa.png);
}

/* マップ部分 */
.map{
	width: 100%;
	margin: 3rem auto;		
	display: grid;
	place-items: center;
}

.map__frame{
	width: 100%;
	max-width: 800px;
}
@media screen and (min-width:1024px) {
	.map__frame{
		padding: 1rem;
		background: #eee;
		filter: drop-shadow(3px 3px 8px #555);
	}
}


/*ページ上部へ戻るボタン*/
#page-top {
	position: sticky;/* seasonal-news__area内 */
    width: 72px;
    height: 72px;
	margin: 0 0 0 auto;
    bottom: 10px;
    right: 10px;
    font-size: 100%;
	z-index: 10;
}
/* #page-top a {
    background: var(--theme-color);
    opacity: 0.8;
    text-decoration: none;
    color: #fff;
    width: 36px;
    height: 36px;
    padding: 5px 0;
    text-align: center;
    display: grid;
    place-items:center;
}

#page-top a::after{
	display: block;
	content: "";
	width: 8px;
	height: 8px;
	border-top:#fff 2px solid;
	border-right:#fff 2px solid;
	transform: rotate(-45deg);
}
#page-top a:hover{
    opacity: 0.6;
} */

#page-top a {
    background: url(img/top.png);
	background-size: contain;
    text-decoration: none;
    color: #fff;
    width: 72px;
    height: 72px;
    padding: 5px 0;
    text-align: center;
    display: grid;
    place-items:center;
	animation: yurayura 2s infinite ease-in-out;
	transform-origin: top center;
}
@keyframes yurayura {
    0%{
        transform: rotate(-3deg);
    }
    50% {
        transform: rotate(3deg);
    }	
	100%{
		transform:rotate(-3deg);
	}
}

/* #page-top a::after{
	display: block;
	content: "";
	width: 8px;
	height: 8px;
	border-top:#fff 2px solid;
	border-right:#fff 2px solid;
	transform: rotate(-45deg);
} */
#page-top a:hover{
    opacity: 0.6;
}

.hidden {
  display: none !important;
}