@charset "UTF-8";
/* CSS Document */

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;600;700&family=Outfit&display=swap");

:root {
	--page-color: #1f3767;
	--bg-color: #e8f0f5;
	--label-color: #86b3e2;
	--venue-color01: #82b1e3;
	--venue-color02: #e697ac;
	--venue-color03: #f0b16c;
}

body {
	font-family: "Noto Sans", sans-serif;
}

.en {
	font-family: "Outfit", sans-serif;
}

#PageName {
	width: 1024px;
	margin: 10px auto;
	font-weight: bold;
}

.Group__header-h3 {
	text-align: center;
	margin-bottom: 4rem;
}

.Group__header-h3 small {
	display: block;
	font-size: 2rem;
	line-height: 1.2;
	margin-bottom: 4px;
}

.Group__header-h3 h2 {
	position: relative;
	display: inline-block;
	font-size: 3.4rem;
	font-weight: 700;
	line-height: 1.35;
}

.Group__header-h3 h2::before,
.Group__header-h3 h2::after {
	content: "";
	position: absolute;
	top: 0;
	background-image: url(/attending/kokunai/yukimatsuri/images/Heading__deco01.png);
	background-repeat: no-repeat;
	width: 22.4rem;
	height: 11.7rem;
}

.Sec__tour .Group__header-h3 h2::before, .Sec__movie .Group__header-h3 h2::before, .Sec__blog .Group__header-h3 h2::before,
.Sec__tour .Group__header-h3 h2::after , .Sec__movie .Group__header-h3 h2::after, .Sec__blog .Group__header-h3 h2::after {
	background-image: url(/attending/kokunai/yukimatsuri/images/Heading__deco02.png);
}

.Group__header-h3 h2::before {
	left: -25rem;
	transform: translateY(-50%);
}

.Group__header-h3 h2::after {
	right: -25rem;
	transform: translateY(-50%) scale(-1, 1);
}
.Group__header-h4 {
	text-align: center;
	margin-bottom: 3rem;
}

.Group__header-h4 h2 {
	display: inline-block;
	border-bottom: dotted 4px #166ab4;
	font-size: 2.6rem;
	font-weight: 700;
	line-height: 1;
	color: var(--page-color);
	padding: 0 1rem 1rem;
}

.Group__header-h4 strong {
	color: #166ab4;
}

.Common__block {
	border-radius: 1.6rem;
	background-color: #fff;
	box-shadow: 0px 0px 20px -10px #e8b3d1;
	margin-top: 3rem;
	padding: 2.4rem 2.4rem;
}

.Sec__outer {
	background-color: var(--bg-color);
}

.Button__common {
	text-align: center;
}

.Button__common-link {
	position: relative;
	display: block;
	border-radius: 8px;
	background-color: var(--page-color);
	width: 52rem;
	color: #fff;
	margin: 0 auto;
	padding: 2.5rem 0;
	transition: all 0.3s;
}

.Button__common-link:hover {
	opacity: 0.7;
}

.Button__common-link::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 3rem;
	display: block;
	width: 0.8rem;
	height: 0.8rem;
	border-top: 0.2rem solid rgba(255, 255, 255, 1);
	border-right: 0.2rem solid rgba(255, 255, 255, 1);
	transform: translateY(-50%) rotate(45deg);
}

#keyvis {
	display: grid;
	position: relative;
	width: 100%;
	height: 500px;
	overflow: hidden;
	background: url(/attending/kokunai/yukimatsuri/images/keyvis/bg.jpg) no-repeat center / cover;
}

/* start_snowFlake */

.keyvisSnowflake {
	display: grid;
	grid-area: 1/1;
}

[class^="keyvisSnowflake__layer"] {
	display: grid;
	grid-area: 1/1;
	translate: 0 -100%;
	animation: fall 14s linear infinite;
}

.keyvisSnowflake__inner {
	grid-area: 1/1;
	scale: 1.06;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	animation: sway 2s ease-in-out infinite alternate;
}

.keyvisSnowflake__layer02 {
	animation-duration: 8s;
}

.keyvisSnowflake__layer03 {
	animation-duration: 6s;
}

.keyvisSnowflake__layer01 .keyvisSnowflake__inner {
	background-image: url(/attending/kokunai/yukimatsuri/images/keyvis/snowflake01.png);
}

.keyvisSnowflake__layer02 .keyvisSnowflake__inner {
	animation-delay: -1s;
	background-image: url(/attending/kokunai/yukimatsuri/images/keyvis/snowflake02.png);
}

.keyvisSnowflake__layer03 .keyvisSnowflake__inner {
	background-image: url(/attending/kokunai/yukimatsuri/images/keyvis/snowflake03.png);
}

@keyframes sway {
	0% {
		translate: -3% 0;
	}

	100% {
		translate: 3% 0;
	}
}

@keyframes fall {
	0% {
		translate: 0 -100%;
	}

	100% {
		translate: 0 100%;
	}
}

/* end_snowFlake */


/* start_flare */

.keyvisFlare {
	display: grid;
	grid-area: 1/1;
}

[class^="keyvisFlare__layer"] {
	grid-area: 1/1;
	opacity: 0;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	animation: fadeBlink 3s ease-in-out infinite;
}

@keyframes fadeBlink {
	0% {
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

.keyvisFlare__layer01 {
	animation-delay: 0s;
	background-image: url(/attending/kokunai/yukimatsuri/images/keyvis/flare01.png);
}

.keyvisFlare__layer02 {
	animation-delay: 0.5s;
	background-image: url(/attending/kokunai/yukimatsuri/images/keyvis/flare02.png);
}

.keyvisFlare__layer03 {
	animation-delay: 1s;
	background-image: url(/attending/kokunai/yukimatsuri/images/keyvis/flare03.png);
}

.keyvisFlare__layer04 {
	animation-delay: 1.5s;
	background-image: url(/attending/kokunai/yukimatsuri/images/keyvis/flare04.png);
}

/* end_flare */

/* start_castle */

.keyvisCastle {
	grid-area: 1/1;
	background: url(/attending/kokunai/yukimatsuri/images/keyvis/castle_bg.png) no-repeat right top 122px / 391px;
}

.keyvisCastle__layer01 {
	display: block;
	position: absolute;
	top: 120px;
	right: 137px;
	width: 119px;
	height: 95px;
	opacity: 0;
	transition: opacity 1s;
}

.loaded .keyvisCastle__layer01 {
	opacity: 1;
}

/* end_castle */

/* start_snowman */

.keyvisSnowman {
	grid-area: 1/1;
	background: url(/attending/kokunai/yukimatsuri/images/keyvis/snowman_bg.png) no-repeat left bottom / 442px;
}

.keyvisSnowman__layer01 {
	display: block;
	position: absolute;
	bottom: 13px;
	left: 220px;
	width: 95px;
	height: 172px;
	opacity: 0;
	transition: opacity 1s;
}

.loaded .keyvisSnowman__layer01 {
	opacity: 1;
}

.keyvisSnowman__img {
	rotate: 5deg;
	transform-origin: bottom center;
	animation: swing 3s infinite;
}

@keyframes swing {
	0% {
		rotate: 5deg;
	}

	50% {
		rotate: -5deg;
	}

	100% {
		rotate: 5deg;
	}
}

/* end_snowman */

/* start_fox */

.keyvisFox {
	position: absolute;
	bottom: 0;
	right: 250px;
	width: 170px;
	height: 125px;
}

[class^="keyvisFox__footprints"] {
	position: absolute;
	width: 22px;
	height: 22px;
	opacity: 0;
	transition: opacity 1s;
	background: url(/attending/kokunai/yukimatsuri/images/keyvis/fox_footprints.png) no-repeat center / contain;
}

.keyvisFox__footprints01 {
	left: 0;
	top: 70px;
}

.keyvisFox__footprints02 {
	transition-delay: .3s;
	left: 20px;
	top: 26px;
	rotate: 17deg;
}

.keyvisFox__footprints03 {
	transition-delay: .6s;
	left: 78px;
	top: 36px;
	rotate: -5deg;
}

.keyvisFox__footprints04 {
	transition-delay: .9s;
	left: 104px;
	top: 0;
	rotate: 17deg;
}

.keyvisFox__fox {
	display: block;
	position: absolute;
	bottom: 5px;
	right: 0;
	opacity: 0;
	width: 128px;
	height: 72px;
	translate: 20px 0;
	transition: opacity 1s 1.2s, translate 1s 1.2s;
}

.loaded {
	.keyvisFox__footprints01 {
		opacity: .9;
	}

	.keyvisFox__footprints02 {
		opacity: .8;
	}

	.keyvisFox__footprints03 {
		opacity: .8;
	}

	.keyvisFox__footprints04 {
		opacity: .6;
	}

	.keyvisFox__fox {
		opacity: 1;
		translate: 0 0;
	}
}

/* end_fox */

/* start_keyvisTtl */

.keyvisTtl {
	display: grid;
	place-content: center;
	grid-area: 1/1;
	gap: 40px;
	color: #fff;
	text-align: center;
	z-index: 1;
	--base-delay: 0s;
}

.keyvisTtl__hgroup {
	display: grid;
	place-items: center;
}

.keyvisTtl__h {
	display: grid;
	grid-auto-flow: column;
	margin: 10px 0 20px;
}

[class^="keyvisTtl__hLetter"] {
	height: 75px;
	opacity: 0;
	clip-path: polygon(-50% 150%, 150% 150%, 150% 150%, -50% 150%);
	filter: drop-shadow(0px 0px 15px rgba(0, 66, 138, 0));
	transition: clip-path .5s ease-out, opacity .5s ease-out, filter 1s;
}

.keyvisTtl__hLetter01 {
	transition-delay: var(--base-delay), var(--base-delay), calc(var(--base-delay) + 1.2s);
}

.keyvisTtl__hLetter02 {
	transition-delay: calc(var(--base-delay) + .06s), calc(var(--base-delay) + .06s), calc(var(--base-delay) + 1.2s);
}

.keyvisTtl__hLetter03 {
	transition-delay: calc(var(--base-delay) + .12s), calc(var(--base-delay) + .12s), calc(var(--base-delay) + 1.2s);
}

.keyvisTtl__hLetter04 {
	transition-delay: calc(var(--base-delay) + .18s), calc(var(--base-delay) + .18s), calc(var(--base-delay) + 1.2s);
}

.keyvisTtl__hLetter05 {
	transition-delay: calc(var(--base-delay) + .24s), calc(var(--base-delay) + .24s), calc(var(--base-delay) + 1.2s);
}

.keyvisTtl__hLetter06 {
	transition-delay: calc(var(--base-delay) + .30s), calc(var(--base-delay) + .30s), calc(var(--base-delay) + 1.2s);
}

.keyvisTtl__hLetter07 {
	transition-delay: calc(var(--base-delay) + .36s), calc(var(--base-delay) + .36s), calc(var(--base-delay) + 1.2s);
}

.keyvisTtl__hLetter08 {
	transition-delay: calc(var(--base-delay) + .42s), calc(var(--base-delay) + .42s), calc(var(--base-delay) + 1.2s);
}

.keyvisTtl__hLetter09 {
	transition-delay: calc(var(--base-delay) + .48s), calc(var(--base-delay) + .48s), calc(var(--base-delay) + 1.2s);
}

.keyvisTtl__hLetter10 {
	transition-delay: calc(var(--base-delay) + .54s), calc(var(--base-delay) + .54s), calc(var(--base-delay) + 1.2s);
}

[class^="keyvisTtl__hLetter"] img {
	width: auto;
	height: 100%;
}

.keyvisTtl__ribon,
.keyvisTtl__number,
.keyvisTtl__caption,
.keyvisTtl__en {
	opacity: 0;
	transition: opacity 1s calc(var(--base-delay) + 1.2s);
}

.keyvisTtl__ribon {
	width: 294px;
	filter: drop-shadow(0px 0px 15px rgba(0, 66, 138, 1));
}

.keyvisTtl__number {
	width: 95px;
	filter: drop-shadow(0px 0px 15px rgba(0, 66, 138, 1));
}

.keyvisTtl__en {
	font-size: 2.7rem;
	font-family: "Outfit", sans-serif;
	letter-spacing: .08em;
	text-shadow: 0px 0px 20px rgba(0, 66, 138, 0.8);
}

.keyvisTtl__caption {
	font-size: 1.3rem;
}

.loaded {
	[class^="keyvisTtl__hLetter"] {
		opacity: 1;
		clip-path: polygon(-50% -50%, 150% -50%, 150% 150%, -50% 150%);
		filter: drop-shadow(0px 0px 15px rgba(0, 66, 138, 1));
	}

	.keyvisTtl__ribon,
	.keyvisTtl__number,
	.keyvisTtl__caption,
	.keyvisTtl__en {
		opacity: 1;
	}
}

/* end_keyvisTtl */

.seo {
	position: absolute;
	top: calc(50% + 170px);
	left: 50%;
	transform: translate(-50%, -50%);
	width: 465px;
	height: auto;
	font-size: 1.3rem;
	font-weight: 500;
	line-height: 1.8;
	color: #fff;
	text-align: center;
}

.Sec__anc {
	background-color: var(--page-color);
}

.Anc__items {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 2rem 0;
}

.Anc__item {
	position: relative;
	width: calc(100% / 4);
	padding-bottom: 1rem;
}

.Anc__item:hover{
	opacity: .7;
}
/* おすすめツアーグレーアウト対応 */
.Anc__item:first-child:hover{
	opacity: 1;
}

.Anc__item:first-child:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	display: block;
	background-color: #fff;
	width: 0.1rem;
	height: 8rem;
}

.Anc__item::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	display: block;
	background-color: #fff;
	width: 0.1rem;
	height: 8rem;
}

.Anc__link {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	line-height: 1.5;
	color: #fff;
	text-align: center;
}

.Anc__link::before {
	content: "";
	display: block;
	background-size: contain;
	background-repeat: no-repeat;
	width: 4rem;
	height: 4rem;
	margin-bottom: 0.5rem;
}

.Anc__tour::before {
	background-image: url(/attending/kokunai/yukimatsuri/images/icon__anc01.svg);
}

.Anc__info::before {
	background-image: url(/attending/kokunai/yukimatsuri/images/icon__anc02.svg);
}

.Anc__hotel::before {
	background-image: url(/attending/kokunai/yukimatsuri/images/icon__anc03.svg);
}

.Anc__qa::before {
	background-image: url(/attending/kokunai/yukimatsuri/images/icon__anc04.svg);
}

.Anc__link::after {
	content: "";
	position: absolute;
	bottom: -1rem;
	left: 50%;
	display: block;
	width: 0.8rem;
	height: 0.8rem;
	border-top: 0.2rem solid rgba(255, 255, 255, 1);
	border-right: 0.2rem solid rgba(255, 255, 255, 1);
	transform: translateX(-50%) rotate(135deg);
}

/* グレイスケール */
.no-link .Anc__tour {
	color: #7f7f7f;
	pointer-events: none;
}

.no-link .Anc__tour::before {
	background-image: url(/attending/kokunai/yukimatsuri/images/icon__anc01-gray.svg);
}

.no-link .Anc__tour::after {
	border-top: 0.2rem solid #7f7f7f;
	border-right: 0.2rem solid #7f7f7f;
}
/* Keyvisual_end */

/* 開催日時_start */
.Sec__date {
	padding-top: 1rem;
}

.Group__date {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
}

.Date__item {
	width: calc(100% / 3);
}

.Date__link {
	position: relative;
	display: block;
	border-radius: 0.4rem;
	color: #fff;
	font-size: 1.5rem;
	line-height: 1.35;
	text-align: center;
	padding: 2rem 0;
	transition: background-color 0.3s, color 0.3s;
}

.Date__link::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 2rem;
	display: block;
	width: 0.8rem;
	height: 0.8rem;
	border-top: 0.2rem solid rgba(255, 255, 255, 1);
	border-right: 0.2rem solid rgba(255, 255, 255, 1);
	transform: translateY(-50%) rotate(135deg);
	transition: border 0.3s;
}

.Date__item em {
	display: block;
	font-size: 2rem;
	font-weight: 600;
	font-style: normal;
}

.Date__item strong {
	font-size: 2rem;
	font-weight: 700;
}

.Venu__odori {
	border: solid 1px var(--venue-color01);
	background-color: var(--venue-color01);
}

.Venu__odori:hover {
	background-color: #fff;
	color: var(--venue-color01);
}

.Venu__odori:hover::after {
	border-top: 0.2rem solid var(--venue-color01);
	border-right: 0.2rem solid var(--venue-color01);
}

.Venu__susukino {
	border: solid 1px var(--venue-color02);
	background-color: var(--venue-color02);
}

.Venu__susukino:hover {
	background-color: #fff;
	color: var(--venue-color02);
}

.Venu__susukino:hover::after {
	border-top: 0.2rem solid var(--venue-color02);
	border-right: 0.2rem solid var(--venue-color02);
}

.Venu__tsudome {
	border: solid 1px var(--venue-color03);
	background-color: var(--venue-color03);
}

.Venu__tsudome:hover {
	background-color: #fff;
	color: var(--venue-color03);
}

.Venu__tsudome:hover::after {
	border-top: 0.2rem solid var(--venue-color03);
	border-right: 0.2rem solid var(--venue-color03);
}

/* 開催日時_end */

/* 出発地別にツアーを見る_start */
.Sec__dept {
	padding: 5rem 0;
	padding-top: 0rem;
    margin-top: 50px;
}

.dept__block {
	margin-top: 0rem;
}

.Dept__items {
	display: flex;
	justify-content: space-between;
}

.Dept__link {
	position: relative;
	text-decoration: underline;
	padding-left: 2.4rem;
}

.Dept__link::before,
.Dept__link::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
}

.Dept__link::before {
	left: 0;
	background-color: var(--page-color);
	border-radius: 50%;
	width: 2rem;
	height: 2rem;
	transform: translateY(-50%) rotate(45deg);
}

.Dept__link::after {
	left: 0.5rem;
	width: 0.6rem;
	height: 0.6rem;
	border-top: 0.2rem solid rgba(255, 255, 255, 1);
	border-right: 0.2rem solid rgba(255, 255, 255, 1);
	transform: translateY(-50%) rotate(45deg);
}

.Dept__link:hover {
	color: var(--page-color);
	text-decoration: none;
}
/* 出発地別にツアーを見る_end */

/* さっぽろ雪祭りおすすめツアー_start */
.Block__tour {
	padding: 5rem 0;
}

.Tour__bg-color {
	background: rgb(255, 255, 255);
background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(216, 209, 235, 1) 50%, rgba(159, 197, 237, 1) 100%);
}

.Tour__cassette {
	display: flex;
	/*width: 28rem;*/
	height: auto;
}

.Tour__cassette-inner {
	display: flex;
	flex-direction: column;
	background-color: #fff;
	border: solid 1px #d1d1d1;
	border-top: none;
	border-radius: 0 0 8px 8px;
	height: 100%;
	padding: 0 2rem 1rem;
}

.Tour__swiper-link {
	display: flex;
	flex-direction: column;
	transition: opacity 0.3s;
}

.Tour__swiper-link:hover{
	opacity:.7;
}

/*ここから*/
.hover {
    display: flex;
	flex-direction: column;
	transition: opacity 0.3s;
}

.hover:hover {
    opacity:.7;
}

.Tour__cassette swiper-slide {
    position: relative;
}
.gray {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: none;
}
.gray:active {
    display: block;
}
/*ここまで*/

.Tour__cassette figure {
	display: flex;
	flex-direction: column;
	background-color: #fff;
	border: solid 1px #d1d1d1;
    border-bottom: none;
	border-radius: 8px 8px 0 0;
	height: auto;
}

.Tour__cassette figure img {
	border-radius: 8px 8px 0 0;
	overflow: hidden;
	/*width: 28rem;
	height: 21rem;*/
	object-fit: cover;
}

.Tour__label-items {
	display: flex;
	justify-content: flex-start;
	gap: 1rem;
	margin-top: 2rem;
}

.Tour__label-item {
    display: flex;
    justify-content: center;
    align-items: center;	background-color: var(--label-color);
	width: calc(100% / 2);
	font-size: 1.4rem;
	color: #fff;
	text-align: center;
	font-weight: 500;
}

.Tour__title {
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.3;
	margin-top: 2rem;
}

.Tour__caption {
	font-size: 1.5rem;
	line-height: 1.5;
	margin-top: 1rem;
	margin-bottom: 3rem;
}

.Tour__price {
	font-size: 2.1rem;
	font-weight: 600;
	font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
	color: #ff0000;
	text-align: right;
	margin-top: auto;
}

.Tour__swiper-outer {
	position: relative;
}

.Tour__yukimatsuri__swiper {
	--swiper-theme-color: var(--page-color);
	margin: 0 auto;
	padding-bottom: 0;
	position: static;
	overflow: hidden;
	list-style: none;
	z-index: 1;
}

.Tour__yukimatsuri__swiper:has(.swiper-scrollbar-lock) {
	padding-bottom: 0;
}

.Tour__swiper-button-next.swiper-button-disabled,
.Tour__swiper-button-prev.swiper-button-disabled {
	display: none;
}

.Tour__yukimatsuri__swiper-button-next,
.Tour__yukimatsuri__swiper-button-prev {
	position: absolute;
	top: calc(50% - 2rem);
	z-index: 10;
	width: 5rem;
	height: 5rem;
	background: var(--page-color);
	border-radius: 50%;
	transition: opacity 0.3s;
	cursor: pointer;
}

.Tour__yukimatsuri__swiperr-button-next:hover,
.Tour__yukimatsuri__swiper-button-prev:hover {
	opacity: 0.7;
}

.Tour__yukimatsuri__swiper-button-next {
	right: -2.5rem;
	transform: translateY(-50%);
}

.Tour__yukimatsuri__swiper-button-prev {
	left: -2.5rem;
	transform: translateY(-50%) rotate(180deg);
}

.Tour__yukimatsuri__swiper-button-next:after,
.Tour__yukimatsuri__swiper-button-prev:after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 8px;
	height: 8px;
	border-top: 2px solid white;
	border-right: 2px solid white;
}

.Tour__yukimatsuri__swiper-button-next:after {
	transform: translate(-70%, -50%) rotate(45deg);
}

.Tour__yukimatsuri__swiper-button-prev:after {
	transform: translate(-60%, -50%) rotate(45deg);
}

.Sec__noTour {
	margin: 5rem 0;
}

/* さっぽろ雪祭りおすすめツアー_end */

/* 会場情報_start */
.Sec__venue {
	text-align: center;
	margin-bottom: 5rem;
	padding-top: 5.6rem;
}

.Group__map {
	position: relative;
	margin-top: 2rem;
}

.Map__anc-items {
	position: absolute;
	top: 0;
	left: 0;
	width: 102.4rem;
	height: 46.7rem;
}

.Map__anc-item {
	position: absolute;
	width: 15.2rem;
	height: auto;
}

.Hotel__anc01 {
	bottom: 136px;
	left: 25px;
}

.Hotel__anc02 {
	bottom: 89px;
	left: 159px;
}

.Hotel__anc03 {
	bottom: 30px;
	left: 115px;
}

.Hotel__anc04 {
    top: 252px;
    right: 572px;
}

.Hotel__anc05 {
	bottom: 105px;
	right: 50px;
}

.Hotel__anc06 {
	bottom: 30px;
    right: 48px;
}

.Map__anc-item img {
    width: auto;
    height: 38px;
}

.Hotel__anc07 {
	top: 286px;
  right: 412px;
}

.Hotel__anc08 {
	top: 168px;
  right: 80px;
}

.Hotel__anc09 {
	top: 62px;
  left: 16px;
}

.Map__anc-link {
	position: relative;
	display: block;
	border: solid 0.1rem var(--page-color);
	border-radius: 100px;
	background-color: #fff;
	width: 100%;
	height: 100%;
	font-size: 1.2rem;
	font-weight: 600;
	line-height: 1.25;
	color: var(--page-color);
	padding: 0.75rem 0;
	transition: background-color 0.3s, color 0.3s;
}

.Map__anc-link::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 1rem;
	display: block;
	width: 0.6rem;
	height: 0.6rem;
	border-top: 0.2rem solid rgba(31, 55, 103, 1);
	border-right: 0.2rem solid rgba(31, 55, 103, 1);
	transform: translateY(-50%) rotate(135deg);
	transition: border 0.3s;
}

.Map__anc-link:hover {
	background-color: var(--page-color);
	color: #fff;
}

.Map__anc-link:hover::before {
	border-top: 0.2rem solid #fff;
	border-right: 0.2rem solid #fff;
}

.Venue-information__label {
	display: inline-block;
	border-radius: 100px;
	border: solid 1px #333333;
	font-size: 1.8rem;
	font-weight: 600;
	padding: 0.5rem 10rem;
}

.Group__directions {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	border: solid 1px #000;
	background-color: #fff;
	margin-top: 3rem;
	padding: 3rem;
}

.directions__title {
	width: calc(100% - 740px);
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.35;
	text-align: center;
}

.directions__title small {
	display: block;
	font-size: 1.2rem;
	line-height: 1.4;
	margin-bottom: 0.5rem;
}

.directions__text {
	width: 740px;
}

.directions__text-items {
	display: flex;
	justify-content: space-between;
}

.directions__text-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	border-left: dotted 0.1rem #333333;
	width: calc(100% / 3);
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 1.375;
}

.Label__venue01 {
	background-color: var(--venue-color01);
}

.Label__venue02 {
	background-color: var(--venue-color02);
}

.Label__venue03 {
	background-color: var(--venue-color03);
}

.Block__table {
	margin-top: 2rem;
}

.Block__venue01 .Block__table {
	background-color: #e6f3ff;
	font-size: 1.4rem;
	padding: 1rem 2rem;
}

.Block__venue02 .Block__table {
	background-color: #ffeaef;
	font-size: 1.4rem;
	padding: 1rem 2rem;
}

.Block__venue03 .Block__table {
	background-color: #fce6ce;
	font-size: 1.4rem;
	padding: 1rem 2rem;
}

.Block__venue01 {
	box-shadow: 0px 0px 30px -5px var(--venue-color01);
	margin-top: 4rem;
}

.Block__venue02 {
	box-shadow: 0px 0px 30px -5px var(--venue-color02);
}

.Block__venue03 {
	box-shadow: 0px 0px 30px -5px var(--venue-color03);
}

.Block__table table {
	border-collapse: collapse;
	width: 100%;
	height: auto;
}

.Block__table table th,
.Block__table table td {
	padding: 0.6rem 0;
}

.Block__table table th {
	width: 33%;
}

.Block__table table td {
	width: 80%;
}

.Block__table table td small {
	display: block;
	font-size: 1rem;
}

.Venue__common {
	display: inline-block;
	font-size: 1.8rem;
	line-height: 1.3;
	color: #fff;
	text-align: center;
	margin-bottom: 1rem;
	padding: 0.5rem 1.5rem;
	font-weight: 500;
}

.Label__common {
	display: inline-block;
	border-radius: 100px;
	font-size: 2rem;
	font-weight: 700;
	color: #fff;
	margin-top: 1rem;
	padding: 0.5rem 15rem;
	font-weight: 500;
}

.Label__copy-inner {
	display: inline-block;
	position: relative;
	font-weight: 700;
}

.Label__copy-inner::before,
.Label__copy-inner::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	background-color: #333;
	width: 0.2rem;
	height: 1.4em;
}

.Label__copy-inner::before {
	left: -2rem;
	transform: translateY(-50%) rotate(-45deg);
}

.Label__copy-inner::after {
	right: -2rem;
	transform: translateY(-50%) rotate(45deg);
}

.Group__venue01,
.Group__venue02 {
	display: flex;
	justify-content: space-between;
	text-align: left;
	margin-top: 3rem;
	align-items: center;
}

.Venu__carousel {
	width: 493px;
	height: auto;
}

.Venue__swiper {
	position: relative;
	overflow: hidden;
	padding-bottom: 1rem;
}

.Venue__article {
	border-radius: 30px;
	overflow: hidden;
}

.Group__venue01-text,
.Group__venue02-text {
	width: 445px;
	height: auto;
}

.Group__venue02-text {
	position: relative;
}

.Group__venue02 {
	position: relative;
}

.Venue__patch {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	align-items: center;
	width: 10rem;
	height: 10rem;
	font-size: 1.2rem;
	text-align: center;
}

.Venue__patch::before,
.Venue__patch::after {
	content: "";
	position: absolute;
	display: block;
	border-radius: 50%;
	width: 10rem;
	height: 10rem;
}

.Venue__patch::before {
	top: -6px;
	right: 0;
	border: solid 1px #333;
	z-index: 2;
}

.Block__venue01 .Venue__patch::after {
	top: -2px;
    right: -2px;
    background-color: #e6f3ff;
    z-index: 1;
}

.Block__venue02 .Venue__patch::after {
	top: -2px;
	right: -2px;
	background-color: #ffeaef;
	z-index: 1;
}

.Block__venue03 .Venue__patch::after {
	top: -2px;
	right: -2px;
	background-color: #fce6ce;
	z-index: 1;
}

.Venue__patch-inner {
	position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 10rem;
    height: 10rem;
    font-size: 1.2rem;
    font-weight: 600;
    padding-bottom: 0.5rem;
    z-index: 3;
}

.Venue__patch-inner::before {
	content: "";
	position: absolute;
	left: 2rem;
	bottom: 0;
	display: block;
	background-color: #333;
	width: 0.1rem;
	height: 2em;
	transform: rotate(45deg);
}

.Label__event {
	position: relative;
	display: inline-block;
	font-family: "Outfit", sans-serif;
	font-weight: 600;
	margin-bottom: 1.5rem;
	padding-left: 2.4rem;
}

.Label__event::before {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	background-color: #333;
	width: 1.6rem;
	height: 0.1rem;
}

.Event__title {
	border-bottom: dotted 2px #333;
	font-size: 2rem;
	font-weight: 600;
	line-height: 1.35;
	margin-bottom: 1.5rem;
	padding-bottom: 1.5rem;
}

.Event__caption {
	font-size: 1.4rem;
	letter-spacing: 0.1rem;
}

.Event__caption strong {
	display: block;
	font-size: 1.6rem;
}
/* swiper */
.swiper-pagination-bullet {
	width: 10px;
	height: 10px;
}

.Block__venue01 .swiper-pagination-bullet-active {
	background: var(--venue-color01);
}

.Block__venue02 .swiper-pagination-bullet-active {
	background: var(--venue-color02);
}

.Block__venue03 .swiper-pagination-bullet-active {
	background: var(--venue-color03);
}
/* 会場情報_end */

/* さっぽろ雪まつりの周辺ホテル_start */
.Sec__hotel {
    background-color: var(--bg-color);
	margin-bottom: 5rem;
	padding-top: 5rem;
}

.Heading__h4-hotel {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 2.4rem;
	font-weight: 600;
	color: var(--page-color);
	text-align: center;
	margin: 4rem 0 2.3rem;
}

.Heading__h4-hotel.icon__hotel::before {
	content: "";
	display: block;
	background-image: url(/attending/kokunai/yukimatsuri/images/icon__hotel.svg);
	background-size: contain;
	background-repeat: no-repeat;
	width: 3.4rem;
	height: 3.5rem;
}

.Heading__h4-hotel.icon__hotspring::before {
	content: "";
	display: block;
	background-image: url(/attending/kokunai/yukimatsuri/images/icon__hotspring.svg);
	background-size: contain;
	background-repeat: no-repeat;
	width: 3.4rem;
	height: 2.7rem;
}

.Group__hotel {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 1.7rem;
}

.Hotel__cassette {
	display: flex;
	flex-direction: column;
	outline: 1px solid var(--page-color);
	outline-offset: -1px;
	border-radius: 8px;
	width: 33rem;
	padding: 1.5rem 0 2.5rem;
    background-color: #fff;
}

.Hotel__name {
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
	margin-bottom: 1rem;
}

.Hotel__cassette figure {
    height: 216px;
    width: 330px;
    overflow: hidden;
}
.Hotel__caption {
	font-size: 1.4rem;
	padding:1.5rem 2.5rem 0 2.5rem
	/* ボタンコメントアウト前
	padding: 1.5rem 2.5rem 2.5rem; */
}

.Hotel__button {
	display: block;
	margin-top: auto;
	padding: 0 2.5rem;
}

.Hotel__button button {
	width: 100%;
}

.Hotel__link {
	position: relative;
	display: block;
	background-color: var(--page-color);
	border-radius: 8px;
	font-size: 1.4rem;
	color: #fff;
	text-align: center;
	padding: 1.5rem 0;
	transition: all 0.3s;
}

.Hotel__link:hover {
	opacity: 0.7;
}

.Hotel__link::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 1rem;
	display: block;
	width: 0.6rem;
	height: 0.6rem;
	border-top: 0.2rem solid rgba(255, 255, 255, 1);
	border-right: 0.2rem solid rgba(255, 255, 255, 1);
	transform: translateY(-50%) rotate(45deg);
}

.Hotel__map {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 33rem;
}

.Hotel__map-title {
	border-bottom: solid 1px #9b75ac;
	width: 100%;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.25;
	color: #9b75ac;
	text-align: center;
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
}

.Hotel__map-caption {
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
	margin-top: 1rem;
}
/* さっぽろ雪まつりの周辺ホテル_end */

/* さっぽろ雪まつりの紹介動画_start */
.Sec__movie{
	background: rgb(255, 255, 255);
background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(216, 209, 235, 1) 50%, rgba(159, 197, 237, 1) 100%);
    padding: 5rem 0;
}
.Sec__movie .Common21__inner{
	position:relative;
}
.Sec__movie .Common21__inner::before{
	content: url(/attending/kokunai/yukimatsuri/images/illust01.png);
    position: absolute;
    top: 40%;
    right: -10%;
    width: 128px;
    height: 72px;
}
.Sec__movie .Common21__inner::after{
	content: url(/attending/kokunai/yukimatsuri/images/illust03.png);
    position: absolute;
    top: 70%;
    left: -8%;
    width: 161px;
    height: 128px;
}
/* さっぽろ雪まつりの紹介動画_end */

/* よくある質問_start */
.Sec__faq {
	padding: 5rem 0;
}

details:not(:last-child) {
	margin-bottom: 1.5rem;
}

summary {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	background-color: var(--page-color);
	list-style: none;
	padding: 1.5rem 3rem;
	cursor: pointer;
}

summary::-webkit-details-marker {
	display: none;
}

summary::before {
	content: "Q";
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	background-color: #fff;
	width: 5rem;
	height: 5rem;
	font-size: 2.8rem;
	font-family: "Outfit", sans-serif;
	line-height: 1;
	color: var(--page-color);
	margin-right: 1rem;
}

.Summary__inner {
	position: relative;
	width: calc(100% - 5rem - 1rem);
	font-size: 1.8rem;
	font-weight: 500;
	color: #fff;
	line-height: 1.6;
	padding-left: 20px;
}

.Summary__inner::before,
.Summary__inner::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0.5rem;
	display: block;
	width: 0.2rem;
	height: 1.4rem;
	background-color: #fff;
	transform: translate(-50%, -50%);
}

.Summary__inner::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.is-opened .Summary__inner::before {
	transform: translate(-50%, -50%) rotate(90deg);
}

/* details[open] .Summary__inner::before {
	transform: translate(-50%, -50%) rotate(90deg);
} */

.Faq__content {
	overflow: hidden;
}

.Faq__text {
	display: flex;
	justify-content: flex-start;
	background: rgb(255, 255, 255);
background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(216, 209, 235, 1) 50%, rgba(159, 197, 237, 1) 100%);
	line-height: 1.6;
	color: var(--page-color);
	padding: 1.5rem 3rem;
}

.Faq__text span {
    width: calc(100% - 10rem - 1rem);
    padding-left: 20px;
}

.Faq__text::before {
	content: "A";
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	background-color: var(--page-color);
	width: 5rem;
	height: 5rem;
	font-size: 2.8rem;
	font-family: "Outfit", sans-serif;
	line-height: 1;
	color: #fff;
	margin-right: 1rem;
}

/* details[open] .Faq__text {
	animation: fadein 0.5s ease;
}

@keyframes fadein {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
} */
/* よくある質問_end */

/* さっぽろ雪まつりの現地情報_start */
.Sec__blog {
	background-color: var(--bg-color);
	padding: 5rem 0;
}

.blog__inner {
	position: relative;
}

.blog__inner::before {
    content: "";
    width: 167px;
    height: 131px;
    position: absolute;
    bottom: -50px;
    left: 0;
    background: url(/attending/kokunai/yukimatsuri/images/house.png) no-repeat center top;
    background-size: 100%;
}

.blog__inner::after {
    content: "";
    width: 139px;
    height: 177px;
    position: absolute;
    bottom: -130px;
    right: 0;
    background: url(/attending/kokunai/yukimatsuri/images/illust02.png) no-repeat center top;
    background-size: 100%;
}

.Blog__items {
	display: flex;
	justify-content: space-between;
	gap: 2rem;
    margin-bottom: 3rem;
}

.Blog__item {
	background-color: #fff;
	width: calc(100% / 2);
	padding: 2rem;
}

.blog_txt {
	text-align: right;
	font-size: 1.2rem;
    margin-bottom: 1rem;
}

.Blog__cassette {
	display: flex;
	justify-content: space-between;
}

.Blog__photo {
	width: 20rem;
	height: auto;
}

.Blog__photo img {
	width: 20rem;
	height: 14rem;
	object-fit: cover;
}

.Blog__cassette-inner {
	display: flex;
	flex-direction: column;
	width: calc(100% - 20rem - 2rem);
}

.Blog__day {
	font-weight: 600;
	line-height: 1.3;
}

.Blog__ttl {
	line-height: 1.3;
	margin-top: 1rem;
}

.Blog__pref {
	text-align: right;
	margin-top: auto;
}

.Blog__pref-label {
	display: inline-block;
	background-color: #96acb7;
	font-size: 1.5rem;
	color: #fff;
	padding: 0.5rem 1rem;
}
/* さっぽろ雪まつりの現地情報_end */

/* その他おすすめ特集_start */
.Sec__recommended {
	padding: 5rem 0;
}

.swiper-slider__outer {
	position: relative;
}

.bannerCassette_content .bannerImg {
	width: 230px;
	height: 173px;
}

/* swiper */
.swiper-wrapper {
	margin-bottom: 30px;
}

.swiper-button-prev {
	top: calc(50% - 15px);
	left: -25px;
}

.swiper-button-next {
	top: calc(50% - 15px);
	right: -25px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
	content: none;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
	display: none;
}

.swiper-button-prev,
.swiper-button-next {
	background-color: var(--page-color);
	border-radius: 50%;

	width: 50px;
	height: 50px;
	cursor: pointer;
	z-index: 10;
	transition: all 0.3s;
	background-image: none;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
	transition: all 0.3s;
	opacity: 0.7;
}

.swiper-button-prev::before,
.swiper-button-next::before {
	content: "";
	position: absolute;
	top: 50%;
	display: block;
	width: 12px;
	height: 12px;
}

.swiper-button-prev::before {
	left: 55%;
	transform: translate(-50%, -50%) rotate(-135deg);
}

.swiper-button-next::before {
	left: 45%;
	transform: translate(-50%, -50%) rotate(45deg);
}

.swiper-container-horizontal > .swiper-scrollbar {
	left: 0;
	width: 100%;
	height: 8px;
	background-color: #e4e4e4;
}

.swiper-slider__outer .swiper-button-prev::before,
.swiper-slider__outer .swiper-button-next::before {
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
}
/* その他おすすめ特集_end */

/* 終了告知文 */
.Post {
	font-size: 22px;
	font-weight: 600;
	color: #c00;
	text-align: center;
	margin-top: 10px;
  }

.column02 {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.movie_wapper {
    margin: 60px auto 0;
    text-align: center;
	width:800px;
	height:400px;
}

.venue_btn {
	transition: all 0.3s;
}

.venue_btn:hover {
	opacity: 0.7;
}

.Sec__tour {
	background: rgb(255, 255, 255);
background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(216, 209, 235, 1) 50%, rgba(159, 197, 237, 1) 100%);
    padding: 5rem 0;
}
.Sec__tour .Block__tour{
	position:relative;
}
.Sec__tour .Block__tour::before{
	content: url(/attending/kokunai/yukimatsuri/images/illust04.png);
    position: absolute;
    top: 60%;
    left: 8%;
    width: 121px;
    height: 390px;
}
.Sec__tour .Block__tour::after{
	content: url(/attending/kokunai/yukimatsuri/images/illust05.png);
    position: absolute;
    top: 10%;
    right: 8%;
    width: 121px;
    height: 342px;
}

.Sec__date {
    background-color: var(--bg-color);
    padding-bottom: 5.6rem;
}