@charset "UFT-8";

/* 球団トップページ ポップアップ
 一部書き換えのため、lity.min2.css使用 */
.lity-iframe-container {
	padding-top: 100%;
	padding-top: 100vh;
}

.lity-iframe .lity-container {
	width: 100% !important;
	max-width: 100% !important;
	height: 100% !important;
}

.lity-wrap {
	padding: 20px;
	overflow: scroll;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lity-content>* {
	max-height: none !important;
}

.lity-image img {
	margin: 0 auto;
}

@media screen and (max-width: 810px) {
	.lity-wrap {
		padding: 10px;
	}
}

@media screen and (max-width: 768px) {
	html {
		height: auto;
	}

	.lity-wrap {
		padding: 15px;
	}

	.lity-iframe .lity-content {
		width: 100% !important;
		max-width: 100% !important;
		height: 100% !important;
	}

	.lity-iframe-container {
		padding-top: calc(100vh - 30px);
	}
}

/* 今日は何の日？ページ */
body {
	-webkit-font-feature-settings: "palt" 1;
	font-feature-settings: "palt" 1;
	font-family: 'Noto Sans JP', sans-serif;
	background-color: transparent;
	overflow-y: scroll;
	width: 100%;
	height: 100%;
}

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

.swiper-wtoday {
	width: 100%;
	height: 100%;
}

.swiper-wtoday .swiper-slide {
	height: auto;
}

.month {
	border-top-left-radius: 30px;
	border-top-right-radius: 30px;
	background-color: #faeee0;
	padding-bottom: 65px;
	height: 100%;
}

.month::after {
	content: "";
	position: absolute;
	bottom: -10px;
	width: 100%;
	height: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	background-color: #faeee0;
}

.month_tit {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-size: 26px;
	font-weight: bold;
	background-color: #d34e23;
	color: #fff;
	padding: 5px 7px;
	border-top-left-radius: 30px;
	border-top-right-radius: 30px;
	border: calc(1px / 2) #edbe86 solid;
}

.week_header {
	background-color: #d34e23;
	display: flex;
	text-align: center;
}

.week_header>div {
	display: flex;
	flex-flow: column;
	width: calc(100% / 7);
	color: #fff;
	padding: 5px 7px;
	border: calc(1px / 2) #edbe86 solid;
	font-weight: bold;
}

.week {
	background-color: #faeee0;
	display: flex;
	text-align: center;
}

.day_box {
	display: flex;
	align-items: flex-start;
	flex-flow: column;
	width: calc(100% / 7);
	border: calc(1px / 2) #edbe86 solid;
	padding: 7px;
}

.week .no_bg {
	background-color: rgba(250, 238, 224, 0.85);
}

.day_box>div {
	display: none;
}

.day_box h2 {
	width: 100%;
	font-size: 16px;
	font-weight: bold;
	text-align: left;
	line-height: 1.3;
	padding-bottom: 5px;
}

.day_box p {
	font-weight: bold;
	color: #d34e23;
	line-height: 1.0;
	padding-bottom: 5px;
}

.day_box p.date03::before {
	content: "3/";
}

.day_box p span {
	display: none;
}

.day_box img {
	max-width: 100%;
	width: 100%;
	margin-bottom: 3px;
}

.day_box img:last-child {
	margin-bottom: 0;
}

.week_footer {
	display: flex;
	text-align: center;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	background-color: #d34e23;
}

.swiper-wtoday {
	max-width: 100%;
	width: 100%;
	overflow: hidden;
}

.swiper-button-next,
.swiper-button-prev {
	top: 30px;
	width: 100px;
	height: 30px;
	color: rgba(255, 255, 255, 1.00);
	font-weight: bold;
	border-radius: 20px;
}

.swiper-wtoday.active .swiper-button-next,
.swiper-wtoday.active .swiper-button-prev {
	display: flex;
}

.swiper-button-next {
	right: 26px;
}

.swiper-button-prev {
	left: 26px;
}

.swiper-button-next::before {
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 8px 0 8px 9px;
	border-color: transparent transparent transparent rgba(255, 255, 255, 1.00);
	position: absolute;
	top: calc(50% - 8px);
	right: 6px;
}

.swiper-button-prev::before {
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 8px 9px 8px 0;
	border-color: transparent rgba(255, 255, 255, 1.00) transparent transparent;
	position: absolute;
	top: calc(50% - 8px);
	left: 6px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
	font-size: 22px;
}

.swiper-button-next::after {
	content: '次へ';
}

.swiper-button-prev::after {
	content: '前へ';
}

@media screen and (max-width: 768px) {
	.week_header {
		display: none;
	}

	.week {
		display: block;
		text-align: left;
	}

	.day_box {
		flex-flow: wrap;
		width: 100%;
		border-left: none;
		border-right: none;
	}

	.week .no_bg {
		display: none;
	}

	.day_box h2 {
		/*width: calc(100% - 5.4em);*/
		font-size: 14px;
	}

	.day_box>div {
		width: 100%;
	}

	.day_box p {
		width: 4.6em;
		font-size: 14px;
		line-height: 1.3;
	}

	.day_box p.date03 {
		width: 5.4em;
	}

	.day_box p span {
		display: inline;
	}

	.day_box img {
		vertical-align: bottom;
		width: calc(50% - 2px);
		margin-bottom: 0;
		padding: 0;
	}

}
