@charset "utf-8";


/* SC 85th特集 */

body { font-family: "メイリオ",Meiryo,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","Lucida Grande","ＭＳ Ｐゴシック","Osaka",Helvetica,verdana,arial,sans-serif; }
.wrapper { margin: 0; min-height: 100vh; position: relative; padding-bottom: 40px; box-sizing: border-box; text-align: center }
.header_wrap { width: 100%; overflow: hidden; padding: 10px; display: flex; box-sizing: border-box; }
.header_wrap .larea { width: 78px; }
.header_wrap .rarea { width: calc(100% - 78px); text-align: left; padding: 10px; box-sizing: border-box; }

.header_wrap h1.logo { text-align: left; }
.header_wrap h1.logo img { width: 78px; height: auto; }
.header_wrap p.catch { width: 84px; height: auto; margin-bottom: 2px; }
.header_wrap p.catch img { width: 84px; }

.cont_wrapper { max-width: 900px; width: calc(100% - 20px); box-sizing: border-box; margin: 10px auto 0 }
.movie_1_1 { position: relative; max-width: 900px; width: 100%; padding-top: 56.2222%; margin-bottom: 3.125% }
.movie_1_1 iframe {	position: absolute;	width: 100%; height: 100%; top: 0; left: 0 }
.freecontents { margin: 3.125% 10px }
.freecontents p { margin: 0 auto; text-align: center; line-height: 1.75; font-size: 1.2em }
.freecontents p.tex12 { width: 315px; font-size: 12px;text-align: left; }
.freecontents p.mt1em { width: 425px; margin: 1em auto; text-align: left; padding-left: 1.5em; text-indent: -1.5em; box-sizing: border-box }
.freecontents p.mt0em { width: 425px; margin: -1em auto 1em; text-align: left; padding-left: 1.5em; text-indent: -1.5em; box-sizing: border-box }
.freecontents p.botimg { width: 60%; min-width: 320px; margin: 1.5625% auto; background-color: #dd3333; border-radius: 100vh; font-weight: bold; font-size: 1.75em; line-height: 1.25em }
.freecontents p.botimg:hover { background-color: #ff6666; cursor: pointer }
.freecontents p.botimg a { color: #fff; text-decoration: none; padding: 0.5em; display: block }
.freecontents p.botimg a:hover { text-decoration: none }
.freecontents .arrow_r { position: relative; display: inline-block; color: #fff; text-decoration: none }
.freecontents .arrow_r:before { content: ''; width: 12px; height: 12px; border: 0; border-top: solid 4px #fff; border-right: solid 4px #fff; position: absolute; top: 44%; right: 24px; margin-top: -4px; transform: rotate(45deg) }
#footerarea { position: absolute; bottom:0; width: 100%; margin: 0; text-align: center }
#footerarea p.backtotop a img { width: 137px; position: absolute; right: 0; bottom: 3.5em; opacity: 0.7; }
#footerarea p.copyright { margin: 0 auto; padding: 5px; font-size: 10px; color: #fff; background-color: #333 }

.mbottom_bnr { padding: 0 0 2.75em; border-bottom: 1px solid #ccc; margin-bottom: 3em; }
.mbottom_bnr .title { font-size: 1.2em; }
.mbottom_bnr .bnr { margin-bottom: 0!important; }
.mbottom_bnr .bnr img { width: 80%; }

.cont_wrapper .cont_img { margin-bottom: 50px; }
.cont_wrapper .cont_img p { width: 760px; margin: 1em auto 0; }

.matsuribody img, .matsuribody li a { display: block; }
.matsuribody ul.yotei { margin: 0 auto; }
.matsuribody ul.yotei li { margin: 0; padding: 0; }
.matsuribody ul.yotei li.botarea { display: flex; justify-content: center; background-size: cover; }
.matsuribody ul.yotei li.botarea.back09 { background-image: url(/common2/85th/img/241202_matsuri_09_2.png); background-repeat: no-repeat; }
.matsuribody ul.yotei li.botarea.back10 { background-image: url(/common2/85th/img/241202_matsuri_10_2.png); background-repeat: no-repeat; }
.matsuribody ul.yotei li.botarea.back11 { background-image: url(/common2/85th/img/241202_matsuri_11_2.png); background-repeat: no-repeat; }
.matsuribody ul.yotei li.botarea.back12 { background-image: url(/common2/85th/img/241202_matsuri_12_2.png); background-repeat: no-repeat; }
.matsuribody ul.yotei li.botarea.back13 { background-image: url(/common2/85th/img/241202_matsuri_13_2.png); background-repeat: no-repeat; }
.matsuribody ul.yotei li.botarea.back14 { background-image: url(/common2/85th/img/241202_matsuri_14_2.png); background-repeat: no-repeat; }
.matsuribody ul.yotei li:nth-of-type(odd) div { background-color: #FBDEDE; }
.matsuribody ul.yotei li:nth-of-type(even) div { background-color: #F2F2F2; }



body.schid { overflow: hidden; }

/* modal */

/* モーダルを開くボタン */
.sc85 .modal-open {
	border: none;
	cursor: pointer;
	background: transparent;
	position: absolute;
	left: 16px;
	bottom: 30px;
}

/* モーダルと背景の指定 */
.sc85 .modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	background: rgba(0, 0, 0, 80%);
	opacity: 0;
	visibility: hidden;
	transition: .3s;
	box-sizing: border-box;
	overflow-y: auto;
	overscroll-behavior-y: contain;
}

/* モーダルの擬似要素の指定 */
.sc85 .modal:before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	height: 100%;
	margin-left: -0.2em;
}

/* クラスが追加された時の指定 */
.sc85 .modal.is-active {
	opacity: 1;
	visibility: visible;
	z-index: 101;
}

/* モーダル内側の指定 */
.sc85 .modal-container {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	max-width: 678px;
	width: 100%;
}

/* モーダルを閉じるボタンの指定 */
.sc85 .modal-close {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	bottom: 50px;
	left: calc(100% / 2 - 204px);
	cursor: pointer;
}

/* モーダルのコンテンツ部分の指定 */
.sc85 .modal-content {
	position: relative;
	top: -20px;
	left: calc(100% / 2 - 340px);
}

/* モーダルのコンテンツ部分のテキストの指定 */
.sc85 .modal-content p {
	margin: 1em 0;
}

/* modal e */


.sc85 {
	width: 760px;
	margin: 0 auto 20px;
	/* background: #c6000b; */
}

.sc85 .mb29 {
	margin-bottom: 29px;
}

.sc85 .cont_wrap.mb0 .mb29 {
	margin-bottom: 0;
}

.sc85 .campaign.pb29 {
	padding-bottom: 29px;
}

.sc85 .zwrap01 {
	position: relative;
}
.sc85 .zwrap02 {
	position: relative;
}
.sc85 .wrap,
.sc85 .read_message {
	position: relative;
}
.sc85 h1 {
	position: relative;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	z-index: -1;
	width: 100%;
	aspect-ratio: 760 / 1067;
	background: #690911 url(/common2/85th/img/250401_85th_title01.jpg) 0 0 no-repeat;
	background-size: cover;
}
.sc85 a.anchor {
	position: absolute;
	bottom: 0;
	display: block;
	width: 100%;
}
.sc85 a.anchor img {
	display: block;
	margin: 0 auto;
}
.sc85 .contents {
	padding-top: 20px;
	padding-bottom: 20px;
	background-image: linear-gradient(180deg, rgba(148, 9, 14, 1) 10%, rgba(184, 0, 12, 1) 24%);
}

.sc85 .cont_wrap {
	position: relative;
	background: #770007;
	margin: 0 20px;
}

.sc85 .campaign {
	position: relative;
	padding-top: 29px;
}

.sc85 .yokokucont {
	margin: 0 0 29px;
}

.sc85 .yokokucont .campaign {
	padding-top: 0;
}

.sc85 img.batch {
	position: absolute;
	top: 50px;
	left: 14px;
}

.sc85 img.batch.sq {
	position: absolute;
	top: -11px;
	left: -11px;
}

.sc85 img.bot_link {
	margin: 29px 0 0;
}

.sc85 .spcont img.bot_link {
	margin-top: 0;
}

.sc85 .trigger00 {
	position: relative;
}

.sc85 .sns_Area {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
	/*aspect-ratio: 760 / 487;*/
	background: url(/common2/85th/img/backimg01.png) 0 65px no-repeat;
	background-size: cover;
}

.sc85 .sns_Area .cont_wrap {
	background: #fff;
	width: calc(100% - 40px);
	margin: 29px auto 0;
	padding: 20px;
	border: 5px solid #e0b349;
	box-sizing: border-box;
}

.sc85 .sns_Area ul {
	display: flex;
	justify-content: center;
	margin: 0 auto;
}

.sc85 .cont_wrap.mb0 {
	margin-bottom: 0;
}


/* SP */
@media screen and (max-width: 932px) {

	body { font-family: sans-serif; }
	.header_wrap .larea { width: 63px; }
	.header_wrap .rarea { width: calc(100% - 63px); }
	.header_wrap h1.logo img { width: 63px; }
	.header_wrap p.htex { font-size: 12px; }
	.cont_wrapper { max-width: 100%; width: 100%; }
	.freecontents { margin-bottom: 70px; }
	.freecontents p { line-height: 1.5; font-size: 0.9em }
	.freecontents p.tex12, .freecontents p.mt1em { width: 100%; }
	.freecontents p.tex12 br { display: none; }
	.freecontents p.botimg { min-width: 270px; font-size: 1em; }
	.mbottom_bnr { padding: 0 0 8.25%; border-bottom: 1px solid #ccc; margin: 6.25% 0 2.1em; font-size: 0.9em; }
	.mbottom_bnr .title { margin-bottom: 0.75em; }
	.mbottom_bnr .bnr img { width: 100%; }
	.cont_wrapper .cont_img { margin-bottom: 30px; }
	.cont_wrapper .cont_img p { font-size: 12px; margin: 1em 0 0; text-align: left; padding-left: 1.3em; text-indent: -1.3em; }
	.matsuribody ul.yotei li div { width: calc(100% / 3 - 10%); }

	/* モーダルを開くボタン */
	.sc85 .modal-open {
		left: 0;
		bottom: 13px;
		padding: 0 0.5em;
	}

	/* モーダル内側の指定 */
	.sc85 .modal-container {
		max-width: 100%;
		width: 90%;
	}

	/* モーダルの擬似要素の指定 */
	.sc85 .modal:before {
		content: "";
		height: inherit;
		margin-left: 0;
	}
	/* モーダルのコンテンツ部分の指定 */
	.sc85 .modal-content {
		top: 0;
		left: 0;
	}

	/* モーダルを閉じるボタンの指定 */
	.sc85 .modal-close {
		bottom: 15px;
		left: inherit;
		padding: 0 3.5em;
	}

	/* modal e */

	.sc85 {
		width: 100%;
		margin: 0;
	}

	.sc85 .wrap.m01,
	.sc85 .wrap.m02,
	.sc85 .wrap.m03,
	.sc85 .wrap.m04 {
		margin: 0 10px;
	}

	.sc85 img {
		width: 100%;
	}
/*
	.sc85 .zwrap01 {
		position: -webkit-sticky;
		position: sticky;
		top: -138px;
	}
*/

	.sc85 .contents {
		padding-bottom: 1em;
	}

	.sc85 .cont_wrap {
		margin: 0 10px 20px;
		padding-bottom: 0;
	}

	.sc85 .campaign {
		padding: 10px 10px 0;
	}

	.sc85 .yokokucont {
		margin-bottom: 20px;
	}

	.sc85 .yokokucont .campaign {
		padding: 0;
	}

	.sc85 .trigger01,
	.sc85 .trigger02,
	.sc85 .trigger03,
	.sc85 .trigger04 {
		margin: 0 10px;
	}

	.sc85 .mb29 {
		margin-bottom: 10px;
	}

	.sc85 .campaign.pb29 {
		padding-bottom: 10px;
	}

	.sc85 img.bot_link {
		margin: 10px auto 0;
		width: 96%;
		position: relative;
		left: inherit;
	}

	.sc85 img.batch {
		width: 20%;
		top: 18%;
		left: 1%;
	}

	.sc85 img.batch.sq {
		top: -5.5%;
		left: -1.5%;
	}

	.sc85 .sns_Area {
		background-position: 0 29px;
	}

	.sc85 .sns_Area .cont_wrap {
		margin: 10px auto 0;
		width: calc(100% - 20px);
		padding: 0 15px;
		border-width: 2px;
	}

	.sc85 .sns_Area .cont_wrap ul {
		margin: 0 auto;
	}

	.sc85 .cont_wrap.spcont img.bot_link {
		display: flex;
		padding-bottom: 0;
		margin-bottom: 0;
		width: calc(100% - 20px);
		position: relative;
		left: inherit;
	}


}
