@charset "utf-8";
/*==================================================
	【サブ】ページ固有のスタイル
==================================================*/
#events .events_box .box {
	align-items: flex-start;
	justify-content: center;
	column-gap: 30px;
	margin: 0 auto;
	position: relative;
}
#events .events_box .box.bg01::before {
	background: url("../img/events/bg01.png") no-repeat bottom left/10%;
	top: auto;
	bottom: 0;
}
#events .events_box .box.bg03::before {
	background: url("../img/events/bg01.png") no-repeat top left/10%;
	top: 0;
}
#events .events_box .box.bg05::before {
	background: url("../img/events/bg01.png") no-repeat bottom left/10%;
	top: auto;
	bottom: -150px;
	height: 100vw;
}
#events .events_box .box.bg02::after {
	background:url("../img/events/bg02.png") no-repeat top right/10%;
	top: -50px;
	right: 0;
}
#events .events_box .box.bg04::after {
	background:url("../img/events/bg02.png") no-repeat bottom right/10%;
	top: auto;
	bottom: -50px;
	right: 0;
}
#events .events_box .box.bg06::after {
	background:url("../img/events/bg02.png") no-repeat bottom right/10%;
	top: auto;
	bottom: 100px;
	right: 0;
}
#events .events_box .box .month {
	position: relative;
	display: inline-block;
	line-height: 80px;
	font-size: 42px;
	background: #95cb4d;
	border-radius: 10px;
	padding: 0 45px;
	color: #fff;
}
#events .events_box .box .month::before {
	content: "";
	position: absolute;
	top: 5px;
	left: 5px;
	border: 1px solid #95cb4d;
	border-radius: 10px;
	width: 100%;
	height: 100%;
	display: inline-block;
}
#events .events_box .box .white {
	width: 815px;
	background: #fff;
	padding: 50px 40px 35px;
	border-radius: 20px;
	column-gap: 50px;
	justify-content: flex-start;
	margin-bottom: 80px;
}
#events .events_box .box .white .img {
	width: 351px;
	font-size : 105%;
	line-height : 30px;
	font-weight: 500;
}
#events .events_box .box .white .img img {
	width: 100%;
	border-radius: 20px;
	padding-bottom: 10px;
}
#events .events_box .box .white .ttl {
	font-size : 35px;
	font-weight: 500;
	margin-bottom: 30px;
	line-height: 0.5em;
}
#events .events_box .box02 .white .ttl {
	line-height: 1em;
	width: 30%;
}
#events .events_box .box02 .white .ttl img {
	padding-top: 30px;
}
#events .events_box .box .white .txt_in li {
	font-size : 105%;
	line-height : 38px;
	font-weight: 500;
	position: relative;
	padding-left: 20px;
}
#events .events_box .box .white .txt_in li::before {
	content: "";
	background: #ed99a3;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	position: absolute;
	top: 15px;
	left: 0;
}
#events .events_box .box02 .white .txt_in {
	width: calc(100% - 45%);
	justify-content: space-between;
}
#events .monthly h3.sub {
	position: relative;
	/* 縦方向中央揃え */
	display: flex;
	align-items: center;
	column-gap: 0.5em;
}
#events .monthly h3.sub::before {
	display: inline-block;
	width: 33px;
	height: 29px;
	background: url("../img/top/icon01.png") no-repeat center center / contain;
	content: "";
}
#events .monthly ul {
	display: grid;
	justify-content: space-between;
	grid-template-columns: repeat(3, 32%);
	gap: 15px 0;
}
#events .monthly li {
	background: #fff;
	font-size : 125%;
	line-height : 38px;
	font-weight: 500;
	position: relative;
	padding: 20px;
	padding-left: 40px;
	border-radius: 20px;
}
#events .monthly li::before {
	content: "";
	background: #ed99a3;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	position: absolute;
	top: 36px;
	left: 20px;
}
#events .js-mascot {
	position: absolute;
}
#events .js-mascot.mascot01 {
	right: 90px;
	top: -45px;
}
#events .js-mascot.mascot01 img {
	width: 70px;
}
#events .js-mascot.mascot02 {
	right: 90px;
	bottom: 77px;
}
#events .js-mascot.mascot02 img {
	width: 135px;
}
#events .js-mascot.mascot03 {
	right: 90px;
	top: 200px;
}
#events .js-mascot.mascot03 img {
	width: 70px;
	transform: scale(-1,1);
}
#events .js-mascot.mascot04 {
	right: 180px;
	bottom: 100px;
}
#events .js-mascot.mascot05 {
	right: 120px;
	bottom: 120px;
}
#events .js-mascot.mascot06 {
	right: 80px;
	bottom: 170px;
}
#events .js-mascot.mascot04 img,#events .js-mascot.mascot05 img,#events .js-mascot.mascot06 img {
	width: 40px;
}
@media print, screen and (min-width: 769px){ /* PCのみ */
}
@media print, screen and (min-width: 641px){ /* PC・タブレット */
}
@media only screen and (max-width: 768px) and (min-width: 641px){ /* タブレットのみ */
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#events .events_box .box::before,#events .events_box .box::after {
		background-size: 15%!important;
	}
	#events .events_box .box .month {
		line-height: 50px;
		font-size: 125%;
		padding: 0 25px;
	}
	#events .events_box .box .white {
		width: calc(100% - 130px);
		padding: 30px;
		column-gap: 10px;
	}
	#events .events_box .box .white .img {
		width: 70%;
		margin: 0 auto 25px;
		font-size: 80%;
	}
	#events .events_box .box .white .ttl {
		font-size: 25px;
		margin-bottom: 15px;
		line-height: 1.8em;
	}
	#events .events_box .box .white .txt_in li {
		font-size: 80%;
		line-height: 2em;
	}
	#events .events_box .box .white .txt_in li::before {
		top: 10px;
	}
	#events .events_box .box02 .white .ttl {
		width: 35%;
	}
	#events .events_box .box02 .white .txt_in {
		width: 50%;
	}
	#events .monthly li {
	font-size: 80%;
	line-height: 1.8em;
	padding: 10px;
	padding-left: 40px;
	border-radius: 10px;
	}
	#events .monthly li::before {
		top: 19px;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#events .events_box .box::before, #events .events_box .box::after {
		background-size: 25% !important;
	}
	#events .events_box .box .month {
		line-height: 40px;
		margin-bottom: 20px;
	}
	#events .events_box .box .white {
		width: 100%;
		margin-bottom: 30px;
	}
	#events .events_box .box .white .img {
		width: 80%;
		margin-bottom: 15px;
		font-size: 98%;
	}
	#events .events_box .box02 .white .ttl span {
		display: flex;
		justify-content: center;
		align-items: center;
	}
	#events .events_box .box02 .white .ttl img {
		width: 180px;
	}
	#events .events_box .box .white .ttl {
		font-size: 20px;
	}
	#events .events_box .box02 .white .ttl,#events .events_box .box02 .white .txt_in {
		width: 100%;
	}
	#events .events_box .box .white .txt_in li {
		font-size: 98%;
	}
	#events .monthly ul {
		grid-template-columns: 100%;
	}
	#events .monthly li {
		font-size: 98%;
	}
	#events .monthly li::before {
		top: 17px;
	}
	#events .js-mascot.mascot01 {
		right: 30px;
		top: 0;
	}
	#events .js-mascot.mascot02 {
		right: 0;
		bottom: 30px;
	}
	#events .js-mascot.mascot03 {
		top: 350px;
	}
	#events .js-mascot.mascot04 {
		right: 80px;
	}
	#events .js-mascot.mascot05 {
		right: 40px;
	}
	#events .js-mascot.mascot06 {
		right: 0;
	}
}