@charset "utf-8";

/*-------------------------
header
---------------------------*/
header {
	background: url("../img/header/img_keyvisual.webp") no-repeat center bottom;
	background-size: cover;
	width: 100vw;
	height: 100vh;
	padding-top: 130px;
	position: relative;
	top: 0;
	z-index: 0;
}
header a,
header img {
	display: block;
	width: 100%;
}
header div {
	width: 80%;
	max-width: 710px;
	padding-bottom: 1%;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, calc(-50% + 100px));
	transform: translate(-50%, calc(-50% + 100px));
}
header a {
	max-width: 30%;
	position: absolute;
	bottom: 25%;
	right: 29%;
}
header a:hover {
	opacity: .6;
}
header p {
	width: 80%;
	max-width: 810px;
	position: absolute;
	top: 50%;
	left: 50%;
    -webkit-transform: translate(-50%, calc(-50% - 150px));
    transform: translate(-50%, calc(-50% - 150px));
}
@media screen and (max-width: 667px) {
	header {
		background-size: auto 150%;
		padding-top: 50px;
	}
	header div {
		max-width: 480px;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
	}
	header p {
		width: 80%;
		max-width: 1040px;
		position: absolute;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%, calc(-50% - 100px));
		transform: translate(-50%, calc(-50% - 100px));
	}
	header p {
		font-size: var(--text-n);
	}
}

/*-------------------------
Navi
---------------------------*/
/* pcNavi */
nav {
	width: 100%;
	padding: 20px 20px 30px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
}
nav ul {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	flex-wrap: wrap;
	row-gap: 10px;
}
nav li {
	border-left: 1px dotted #fff;
}
nav li:last-child {
	border-right: 1px dotted #fff;
}
nav a,
nav img {
	display: block;
}
nav a {
	padding: 10px 18px;
}
nav a:hover {
	opacity: .6;
}
#floatingNavi {
	transition: .4s ease-out .8s;
}
#floatingNavi.scrolling {
	transition-delay: 0s;
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
}
@media screen and (max-width: 1024px) {
	nav a {
		padding: 10px 10px;
	}
}
@media screen and (max-width:  960px) {
	nav {
		display: none;
	}
}

/* spNavi */
#spNavi {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 15;
}
@media screen and (max-width: 960px) {
	#spNavi {
		display: block;
	}
}
#spNavi dt {
	width: 60px;
	height: 60px;
	color: var(--color-blue);
	border: 1px solid var(--color-blue);
	position: absolute;
	top: 20px;
	right: 10px;
	z-index: 20;
	cursor: pointer;
}
#spNavi dt span,
#spNavi dt::before,
#spNavi dt::after {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
}
#spNavi dt span {
	font-size: 0;
	background-color: var(--color-blue);
	width: 32px;
	height: 2px;
	-webkit-transform: translate(-50%,calc(-50% + 10px));
	transform: translate(-50%,calc(-50% + 10px));
	transition: .4s;
}
#spNavi dt.close-button span {
	opacity: 0;
	transform: translate(100%,calc(-50% + 10px));
}
#spNavi dt::before,
#spNavi dt::after {
	content: "";
	background-color: var(--color-blue);
	width: 32px;
	height: 2px;
	transition: .4s;
}
#spNavi dt::before {
	-webkit-transform: translate(-50%,calc(-50% - 10px));
	transform: translate(-50%,calc(-50% - 10px));
}
#spNavi dt::after {
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
#spNavi dt.close-button::before,
#spNavi dt.close-button::after {
	background-color: #fff;
}
#spNavi dt.close-button::before {
	-webkit-transform: translate(-50%, -50%) rotate(135deg);
	transform: translate(-50%, -50%) rotate(135deg);
}
#spNavi dt.close-button::after {
	-webkit-transform: translate(-50%, -50%) rotate(-135deg);
	transform: translate(-50%, -50%) rotate(-135deg);
}
#spNavi dd {
	background-color: var(--color-blue);
	width: 100vw;
	padding: 60px 10px 20px;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 15;
	opacity: 0;
	transition: .5s;
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
}
#spNavi dd.open-menu {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}
#spNavi ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
#spNavi li {
	width: 50%;
	max-width: 174px;
	padding: 10px;
}
#spNavi a {
	display: block;
	width: 100%;
}
#spNavi img {
	display: block;
	width: auto;
}
#spNavi a {
	color: var(--color-red);
	text-align: center;
	line-height: 1.5;
	padding: 10px;
}

/*-------------------------
main
---------------------------*/
main {
	background-color: #fff;
	position: relative;
	z-index: 1;
}

/* title */
h2 img {
	display: block;
	width: 100%;
}
.title {
	padding: 40px 30px;
}
.title.c-wave {
	padding-bottom: 0;
	margin-bottom: 2.29vw;
}
@media (max-width: 767px) {
	.title.c-wave {
		padding-bottom: 20px;
	}
}

.title .title-box {
	max-width: 1040px;
	margin-inline: auto;
}
.title img {
	width: auto;
	max-width: 100%;
	margin: 0 auto;
}
.title .title-left {
	margin: 0 auto 0 0;
}
.title.gp {
	background: var(--color-blue) url(../img/grand_prix/title_bg.webp) center / cover no-repeat;
}

/* contents top */
#contentsTop {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.contentsTop-date {
	width: 100%;
	max-width: 780px;
	margin-left: auto;
}
#contentsTop img {
	display: block;
	width: 100%;
}
#contentsTop > div {
	width: calc(100% - 190px);
}
#contentsTop > figure {
	width: 190px;
	padding: 60px 0 0 40px;
}
#contentsTop dl {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-bottom: -20px;
}
#contentsTop dt {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: var(--color-blue);
	width: 60px;
	height: 1.75em;
	color: var(--color-yellow);
	font-weight: bold;
	margin-top: .3em;
	margin-bottom: 20px;
	border-radius: 5px;
}
#contentsTop dd {
	width: calc(100% - 60px);
	font-size: var(--text-l);
	font-weight: bold;
	line-height: 1.2;
	padding-left: 20px;
	margin-bottom: 20px;
}
#contentsTop dd span {
	display: inline-block;
	font-size: var(--text-m);
	font-weight: normal;
}
@media screen and (max-width: 640px) {
	#contentsTop > div {
		width: calc(100% - 140px);
	}
	#contentsTop > div > p {
		width: calc(100% + 140px);
		margin-top: 20px;
	}
	#contentsTop dt {
		margin-bottom: 10px;
	}
	#contentsTop dd {
		width: 100%;
		padding-left: 0;
	}
	#contentsTop > figure {
		display:-webkit-box;
		display:-ms-flexbox;
		display:flex;
		-webkit-box-align: end;
		-ms-flex-align: end;
		align-items: flex-end;
		width: 140px;
		padding: 0 0 0 20px;
	}
}
@media screen and (max-width: 375px) {
	#contentsTop dd:nth-child(2) {
		width: calc(100% + 100px);
		margin-right: -100px;
	}
}
#contentsTopImage {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 45px -5px -5px;
}
#contentsTopImage li {
	width: calc(100% / 3);
	padding: 5px;
}
#contentsTopImage img {
	display: block;
	width: 100%;
	position: relative;
}
@media screen and (max-width: 640px) {
	#contentsTopImage li {
		width: 50%;
	}
	#contentsTopImage li:last-child {
		width: 100%;
	}
}

/* IFGP */
.ifgp-img {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 20px;
}
.ifgp-img img {
	width: calc((100% - 20px) / 2);
}
.ifgp-img.col-1 img {
	width: calc((100% - 20px) / 1);
}
@media (max-width: 640px) {
	.ifgp-img img {
		width: 100%;
	}
}

/* entry */
#entry {
	overflow: hidden;
}
#entry > div {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	position: relative;
	gap: 120px;
}
#entry > div > section {
	position: relative;
}
#entry > div > section + section::before {
	display: block;
	content: "";
	width: 5px;
	height: 100%;
	border-left: 5px dotted var(--color-blue);
	position: absolute;
	top: 0;
	left: -60px;
}
#entry a,
#entry img {
	display: block;
	width: 100%;
}
#entry section {
	flex: 1;
}
@media screen and (max-width: 960px) {
	#entry > div {
		flex-direction: column;
		max-width: 600px;
		margin-inline: auto;
	}
	#entry section {
		width: 100%;
	}
	#entry > div > section + section::before {
		width: 100%;
		height: 5px;
		border-top: 5px dotted var(--color-blue);
		border-left: none;
		top: -60px;
		left: 0;
	}
}
.entry-date {
	background-color: var(--color-blue);
	color: #fff;
	font-size: var(--text-m);
	text-align: center;
	padding: 5px 20px;
}
.entry-date strong {
	font-size: var(--text-l);
}
#entry ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	margin: 5px -5px -5px;
}
#entry li {
	width: 50%;
	padding: 5px;
}
#entry a:hover {
	opacity: .6;
}

/* sns */
#snsAndLink a,
#link img {
	display: block;
	width: 100%;
}
#snsAndLink a:hover {
	opacity: .6;
}
#sns {
	max-width: 380px;
	padding: 0 20px;
	margin: 0 auto;
}
#sns ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	column-gap: 20px;
	margin: 60px 0;
}
#sns li {
	flex: 1;
}
#link {
	max-width: 920px;
	padding: 0 20px;
	margin: 0 auto;
}
#link ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0 -5px 85px;
}
#link li {
	width: calc(100% / 3);
	padding: 5px;
}
#link a {
	border: 1px solid #86774c;
	border-radius: 6px;
	overflow: hidden;
}
@media screen and (max-width: 640px) {
	#sns ul {
		margin: 60px 0;
	}
	#link li {
		width: 50%;
	}
}

/*-------------------------
footer
---------------------------*/
#footerInfo {
	padding: 90px 20px;
}
#footerInfo p {
	text-align: center;
	font-size: 2.14rem;
	font-weight: bold;
	margin-bottom: 30px;
}
#footerInfo img {
	display: block;
	width: 100%;
	max-width: 360px;
	margin: 0 auto;
}
#footerInfo ul {
	text-align: center;
}
#footerInfo li {
	display: inline-block;
	padding: 0 10px;
}
#footerInfo a {
	display: block;
	width: 100%;
	font-size: var(--text-m);
}
#footerInfo span {
	color: var(--color-blue);
}
@media (max-width: 640px) {
	#footerInfo p {
		font-size: 1.1rem;
	}
}

/* copy */
footer > p {
	background-color: var(--color-blue);
	color: #fff;
	text-align: center;
	padding: 5px 20px;
}

/* food */
.foodList {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}
@media (max-width: 960px) {
	.foodList {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}
@media (max-width: 767px) {
	.foodList {
		gap: 10px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
.foodList__item {
	--itemColor: var(--color-blue);
	background-color: #fff;
	border: 1px solid var(--itemColor);
	border-radius: 12px;
	padding: 10px 8px 40px 8px;
	transition: scale .2s ease-out;
}
.foodList__item.js-modal-open {
	cursor: pointer;
}
@media (any-hover: hover) {
	.foodList__item.js-modal-open:hover {
		scale: .95;
	}
}
.foodList__item--sweets {
	--itemColor: #ff4074;
}
.foodList__item--sweets .foodList__place {
	color: #fff;
	background-color: var(--itemColor);
}
.foodList__item--sweets .foodList__place::after {
	background-color: var(--itemColor);
}
.foodList__item.is-hidden {
	display: none;
}
.foodList__item--modal {
	width: 100%;
	max-width: 320px;
	max-height: 70vh;
	margin-inline: auto;
	overflow: auto;
}
.foodList__img {
	width: 100%;
	max-width: 300px;
	height: auto;
	border-radius: 4px 4px 0 0;
	margin-inline: auto;
	overflow: hidden;
}
.foodList__img img {
	display: block;
	width: 100%;
}
.foodList__detail {
	margin-top: -20px;
	position: relative;
	z-index: 1;
}
.foodList__place {
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-zenmaru);
	font-size: 18px;
	font-weight: bold;
	color: var(--itemColor);
	width: 100%;
	max-width: max-content;
	min-height: 40px;
	background-color: var(--color-yellow);
	border-radius: calc(1px * infinity);
	padding: 5px 30px;
	margin: 0 auto 30px;
	position: relative;
}
@media (max-width: 767px) {
	.foodList__place {
		font-size: 14px;
		letter-spacing: -.05em;
		padding-inline: 15px;
	}
}
.foodList__place::after {
	content: '';
	display: block;
	width: 12px;
	height: 10px;
	background-color: var(--color-yellow);
	clip-path: polygon(
		0 0,
		100% 0,
		50% 100%
	);
	position: absolute;
	inset: calc(100% - 1px) auto auto 50%;
	translate: -50% 0;
}
.foodList__detail dd {
	width: 100%;
	max-width: 260px;
	margin-inline: auto;
}
.foodList__shop {
	font-size: 14px;
	font-weight: 500;
	color: var(--itemColor);
	text-align: center;
}
.foodList__menu {
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	border-top: 1px dotted var(--itemColor);
	padding-top: 15px;
	margin-top: 15px;
}
@media (max-width: 767px) {
	.foodList__menu {
		font-size: 16px;
	}
}
@media (min-width: 751px) {
	.food__more {
		display: none;
	}
}
.food__more.is-btn-hidden{
	display:none;
}
.food__more button {
	display: block;
	font-size: 16px;
	font-weight: bold;
	color:#ffe400;
    background-color: var(--color-blue);
    border: none;
	outline: none;
    cursor: pointer;
	max-width: 240px;
	width: 100%;
	min-height: 60px;
	margin-inline: auto;
}
/* Modal Base */
.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100%;
	z-index: 100;
}
.modal-bg {
	position: absolute;
	height: 100vh;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 101;
}

/* Modal Content */
.modal-content {
	width: 100%;
	max-width: max-content;
	position: absolute;
	inset: 50% auto auto 50%;
	translate: -50% -50%;
	z-index: 102;
}
/* Close Button */
.btn_close {
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-zenmaru);
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	width: 100%;
	min-height: 60px;
	background-color: #b3b3b3;
	border-radius: 0 0 2px 2px;
	cursor: pointer;
}
/* sponsor */
.sponsor-list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
}

@media (max-width: 640px) {
	.sponsor-list.small {
		justify-content: flex-start;
	}
}

.sponsor-list + .sponsor-list {
	margin-top: 20px;
}

.sponsor-list > .item {
	width: calc((100% - 20px) / 2);
}

@media (max-width: 640px) {
	.sponsor-list > .item {
		width: 100%;
	}
}

.sponsor-list.small > .item {
	width: calc((100% - 40px) / 3);
}

@media (max-width: 640px) {
	.sponsor-list.small > .item {
		width: calc((100% - 20px) / 2);
	}
}

.sponsor-list > .item img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sponsor-list > .item a:hover {
	opacity: .6;
}

/* entry詳細 */
.entry-title {
	width: 100%;
	max-width: 380px;
	margin-inline: auto;
}

/* タイムテーブル */
ul.tab {
	display: flex;
	margin: 0;
	padding: 0;
}

.tab li {
	font-family: var(--font-zenmaru);
	color: #fff;
	background: #c3c3c3;
	border: 1px solid #c3c3c3;
	margin: 0;
	padding: 6px 20px;
	font-size: 16px;
	font-weight: 600;
	line-height:1;
	cursor: pointer;
	position: relative;
}

.tab li.select {
	color: var(--color-point);
	background:#fff;
	cursor: default;
}
.tab li.select::after {
	display: block;
	content: "";
	background-color: #fff;
	width: 100%;
	height: 3px;
	position: absolute;
	bottom: -2px;
	left: 0;
}

#timeTable {
	position: relative;
}

@media (min-width: 641px) {
	#timeTable .tab {
		display: none;
	}
}

.tab li.day01.select {
	color: #009ee1;
	border-color: #009ee1;
}

.tab li.day02.select {
	color: #da0000;
	border-color: #da0000;
}

ul.tcontent {
	margin: 0;
	padding:0;
}

@media (min-width: 641px) {
	ul.tcontent {
		display: flex;
		column-gap: 100px;
	}
	.tcontent li {
		width: calc((100% - 100px) / 2);
	}
	.tcontent li img {
		width: 100%;
	}
}

@media (max-width: 640px) {
	.tcontent li {
		border: 1px solid #006dc8;
		border-radius: 0 13px 13px 13px;
		padding: 100px 30px 60px;
		opacity: 0;
		display: none;
		margin: 0;
	}
	.tcontent li.day01 {
		border-color: #009ee1;
	}
	.tcontent li.day02 {
		border-color: #da0000;
	}
}

.tcontent li.select {
	opacity: 1;
	display: block;
}

.timg {
	width: 100%;
	max-width: 1000px;
	margin-inline: auto;
}

.timg img {
	display: block;
	width: 100%;
}

/* キッズエリア */
.otherEvent__inner {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}
@media (max-width: 767px) {
	.otherEvent__inner {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
}
.otherEvent__inner .box01 {
	height: max-content;
}
.otherEvent__inner img {
	display: block;
	width: 100%;
}
.otherEventSpace,
.otherEventList__item {
	border: 1px solid var(--color-blue);
	border-radius: 12px;
	padding: 10px 10px 40px 10px;
	overflow: hidden;
	transition: scale .2s ease-out;
}
@media (max-width: 767px) {
	.otherEventSpace,
	.otherEventList__item {
		padding-bottom: 20px;
	}
}
.otherEventSpace.js-modal-open,
.otherEventList__item.js-modal-open {
	cursor: pointer; 
}
@media (any-hover: hover) {
	.otherEventSpace.js-modal-open:hover,
	.otherEventList__item.js-modal-open:hover {
		scale: .95;
	}
}
.otherEventSpace--modal {
	max-height: 70vh;
	width: 100%;
	max-width: 660px;
	padding-bottom: 10px;
	margin-inline: auto;
	overflow: auto;
}
@media (max-width: 767px) {
	.otherEventSpace--modal {
		width: 80%;
	}
}
.otherEventList__item--modal {
	width: 100%;
	max-width: 320px;
	max-height: 70vh;
	padding-bottom: 10px;
	margin-inline: auto;
	overflow: auto;
}
.otherEventSpace__list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}
.otherEvent__time {
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-zenmaru);
	font-size: 18px;
	font-weight: bold;
	color: var(--color-blue);
	width: 100%;
	max-width: max-content;
	min-height: 38px;
	background-color: #fff;
	border: 1px solid var(--color-blue);
	border-radius: calc(1px * infinity);
	padding-inline: 30px;
	margin: -19px auto 25px;
	position: relative;
	z-index: 1;
}
@media (max-width: 767px) {
	.otherEvent__time {
		font-size: 16px;
	}
}
.otherEventSpace__box {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px 40px;
}
.otherEventSpace__name {
	font-size: 28px;
	font-weight: bold;
}
.otherEventPrice {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-blue);
}
.otherEventPrice--column {
	display: block;
}
.otherEventPrice__title {
	font-size: 14px;
	font-weight: 500;
}
.otherEventPrice__price {
	font-size: 18px;
	font-weight: 500;
}
.otherEventPrice__price small {
	font-size: 0.75em;
}
.otherEvent__close {
	background-color: var(--color-blue);
}
.otherEventList {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}
@media (max-width: 960px) {
	.otherEventList {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
}
@media (max-width: 767px) {
	.otherEventList {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
.otherEventList__img {
	border-radius: 4px 4px 0 0;
	overflow: hidden;
}
.otherEventList__title {
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 10px;
}
@media (max-width: 767px) {
	.otherEventList__title {
		font-size: 16px;
	}
}
.otherEventModalText {
	padding-top: 35px;
	margin-top: 35px;
	position: relative;
	z-index: 1;
}
.otherEventModalText::after {
	content: '';
	display: block;
	width: calc(100% + 20px);
	height: calc(100% + 10px);
	background-color: var(--color-yellow);
	position: absolute;
	inset: auto auto -10px 50%;
	translate: -50% 0;
	z-index: -1;
}
.otherEventModalText__text {
	width: 100%;
	max-width: 540px;
	margin-inline: auto;
}
.otherEventModalText__text--w260 {
	max-width: 260px;
}
/* 野球教室 */
@media (max-width: 640px) {
	.baseball__date {
		width: 100%;
		max-width: 330px;
		margin-inline: auto;
	}
}
.baseballDetail {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}
@media (max-width: 767px) {
	.baseballDetail {
		align-items: baseline;
	}
}
.baseballDetail--gap60 {
	column-gap: 60px;
}
@media (max-width: 767px) {
	.baseballDetail--spColumn {
		flex-direction: column;
	}
}
.baseballDetail__title {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	color: var(--color-yellow);
	font-weight: bold;
	letter-spacing: -.05em;
	width: 60px;
	height: 23px;
	background-color: var(--color-blue);
	border-radius: 5px;
}
.baseballDetail__text {
	width: calc(100% - 80px);
}
@media (max-width: 750px) {
	.baseballDetail__text .remove {
		display: none;
	}
}
.baseballDetail__box {
	display: flex;
	align-items: center;
	gap: 20px;
}
.baseballGuest {
	display: flex;
	justify-content: center;
	gap: 40px 20px;
}
.baseballGuest__item {
	width: 100%;
	max-width: 320px;
}
.baseballGuest__text {
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-zenmaru);
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	width: 100%;
	max-width: max-content;
	min-height: 40px;
	background-color: var(--color-blue);
	border-radius: calc(1px * infinity);
	padding: 5px 30px;
	margin: 0 auto 20px;
	position: relative;
}
@media (max-width: 767px) {
	.baseballGuest__text {
		font-size: 14px;
		padding-inline: 15px;
	}
}
.baseballGuest__text::after {
	content: '';
	display: block;
	width: 12px;
	height: 10px;
	background-color: var(--color-blue);
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	position: absolute;
	inset: calc(100% - 1px) auto auto 50%;
	translate: -50% 0;
}
.baseballGuest__box {
	background-color: #fff;
	border-radius: 12px;
	padding: 10px 10px 45px 10px;
}
.baseballGuest__box > *:not(.baseballGuest__img) {
	width: 100%;
	max-width: 260px;
	margin-inline: auto;
}
.baseballGuest__img {
	width: 100%;
	max-width: 300px;
	border-radius: 4px 4px 0 0;
	margin-inline: auto;
	overflow: hidden;
}
.baseballGuest__img img {
	display: block;
	width: 100%;
}
@media (max-width: 767px) {
	.baseballGuest__team {
		display: flex;
		align-items: center;
		justify-content: center;
		letter-spacing: -.05em;
		min-height: 2lh;
	}
}
.baseballGuest__name {
	font-size: 30px;
	border-top: 1px dotted var(--color-blue);
	padding-top: 15px;
	margin-top: 10px;
}
@media (max-width: 767px) {
	.baseballGuest__name {
		font-size: 18px;
	}
}
.baseballGuest__name span {
	font-size: .66em;
}
.baseball__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	row-gap: 5px;
	font-family: var(--font-zenmaru);
	font-size: clamp(1.25rem, 0.341rem + 1.9vw, 2rem);
	color: #fff;
	font-weight: bold;
	text-align: center;
	line-height: 1.4;
	width: 100%;
	min-height: 100px;
	background-color: #ff4074;
	border: 1px solid #ff4074;
	border-radius: calc(1px * infinity);
	padding: 5px 80px;
	position: relative;
}
.baseball__btn::before {
	content: '';
	display: block;
	width: 40px;
	aspect-ratio: 1;
	background: url(../img/baseball/baseball_icon01.svg) center / contain no-repeat;
	position: absolute;
	inset: 50% auto auto 30px;
	translate: 0 -50%;
}
@media (any-hover: hover) {
	.baseball__btn:hover {
		color: #ff4074;
		background-color: #fff;
	}
}
.baseball__btn span {
	font-family: var(--font-default);
	font-size: .56em;
	font-weight: 500;
}
.baseballSupported {
	width: 100%;
	max-width: 306px;
	margin-inline: auto;
	position: relative;
}
@media (max-width: 767px) {
	.baseballSupported  {
		max-width: 250px;
	}
}
.baseballSupported__text {
	display: block;
	width: 100%;
	max-width: max-content;
	position: absolute;
	inset: 0 100% auto auto;
}
@media (max-width: 767px) {
	.baseballSupported__text {
		margin-bottom: 5px;
		position: relative;
		inset: auto;
	}
}
/* 当日のプログラムボタン */
.program-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	height: 70px;
	max-width: 350px;
	width: 100%;
	background-color: var(--color-red);
	border: 2px solid #232323;
	padding-right: 25px;
	opacity: 0;
	position: fixed;
	right: 15px;
	bottom: 15px;
	z-index: 100;
}

.program-btn.is-active {
	opacity: 1;
}

.program-btn::after {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	background: url(../img/icon_link.svg) center / contain no-repeat;
	position: absolute;
	right: 40px;
}

@media screen and (max-width: 640px) {
	.program-btn {
		font-size: 16px;
		max-width: 250px;
		padding-right: 20px;
		right: 0;
		bottom: 0;
		height: 60px;
	}

	.program-btn::after {
		width: 15px;
		height: 15px;
		right: 15px;
	}
}

/* GRAND PROX */
.grandPrix-list-01 {
	display: flex;
	flex-wrap: wrap;
	gap: 40px 80px;
	padding-bottom: 70px;
	position: relative;
}
@media screen and (max-width: 640px) {
	.grandPrix-list-01 {
		gap: 40px 20px;
		padding-bottom: 40px;
	}	
}
.grandPrix-list-01::after {
	content: '';
	display: block;
	width: 100%;
	height: 2px;
	background: linear-gradient(to right,var(--color-blue) 2px, transparent 2px) center / 4px 4px repeat-x;
	position: absolute;
	inset: auto auto 0 0;
}
.grandPrix-list-01 > li {
	width: calc((100% - 80px) / 2);
}

@media screen and (max-width: 640px) {
	.grandPrix-list-01 > li {
		width: 100%;
	}
}

.grandPrix-list-01 > li img {
	width: 100%;
}

.grandPrix-list-01 > li p {
	--color: var(--color-red);
	font-size: 18px;
	font-weight: 500;
	color: var(--color);
	text-align: center;
	padding-inline: 30px;
	margin-top: 20px;
	position: relative;
}
.grandPrix-list-01 > li p.blue {
	--color: #1e5aa0;
}

.grandPrix-list-01 > li p span {
	display: block;
	font-size: 22px;
	font-weight: bold;
	color: #232323;
	border-top: 2px dotted var(--color);
	padding-top: 15px;
	margin-top: 15px;
}

@media screen and (max-width: 640px) {
	.grandPrix-list-01 > li p span {
		font-size: 20px;
	}
}

.grandPrix-tit-01 {
	font-size: 26px;
	font-weight: bold;
	color: var(--color-blue);
	text-align: center;
	margin: 80px 0 50px;
}

@media screen and (max-width: 640px) {
	.grandPrix-tit-01 {
		font-size: 22px;
		margin-top: 40px;
	}
}
.grandPrix-tit-02 {
	font-size: 20px;
	font-weight: bold;
	color: var(--color-blue);
	text-align: center;
	margin-bottom: 10px;
}
.grandPrix-tit-02.pink {
	color: #ff4074;
}

.grandPrix-text-01 {
	border: 1px solid var(--color-blue);
	text-align: center;
	padding: 20px 15px;
	margin-top: 40px;
}

.grandPrix-box-01 {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 80px;
	margin-top: 30px;
}

.grandPrix-box-01 > * {
	width: calc((100% - 80px) / 2);
}

@media screen and (max-width: 640px) {
	.grandPrix-box-01 > * {
		width: 100%;
	}
}

.grandPrix-list-02 > li {
	position: relative;
	padding-left: 1.2em;
}


.grandPrix-list-02 > li + li {
	margin-top: 5px;
}

.grandPrix-list-02 > li::before {
	content: '\25CF\a0';
	color: var(--color-blue);
	position: absolute;
	left: 0;
	top: 0;
}
.grandPrix-list-02.pink > li::before {
	color: #ff4074;
}

.yt_wrap{
	text-align: center; margin-top: 1rem
}
.yt_wrap iframe{
	width: 468px;
	height: 832px;
}
@media screen and (max-width: 640px) {
	.yt_wrap iframe{
		width: 100%;
		height: 150vw;
	}

}