@charset "utf-8";

/*-------------------------
PC/SP display switch
---------------------------*/
/* PCのみ表示 */
.pc-only {
	display: block;
}
/* SPのみ表示 */
.sp-only {
	display: none;
}
@media screen and (max-width: 667px) {
	.pc-only {
		display: none !important;
	}
	.sp-only {
		display: block !important;
	}
}

/* Coming soon */
.coming-soon {
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-size: 24px !important;
}

/*-------------------------
header
---------------------------*/
header {
	background: url("../img/header/img_keyvisual.webp") no-repeat center bottom;
	background-size: cover;
	width: 100vw;
	height: 100vh;
	position: relative;
	top: 0;
	z-index: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
header img {
	display: block;
	width: 100%;
}
.header-title {
	width: 45vw;
	max-width: 550px;
	margin: 0 auto 12vw;
}
.header-title img {
	width: 100%;
	height: auto;
}
@media screen and (max-width: 667px) {
	header {
		background-size: auto 150%;
	}
	.header-title {
		width: 85%;
		max-width: 480px;
	}
}

/* ハンバーガーボタン */
.hamburger-btn {
	position: fixed;
	top: 20px;
	right: 20px;
	width: 50px;
	height: 50px;
	background-color: transparent;
	border: none;
	border-radius: 0;
	cursor: pointer;
	z-index: 100;
	padding: 12px 10px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.hamburger-btn span {
	display: block;
	width: 100%;
	height: 3px;
	background-color: #fff;
	transition: all 0.3s ease;
}
.hamburger-btn.is-scrolled span {
	background-color: var(--color-red);
}
/* メニューオープン時もハンバーガーボタンを表示 */
.hamburger-btn.is-active span {
	background-color: #fff;
}

/* 閉じるボタン（メニュー内右下に配置） */
.menu-close-btn {
	position: absolute;
	bottom: 15px;
	right: 15px;
	width: 30px;
	height: 30px;
	background-color: transparent;
	border: none;
	cursor: pointer;
	z-index: 101;
	opacity: 1;
	visibility: visible;
}
.menu-close-btn span {
	display: block;
	width: 20px;
	height: 2px;
	background-color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
}
.menu-close-btn span:nth-child(1) {
	transform: translate(-50%, -50%) rotate(45deg);
}
.menu-close-btn span:nth-child(2) {
	transform: translate(-50%, -50%) rotate(-45deg);
}

/* 右スライドメニュー */
.slide-menu {
	position: fixed;
	top: 83px;
	right: 0;
	width: 260px;
	max-width: 80vw;
	max-height: 660px;
	background-color: var(--color-red);
	z-index: 99;
	transform: translateX(100%);
	transition: transform 0.4s ease;
	overflow-y: auto;
	border-radius: 20px 0 0 20px;
}
.slide-menu.is-open {
	transform: translateX(0);
}
.slide-menu__nav {
	padding: 20px 40px 60px;
	position: relative;
}
.slide-menu__nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.slide-menu__nav li {
	border-bottom: none;
	position: relative;
}
.slide-menu__nav li::after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background-image: radial-gradient(circle, rgba(255, 255, 255, 0.6) 1px, transparent 1px);
	background-size: 4px 1px;
	background-repeat: repeat-x;
}
.slide-menu__nav li:last-child::after {
	display: none;
}
.slide-menu__nav a {
	display: block;
	padding: 15px 0;
	color: #fff;
	text-decoration: none;
	transition: background-color 0.3s ease;
}
.slide-menu__nav a:hover {
	background-color: rgba(255, 255, 255, 0.1);
}
.slide-menu__nav img {
	display: block;
	max-height: 35px;
	width: auto;
}
.menu-overlay {
	display: none;
}
@media screen and (max-width: 667px) {
	.hamburger-btn {
		top: 15px;
		right: 15px;
		width: 45px;
		height: 45px;
	}
	.slide-menu {
		width: 280px;
	}
}
/* メニューオープン時のスクロール防止 */
body.menu-open {
	overflow: hidden;
}

/*-------------------------
Navi
---------------------------*/
/* pcNavi - PC表示でもハンバーガーメニューを使うため非表示 */
nav#floatingNavi {
	display: none;
}

/* spNavi - 新しいスライドメニューを使用するため非表示 */
#spNavi {
	display: none !important;
}
#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: 20px 30px;
	margin:0 auto;
	background-color: var(--color-red);
	border-radius: 70px;
}
.title img{
	max-height:58px;
}
.title-back-large{
	max-width:880px;
	/* margin-bottom:67px; */
	margin-left: auto;
	margin-right: auto;
}
@media (max-width: 640px) {
	.title-back-large {
		margin-left: 20px;
		margin-right: 20px;
	}
}
.title-back-middle{
	max-width:720px;
}
/* タイトル + 波模様 */
.title-wave-wrapper {
	position: relative;
	text-align: center;
	margin-bottom: 0;
}
.title-wave-wrapper .title {
	margin-bottom: 0;
}
.title-wave {
	display: block;
	width: 100%;
	margin-top: -1px;
}
.title-back-short{
	/* max-width:460px; */
	margin-bottom:40px;
}
.title.c-wave {
	padding-bottom: 0;
	margin-bottom: 2.29vw;
}
@media (max-width: 767px) {
	.title.c-wave {
		padding-bottom: 20px;
	}
}
@media (max-width: 640px) {
	.title-wave-wrapper {
		padding-right: 20px;
		padding-left: 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-section {
	padding: 40px 20px;
}
.contentsTop-inner {
	width: 100%;
}
.contentsTop-badge {
	display: inline-block;
	margin-bottom: 20px;
}
.contentsTop-badge img {
	display: block;
	max-width: 100%;
	height: auto;
}
.contentsTop-date-large {
	margin-bottom: 30px;
}
.contentsTop-date-large img {
	display: block;
	max-width: 100%;
	height: auto;
}
.contentsTop-bottom {
	display: flex;
	align-items: flex-end;
	gap: 30px;
}
.contentsTop-details {
	display: flex;
	flex-direction: column;
	gap: 15px;
	/* flex: 1; */
}
.contentsTop-details-row {
	display: flex;
	align-items: flex-start;
	gap: 20px;
}
.contentsTop-details dt {
	background-color: var(--color-black);
	color: var(--color-white);
	font-weight: bold;
	padding: 5px 15px;
	border-radius: 5px;
	white-space: nowrap;
	min-width: 80px;
	text-align: center;
}
.contentsTop-details dd {
	font-size: var(--text-l);
	font-weight: bold;
	line-height: 1.6;
}
.contentsTop-details dd span {
	display: inline;
	font-size: var(--text-m);
	font-weight: normal;
	margin-left: 5px;
	white-space: nowrap;
}
.contentsTop-character {
	width: 150px;
	flex-shrink: 0;
}
.contentsTop-character img {
	display: block;
	/* width: 100%; */
}
@media screen and (max-width: 768px) {
	.contentsTop-section {
		padding: 20px 10px;
	}
	.contentsTop-bottom {
		flex-direction: column;
		align-items: flex-start;
		position: relative;
	}
	.contentsTop-details-row {
		flex-direction: column;
		gap: 10px;
		margin-bottom: 50px;
		align-items: center;
	}
	.contentsTop-details-row:nth-child(2){
		margin-bottom: 0;
	}
	.contentsTop-character {
		width: 50%;
		margin: 0 auto;
		/* background: #ff0000aa; */
		position: absolute;
		left: -30px;
		top: 50%;
	}
	.contentsTop-details{
		display: block;
		width: 100%;
	}
	.contentsTop-character img{
		width: 80%;
	    margin: auto;
	}
	.contentsTop-details dd{
		text-align: center;
	}
}


/* contents top images - 4枚横並び */
#contentsTopImage {
	display: flex;
	flex-wrap: nowrap;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
	gap: 0;
}
#contentsTopImage li {
	flex: 1 1 25%;
	width: 25%;
	padding: 0;
	margin: 0;
}
#contentsTopImage figure {
	margin: 0;
	padding: 0;
	line-height: 0;
}
#contentsTopImage img {
	display: block;
	width: 100%;
	height: auto;
}
@media screen and (max-width: 640px) {
	#contentsTopImage {
		flex-wrap: wrap;
	}
	#contentsTopImage li {
		flex: 1 1 50%;
		width: 50%;
	}
}

/* IFGP */
.ifgp-subtitle {
	text-align: center;
	margin-bottom: 20px;
}
.ifgp-subtitle img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
}
.ifgp-wave {
	display: block;
	max-width: 100%;
	margin: 0 auto 20px;
}
.ifgp-img {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 20px;
	justify-content: center;
}
.ifgp-img img {
	width: calc((100% - 20px) / 2);
	border-radius: 6px;
}
.ifgp-img.col-1 img {
	width: calc((100% - 20px) / 1);
}
@media (max-width: 640px) {
	.ifgp-img img {
		width: 100%;
	}
}

/* sweets */
#sweets {
	/* padding-bottom: 60px; */
	background-image: url(../img/bg-border.webp);
	background-repeat: no-repeat;
	background-size: cover;
}
.sweets-top {
	padding-top: 80px;
}
.sweets-top .box-horizontal{
	padding-bottom:0;
}
.sweets-title {
	background-color: #e5446d;
	
	border-radius: 50px;
	margin: 0 auto 50px;
	max-width: 720px;
}
.sweets-title img {
	display: block;
	max-width: 100%;
	height: auto;
}
.sweets-text {
	font-size: var(--text-m);
	line-height: 1.8;
	text-align: justify;
	margin-bottom: 40px;
}
.sweets-images {
	display: flex;
	justify-content: center;
	gap: 20px;
	list-style: none;
	padding: 0 20px;
	margin: 0 auto 60px;
	align-items: flex-start;
}
.sweets-images li {
	width: calc((100% - 60px) / 4);
	max-width: 180px;
}
.sweets-images li:nth-child(2),
.sweets-images li:nth-child(4) {
	margin-top: 70px;
}
.sweets-images img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 50%;
	aspect-ratio: 1;
	object-fit: cover;
}
@media (max-width: 768px) {
	.sweets-images {
		flex-wrap: wrap;
		gap: 15px;
	}
	.sweets-images li {
		width: calc((100% - 15px) / 2);
		max-width: none;
	}
	.sweets-images li:nth-child(3){
		margin-top: -10vw;
	}
	.sweets-images li:nth-child(4){
		margin-top: 10vw;
	}
}
.sweets-bottom {
	background-color: #fff;
	padding: 40px 20px;
}
.sweets-notes {
	font-size: var(--text-s);
	line-height: 1.6;
	text-align: justify;
	max-width: 1040px;
	margin: 0 auto 15px;
}
.sweets-notes:last-child {
	margin-bottom: 0;
}
@media (max-width: 640px) {
	#sweets {
		/* padding-bottom: 40px; */
	}
	.sweets-top {
		padding-top: 0px;
	}
	.sweets-title {
		font-size: 18px;
		padding: 15px 50px;
		margin-bottom: 20px;
	}
	.sweets-text {
		margin-bottom: 30px;
	}
	.sweets-images {
		margin-bottom: 40px;
	}
	.sweets-bottom {
		padding: 30px 15px;
	}
	.sweets-top .box-horizontal{
		padding-top:120px;
	}
}

/* entry */
.entry-wrapper {
	background-image: url(../img/bg-border.webp);
	background-repeat: no-repeat;
	background-size: cover;
	padding-bottom:80px;
}
#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: 2px dotted var(--color-red);
	position: absolute;
	top: 0;
	left: -60px;
}
#entry a,
#entry img {
	display: block;
	width: 100%;
}
#entry figure img{
	border-radius:6px;
}
#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-white);
	/* color: #fff; */
	font-size: var(--text-m);
	text-align: center;
	padding: 5px 20px;
	border:solid 1px var(--color-red);
	border-radius: 30px;
}
.entry-date--blue {
	border-color: var(--color-blue);
}
.entry-date strong {
	font-size: var(--text-l);
	font-weight: unset;
}
#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;
}
@media screen and (max-width: 667px) {
	#entry ul {
		flex-wrap: wrap;
	}
	#entry li {
		width: 100%;
	}
}
#entry ul.single-btn li {
	width: 100%;
}
#entry ul.single-btn img {
	/* height: 50px; */
}
#entry li.btn-coming-soon {
	position: relative;
}
#entry li.btn-coming-soon a {
	pointer-events: none;
	position: relative;
}
#entry li.btn-coming-soon a::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgb(184 184 184);
	z-index: 1;
	border-radius: 6px;
}
#entry li.btn-coming-soon .coming-soon-label {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 0.05em;
	z-index: 2;
	white-space: nowrap;
}

/* 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
---------------------------*/
#food{
	padding-top:186px;
	position: relative;
}
#food::before {
	content: "";
	position: absolute;
	top: -48px;
	left: 0;
	width: 100%;
	height: 78px;
	background-image: url(../img/wave-white02.svg);
	background-repeat: repeat-x;
	background-size: cover;
	background-position: center top;
	z-index: 1;
}
#footerInfo {
	padding: 90px 20px;
}
#footerInfo .title {
	margin-bottom: 50px;
}
#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-red);
}
#footerInfo li.mail-item {
	display: inline-flex;
	align-items: center;
}
#footerInfo li.mail-item img {
	display: inline-block;
	width: auto;
	max-width: none;
	height: 1.2em;
	margin: 0;
}
@media (max-width: 640px) {
	#footerInfo .title {
		margin-bottom: 50px;
	}
	#footerInfo p {
		font-size: 1.1rem;
	}
	#footerInfo ul {
		padding: 0 20px;
	}
	#footerInfo li {
		display: block;
		padding: 5px 0;
	}
	#footerInfo li.mail-item {
		display: block;
	}
	#footerInfo li.mail-item img {
		max-width: calc(100% - 50px);
		height: 1em;
	}
}

/* copy */
footer > p {
	background-color: var(--color-red);
	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;
}
.entry-title2{
	background-color: var(--color-blue);
}

/* タイムテーブル */
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;
	}

}

.ifgp-top{
	padding-top:117px;
}
.ifgp-top section {
	position: relative;
	padding-bottom: 80px;
}
.ifgp-top section::after {
	content: "";
	position: absolute;
	bottom: -97px;
	left: 0;
	width: 100%;
	height: 98px;
	background-image: url(../img/wave-white.svg);
	background-repeat: repeat-x;
	background-size: cover;
	background-position: center top;
	z-index: 1;
}

  

@media screen and (max-width: 667px) {
	.header-title {
    /* width: 45vw; */
    max-width: 550px;
    margin: 0 auto 50vw;
}
.ifgp-top section::after {
    content: "";
    position: absolute;
    bottom: -97px;
    left: 0;
    width: 100%;
    height: 98px;
    background-image: url(../img/wave-white.svg);
    background-repeat: repeat-x;
    background-size: 900px;
    background-position: center top;
    z-index: 1;
}
#food::before {
	content: "";
	position: absolute;
	top: -32px;
	left: 0;
	width: 100%;
	height: 98px;
	background-image: url(../img/wave-white02.svg);
	background-repeat: repeat-x;
    background-size: 900px;
	background-position: center top;
	z-index: 1;
}
#food{
	padding-top: 70px;
}
.ifgp-top section {
    position: relative;
    padding-bottom: 20px;
}
.ifgp-top {
    padding-top: 70px;
}
}