@charset "UTF-8";

/* ----------------------------------------------------
	lead
---------------------------------------------------- */
.lead {
	margin: 0 auto 180px;
	padding: 0 50px;
	width: 1020px;
}
.lead .box-lyt-title{
	display: none
}

.lead .date {
	max-width: 300px;
	width: 100%;
	margin: 0 auto .5em;
	font-size: 1.2em;
	color: white;
	background-color: black;
	text-align: center;
}
.lead__text {
	margin-bottom: 70px;
	line-height: 2.3;
	font-size: 22px;
	text-align: center;
}

@media screen and (max-width: 1000px) {
	.lead {
		margin-bottom: 18vw;
		padding: 0 5vw;
		width: 100%;
	}

	.lead__text {
		margin-bottom: 5.469vw;
		/* font-size: 1.719vw; */
	}
}

@media screen and (max-width: 768px) {
	.lead {
		margin: 0 auto 19.2vw;
		padding: 0 4.8vw;
		width: 100%;
	}
	.lead .box-lyt-title{
		display: block;
		width: 94%;
		margin-bottom: 2.5em;
	}
	.lead .box-lyt-title div + div{
		margin-top: .4em;
	}
	
	.lead .date {
		max-width: none;
		width: calc(15em + 3.267vw);
		font-size: 3.267vw;
		margin: 0 0 .5em;
	}
	.lead__text {
		margin-bottom: 13.333vw;
		line-height: 1.9;
		font-size: 4.267vw;
		text-align: left;
	}
}

/* ----------------------------------------------------
	restaurant
---------------------------------------------------- */
.restaurant {
	margin: 0 auto 180px;
	padding: 0 50px;
	width: 1085px;
	display: flex;
}

.restaurant__title {
	margin-right: 60px;
	width: 229px;
	position: relative;
}

.restaurant__title::before {
	background: rgb(var(--blk));
	width: 1px;
	height: 305px;
	position: absolute;
	top: 0;
	left: 0;
	content: "";
}

.restaurant__content--title {
	margin-bottom: 16px;
}

.restaurant__content--title span {
	width: 102px;
	height: 34px;
	font-size: 22px;
	border: solid 1px rgb(var(--blk));
	display: inline-flex;
	justify-content: center;
	align-items: center;
}

.restaurant__content--text {
	margin-bottom: 30px;
}

.restaurant__content--text .table__th,
.restaurant__content--text .table__td {
	font-size: 16px;
}

.restaurant__content--text .table__th {
	padding-right: 8px;
	width: 120px;
}

.restaurant__content--text .table__td.child {
	padding-left: 120px;
}

@media screen and (max-width: 1000px) {
	.restaurant {
		margin: 0 auto 18vw;
		padding: 0 5vw;
		width: 100%;
		text-align: center;
		display: block;
	}

	.restaurant__title {
		margin: 0 0 6vw;
		width: 22.9vw;
	}

	.restaurant__title::before {
		height: 100%;
	}

	.restaurant__content {
		margin: 0 auto;
		width: auto;
		text-align: left;
		display: inline-block;
	}
}

@media screen and (max-width: 768px) {
	.restaurant {
		margin-bottom: 21.333vw;
		padding: 0 4.8vw;
	}

	.restaurant__title {
		margin: 0 0 9.333vw;
		width: 34.667vw;
	}

	.restaurant__content--title {
		margin-bottom: 4.267vw;
	}

	.restaurant__content--title span {
		width: 23.2vw;
		height: 10.4vw;
		font-size: 4.8vw;
	}

	.restaurant__content--text {
		margin-bottom: 12vw;
	}

	.restaurant__content--text .table,
	.restaurant__content--text .table tr,
	.restaurant__content--text .table__th,
	.restaurant__content--text .table__td {
		font-size: 3.733vw;
		display: block;
	}

	.restaurant__content--text .table__th {
		padding-right: 0;
		width: 100%;
	}

	.restaurant__content--text .table__td.open {
		margin-bottom: 1.6vw;
	}

	.restaurant__content--text .table__td.child {
		padding-left: 0;
	}

	.restaurant__content--text .table .spFlex {
		display: flex;
	}

	.restaurant__content--text .table .spNone {
		display: none;
	}
}

/* ----------------------------------------------------
	event
---------------------------------------------------- */
.event {
	background: url(../img/eventMap.webp) right 50px top 16px no-repeat;
	background-size: 82.95% auto;
	margin: 0 auto 180px;
	padding: 0 50px;
	width: 1085px;
	height: 735px;
	position: relative;
}

.event__title {
	margin-right: 60px;
	width: 164px;
	position: relative;
}

.event__title::before {
	background: rgb(var(--blk));
	width: 1px;
	height: 305px;
	position: absolute;
	top: 0;
	left: 0;
	content: "";
}

.event__nav {
	width: 985px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}

.event__nav--list {
	width: 100%;
	height: 100%;
	position: relative;
}

.event__nav--item {
	width: 265px;
	height: 95px;
	border: solid 1px rgb(var(--blk));
	border-radius: 95px;
	position: absolute;
}

.event__nav--item a {
	background: rgb(var(--wht));
	padding-left: 45px;
	width: 100%;
	height: 100%;
	line-height: 1.25;
	color: rgb(var(--blk));
	text-decoration: none;
	border-radius: 95px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
}

.event__nav--item a .arrow {
	width: 22px;
	fill: none;
	stroke: #000;
	stroke-miterlimit: 10;
	position: absolute;
	top: 50%;
	right: 30px;
	transform: translateY(-50%);
}

.event__nav--item a .navDate {
	font-size: 20px;
	display: flex;
	align-items: center;
}

.event__nav--item a .navDate .navDate__arrow {
	margin: 0 4px;
	width: 20px;
	height: auto;
	fill: none;
	stroke: #000;
	stroke-miterlimit: 10;
}

.event__nav--item a .navText {
	font-size: 35px;
	display: flex;
	align-items: baseline;
}

.event__nav--item a .navText small {
	font-size: 23px;
}

.event__nav--item.nav01 {
	bottom: 0;
	left: 335px;
}

.event__nav--item.nav02 {
	top: 0;
	right: 175px;
}

.event__nav--item.nav03 {
	top: 190px;
	left: 80px;
}

.event__nav--item.nav04 {
	top: 478px;
	right: 20px;
}

@media screen and (max-width: 1085px) {
	.event {
		margin-bottom: 16.59vw;
		padding: 0 4.608vw;
		width: 100vw;
		height: 67.742vw;
	}

	.event__title {
		margin-right: 5.53vw;
		width: 15.115vw;
	}

	.event__title::before {
		height: 28.111vw;
	}

	.event__nav {
		width: 90.783vw;
	}

	.event__nav--item {
		width: 24.424vw;
		height: 8.756vw;
		border-radius: 8.756vw;
	}

	.event__nav--item a {
		padding-left: 4.147vw;
		border-radius: 8.756vw;
	}

	.event__nav--item a .arrow {
		width: 2.028vw;
		right: 2.765vw;
	}

	.event__nav--item a .navDate {
		font-size: 1.843vw;
	}

	.event__nav--item a .navDate .navDate__arrow {
		margin: 0 0.369vw;
		width: 1.843vw;
	}

	.event__nav--item a .navText {
		font-size: 3.226vw;
	}

	.event__nav--item a .navText small {
		font-size: 2.12vw;
	}

	.event__nav--item.nav01 {
		left: 30.876vw;
	}

	.event__nav--item.nav02 {
		right: 16.129vw;
	}

	.event__nav--item.nav03 {
		top: 17.512vw;
		left: 7.373vw;
	}

	.event__nav--item.nav04 {
		top: 44.055vw;
		right: 1.843vw;
	}
}

@media screen and (max-width: 768px) {
	.event {
		background: url(../img/eventMap_sp.webp) center top 22.4vw no-repeat;
		background-size: 96% auto;
		margin: 0;
		padding: 0 4.8vw;
		width: 100%;
		height: 165.333vw;
	}

	.event__title {
		margin-right: 0;
		width: 24vw;
	}

	.event__title::before {
		height: 100%;
	}

	.event__nav {
		width: calc(100% - 14.4vw);
		height: auto;
		position: absolute;
		top: auto;
		bottom: 15.467vw;
		left: 50%;
		transform: translateX(-50%);
	}

	.event__nav--list {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.event__nav--item {
		margin-bottom: 7.2vw;
		width: 40.8vw;
		height: 16.8vw;
		border-radius: 16.8vw;
		position: static;
	}

	.event__nav--item a {
		background: none;
		padding-left: 5.867vw;
		border-radius: 16.8vw;
	}

	.event__nav--item a .arrow {
		width: 3.2vw;
		right: 4vw;
	}

	.event__nav--item a .navDate {
		font-size: 4vw;
		letter-spacing: -0.005em;
	}

	.event__nav--item a .navDate .navDate__arrow {
		margin: 0 1.067vw;
		width: 4vw;
	}

	.event__nav--item a .navText {
		font-size: 5.6vw;
	}

	.event__nav--item a .navText small {
		font-size: 4vw;
	}

	.event__nav--item a::before {
		width: 100%;
		height: 100%;
		border-radius: 16.8vw;
		position: absolute;
		top: 0.8vw;
		left: 0.8vw;
		z-index: -1;
		content: "";
	}

	.event__nav--item.nav01 a::before {
		background: rgb(var(--orn));
	}

	.event__nav--item.nav02 a::before {
		background: rgb(var(--yel));
	}

	.event__nav--item.nav03 a::before {
		background: rgb(var(--blu));
	}

	.event__nav--item.nav04 a::before {
		background: rgb(var(--grn));
	}
}

/* ----------------------------------------------------
	area
---------------------------------------------------- */
.area {
	background: rgb(var(--beg));
}

.area__section {
	padding: 125px 0;
	position: relative;
}

.area__section::before,
.area__section::after {
	position: absolute;
	content: "";
}

.area__section::before {
	background-position: left top;
	background-repeat: no-repeat;
	background-size: 2.5vw auto;
	width: 2.8vw;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}

.area__section::after {
	background: rgb(var(--blk));
	width: 90vw;
	height: 1px;
	bottom: 0;
	left: 50%;
	z-index: 1;
	transform: translateX(-50%);
}

.area__title {
	margin-bottom: 1.563vw;
	font-size: 3.906vw;
	text-align: center;
	position: relative;
}

.area__title::before {
	width: 6.094vw;
	height: 1px;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	content: "";
}

.area__date {
	margin-bottom: 3.125vw;
	font-size: 2.344vw;
	display: flex;
	justify-content: center;
	align-items: center;
}

.area__date svg {
	margin: 0 0.625vw;
	width: 1.094vw;
	height: auto;
	fill: none;
	stroke-miterlimit: 10;
	stroke-width: 2px;
}

.area__section--inner {
	margin: 0 auto;
	width: 90vw;
}

.area .content {
	display: flex;
}

.area .content__image {
	width: 56.385vw;
	position: relative;
	right: -5vw;
}

.area .content__detail {
	padding-left: 4.609vw;
	width: calc(100% - 56.385vw);
}

.content__detail--inner:not(:last-of-type) {
	margin-bottom: 3.281vw;
}

.content__detail--title {
	margin-bottom: 1.953vw;
}

.content__detail--title span {
	width: 7.969vw;
	height: 2.656vw;
	font-size: 1.719vw;
	border: solid 1px rgb(var(--blk));
	display: inline-flex;
	justify-content: center;
	align-items: center;
}

.content__detail--text {
	font-size: 1.25vw;
}

.content__detail--text .recommend {
	display: flex;
	align-items: flex-start;
}

.content__detail--text .recommend::before {
	background: rgb(var(--blk));
	margin: 0.5vw 0.625vw 0 0;
	width: 4.688vw;
	height: 1.25vw;
	color: rgb(var(--wht));
	font-size: 0.938vw;
	border-radius: 1.25vw;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	content: "おすすめ";
}

.content__detail--text:not(:last-of-type) {
	margin-bottom: 3.906vw;
}

.content__detail--text .list__item {
	display: flex;
	align-items: center;
}

.content__detail--text .list__item::before {
	margin-right: 0.25em;
	font-size: 0.5em;
	content: "●";
}

/* area01 */
.area01.area__section::before {
	background-color: rgb(var(--brn));
	background-image: url(../img/areaTitle01.svg);
}

.area01 .area__title,
.area01 .area__date {
	color: rgb(var(--brn));
}

.area01 .area__title::before {
	background: rgb(var(--brn));
}

.area01 .area__date svg {
	stroke: rgb(var(--brn));
}

/* area02 */
.area02.area__section::before {
	background-color: rgb(var(--yel));
	background-image: url(../img/areaTitle02.svg);
}

.area02 .area__title,
.area02 .area__date {
	color: rgb(var(--yel));
}

.area02 .area__title::before {
	background: rgb(var(--yel));
}

.area02 .area__date svg {
	stroke: rgb(var(--yel));
}

/* area03 */
.area03.area__section::before {
	background-color: rgb(var(--sky));
	background-image: url(../img/areaTitle03.svg);
}

.area03 .area__title,
.area03 .area__date {
	color: rgb(var(--sky));
}

.area03 .area__title::before {
	background: rgb(var(--sky));
}

.area03 .area__date svg {
	stroke: rgb(var(--sky));
}

/* area04 */
.area04.area__section::before {
	background-color: rgb(var(--grn));
	background-image: url(../img/areaTitle04.svg);
}

.area04.area__section::after {
	display: none;
}

.area04 .area__title,
.area04 .area__date {
	color: rgb(var(--grn));
}

.area04 .area__title::before {
	background: rgb(var(--grn));
}

.area04 .area__date svg {
	stroke: rgb(var(--grn));
}

@media screen and (max-width: 1000px) {
	.area__section {
		padding: 12.5vw 0 0;
	}

	.area__title {
		font-size: 5vw;
		font-size: 50px;
	}

	.area__title::before {
		width: 7.8vw;
		width: 78px;
	}

	.area__date {
		font-size: 30px;
	}

	.area__date svg {
		width: 14px;
	}

	.area__section::after {
		width: 100%;
	}

	.area__section--inner {
		width: 100vw;
	}

	.area .content {
		flex-direction: column-reverse;
	}

	.area .content__image {
		margin-bottom: 30px;
		padding-left: 2.8vw;
		width: 100%;
		right: 0;
	}

	.area .content__detail {
		margin: 0 auto;
		padding: 0 5.6vw 0 8.4vw;
		width: 100%;
		display: flex;
	}

	.area .content__detail--inner:not(:last-of-type) {
		margin-right: 4.2vw;
		margin-bottom: 0;
	}

	.content__detail--title {
		margin-bottom: 27px;
	}

	.content__detail--title span {
		width: 102px;
		height: 34px;
		font-size: 22px;
	}

	.content__detail--text {
		font-size: 16px;
	}

	.content__detail--text .recommend::before {
		width: 65px;
		height: 20px;
		font-size: 12px;
		border-radius: 20px;
	}

	.content__detail--text:not(:last-of-type) {
		margin-bottom: 30px;
	}
}

@media screen and (max-width: 768px) {
	.area__section {
		padding: 16vw 0 0;
	}

	.area__section::before {
		background-size: 5.333vw auto;
		width: 5.867vw;
	}

	.area__section::after {
		width: 100%;
	}

	.area__title {
		margin-bottom: 3.2vw;
		padding-left: 5.867vw;
		font-size: 9.6vw;
	}

	.area__title::before {
		width: 16.8vw;
	}

	.area__date {
		margin-bottom: 7.2vw;
		padding-left: 5.867vw;
		font-size: 5.333vw;
	}

	.area__date svg {
		margin: 0 0.8vw;
		width: 3.467vw;
	}

	.area .content__image {
		margin-bottom: 0;
		padding-left: 5.867vw;
	}

	.area .content__detail {
		padding: 7.2vw 0 7.2vw 13.067vw;
		width: 100%;
		display: block;
	}

	.area .content__detail--inner {
		width: 100%;
	}

	.area .content__detail--inner:not(:last-of-type) {
		margin-right: 0;
		margin-bottom: 7.2vw;
	}

	.content__detail--title {
		margin-bottom: 4vw;
	}

	.content__detail--title span {
		width: 23.2vw;
		height: 7.733vw;
		font-size: 4.8vw;
	}

	.content__detail--text {
		font-size: 4vw;
	}

	.content__detail--text .recommend::before {
		margin: 1.067vw 1.6vw 0 0;
		width: 15.2vw;
		height: 5.333vw;
		font-size: 3.2vw;
		border-radius: 5.333vw;
	}

	.content__detail--text:not(:last-of-type) {
		margin-bottom: 0;
	}
}

/* ----------------------------------------------------
	collaboration
---------------------------------------------------- */
.collaboration {
	background: rgb(var(--beg));
	padding: 100px 0;
}
.collaboration + .collaboration {
	background: rgb(var(--beg));
	padding: 0 0 100px;
}

.collaboration__content {
	background: rgb(var(--wht));
	margin: 0 auto;
	padding: 44px 44px 44px 116px;
	width: 1150px;
	display: flex;
	justify-content: space-between;
	position: relative
}

.collaboration__title {
	width: auto;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.collaboration__title img {
	width: auto;
	height: 100%;
}

.collaboration__content--image {
	width: 612px;
}

.collaboration__content--shop {
	width: 320px;
	display: flex;
	align-items: center;
	position: relative;
}

.collaboration .logo {
	width: 143px;
	height: 143px;
	position: absolute;
	top: -18px;
	right: -18px;
}
.collaboration .logo.ikameshi {
	top: -15px;
	right: -40px;
}
.collaboration .logo.gotoken {
	width: 143px;
	height: 45px;
	top: 18px;
	right: -18px;
}

.collaboration .detail {
	color: rgb(var(--btnColor));
}

.collaboration .name {
	line-height: 1.5;
	font-size: 26px;
	font-weight: bold;
}

.collaboration .date {
	margin: 15px 0;
	line-height: 1;
	font-size: 18px;
}

.collaboration .m-time {
	margin: 15px 0;
	line-height: 1;
	font-size: 16px;
	display: flex;
}
.collaboration .m-time li { 
	width: 50%;
	padding: .2em;
	text-align: center;
	color: rgba(var(--wht),1);
	background-color: rgba(var(--btnColor),.2);
}
.collaboration .m-time li + li{ 
	margin-left: 1px;
}
.collaboration .m-time li.lunch { 
	background-color: #f2a12e;
}
.collaboration .m-time li.dinner { 
	background-color: #415586;
}

.collaboration .linkBtn {
	margin-top: 30px;
}
.collaboration .linkBtn + .linkBtn{
	margin-top: 15px;
}
.collaboration .linkBtn a {
	width: 100%;
}

.collaboration .text {
	color: rgb(var(--blk));
}

.collaboration__link {
	margin-top: 70px;
	display: flex;
	justify-content: center;
}
.collaboration.nav .collaboration__link {
	margin-top: 0;
}
.collaboration.nav .collaboration__link .linkBtn + .linkBtn{
	margin-top: 0px;
}

.collaboration__link--item.linkBtn {
	margin: 0 20px;
}

.collaboration__link--item.linkBtn a {
	width: 370px;
	height: 65px;
	border-radius: 65px;
}

@media screen and (max-width: 1150px) {
	.collaboration {
		padding: 8.696vw 0;
	}

	.collaboration__content {
		padding: 3.826vw 3.826vw 3.826vw 10.087vw;
		width: 100%;
	}

	.collaboration__content--image {
		width: 53.217vw;
	}

	.collaboration__content--shop {
		width: 27.826vw;
	}

	.collaboration .logo {
		width: 12.435vw;
		height: 12.435vw;
		top: -1.565vw;
		right: -1.565vw;
	}
	.collaboration .logo.ikameshi {
		width: 12.435vw;
		height: 12.435vw;
		top: -2vw;
		right: -6vw;
	}
	.collaboration .logo.gotoken {
		top: -1vw;
		right: -18px;
	}

	.collaboration .name {
		font-size: 26px;
	}

	.collaboration .date {
		margin: 1.304vw 0;
		font-size: 1.565vw;
	}

	.collaboration .text {
		font-size: 1.391vw;
	}

	.collaboration .linkBtn {
		margin-top: 1.391vw;
	}/*
	.collaboration .linkBtn + .linkBtn{
		margin-top: 0.891vw;
	}*/

	.collaboration .linkBtn a {
		background-size: 2.435vw auto;
		padding-left: 2.174vw;
		/*width: 19.13vw;*/
		width: 100%;
		height: 4.348vw;
		font-size: 1.565vw;
		border-radius: 4.348vw;
	}

	.collaboration__link {
		margin-top: 6.087vw;
	}


	.collaboration__link--item.linkBtn {
		margin: 0 1.739vw;
	}

	.collaboration__link--item.linkBtn a {
		background-size: 2.435vw auto;
		width: 32.174vw;
		height: 5.652vw;
		border-radius: 5.652vw;
	}
}

@media screen and (max-width: 1000px) {
	.collaboration {
		width: 80%;
		margin: auto;
	}
	.collaboration.nav{
		width: 100%;
	}
	.collaboration__content {
		padding: 3.826vw 3.826vw 3.826vw 17.739vw;
		flex-direction: column-reverse;
	}

	.collaboration__content--image {
		margin-bottom: 3.826vw;
		width: 100%;
	}

	.collaboration__content--shop {
		width: 100%;
	}

	.collaboration .logo {
		top: -4vw;
		right: 0;
	}
	.collaboration .logo.ikameshi {
		top: -2vw;
		right: -3vw;
	}
	.collaboration .logo.gotoken {
		width: 143px;
		height: 143px;
		top: -18px;
		right: -18px;
	}

	.collaboration .name .tab {
		display: none;
	}

	.collaboration .date {
		margin: 20px 0;
		font-size: 18px;
	}

	.collaboration .text {
		font-size: 16px;
	}

	.collaboration .linkBtn {
		margin-top: 30px;
	}/*
	.collaboration .linkBtn + .linkBtn{
		margin-top: 15px;
	}*/

	.collaboration .linkBtn a {
		background-size: 28px auto;
		/*width: 220px;*/
		max-width: 320px;
		width: 100%;
		height: 50px;
		font-size: 18px;
		border-radius: 50px;
	}

	.collaboration__link {
		margin-top: 40px;
	}

	.collaboration__link--item.linkBtn {
		margin: 0 10px;
	}

	.collaboration__link--item.linkBtn a {
		background-size: 28px auto;
		width: 330px;
		height: 65px;
		border-radius: 65px;
	}
}

@media screen and (max-width: 768px) {
	.collaboration {
		/*padding: 100px 0;*/
		padding: 7.2vw 0;
	}
	.collaboration + .collaboration{
		padding: 0 0 7.2vw
	}

	.collaboration__content {
		padding: 0 0 10.667vw 0;
		width: 85.333vw;
	}

	.collaboration__title {
		width: 21.6vw;
	}

	.collaboration__title img {
		width: 100%;
		height: auto;
	}

	.collaboration__content--image {
		margin: 0 0 25.6vw auto;
		width: 60.533vw;
	}

	.collaboration__content--shop {
		padding: 0 6.133vw;
		width: 100%;
	}

	.collaboration .logo {
		width: 27.733vw;
		height: 27.733vw;
		top: -30.667vw;
		right: 2.667vw;
	}
	.collaboration .logo.ikameshi {
		width: 27.733vw;
		height: 27.733vw;
		top: -30.667vw;
		right: 2.667vw;
	}
	.collaboration .logo.gotoken {
		width: 40.733vw;
		height: 13.733vw;
		top: -20.667vw;
		right: 2.667vw;
	}

	.collaboration .name {
		font-size: 5.867vw;
	}

	.collaboration .date {
		margin: 4vw 0;
		font-size: 4.267vw;
	}

	.collaboration .linkBtn,
	.collaboration .linkBtn + .linkBtn {
		margin-top: 6.4vw;
	}

	.collaboration .linkBtn a {
		background-position: right 4.8vw center;
		background-size: 7.467vw auto;
		margin: 0 auto;
		padding-left: 6.933vw;
		/*width: 58.667vw;*/
		max-width: none;
		width: 100%;
		height: 13.333vw;
		/*font-size: 4.8vw;*/
		font-size: .9em;
		border-radius: 13.333vw;
	}

	.collaboration .text {
		font-size: 4.267vw;
	}

	.collaboration__link {
		margin: 10.667vw auto 0;
		width: 85.333vw;
		display: block;
	}

	.collaboration__link--item.linkBtn {
		margin: 0;
	}

	.collaboration__link--item.linkBtn:not(:last-of-type) {
		margin-bottom: 4.8vw;
	}

	.collaboration__link--item.linkBtn a {
		background-position: right 4.8vw center;
		background-size: 7.467vw auto;
		padding-left: 6.933vw;
		width: 100%;
		height: 13.333vw;
		font-size: 4.8vw;
		border-radius: 13.333vw;
	}
}

/* ----------------------------------------------------
	track
---------------------------------------------------- */
.track {
	margin: 0 auto;
	padding: 100px 0;
	width: 1100px;
	display: flex;
	flex-direction: row-reverse;
	flex-wrap: wrap;
	justify-content: space-between;
	/* align-items: flex-end; */
	align-items: center;
}

.track__title {
	margin-bottom: 45px;
	width: 100%;
	line-height: 1;
	color: rgb(var(--btnColor));
	font-size: 50px;
	text-align: center;
}

.track__title .jp {
	margin-top: 26px;
	font-size: 18px;
	display: block;
}

.track__slide {
	width: 650px;
}

.track__content {
	width: 400px;
	font-size: 16px;
}

.track__content .place {
	margin: 20px 0;
}
.track__content .linkBtn a {
	width: 260px;
}
	

@media screen and (max-width: 1280px) {
	.track {
		padding: 7.813vw 0;
		width: 85.938vw;
	}

	.track__slide,
	.track__image {
		width: 50.781vw;
	}

	.track__content {
		width: 31.25vw;
	}
}

@media screen and (max-width: 1000px) {
	.track {
		flex-direction: column;
	}

	.track__slide,
	.track__content {
		margin: 0 auto;
		width: 85.938vw;
	}

	.track__image {
		margin-bottom: 5vw;
	}
}

@media screen and (max-width: 768px) {
	.track {
		padding: 21.333vw 6.4vw;
		width: 100%;
	}

	.track__title {
		margin-bottom: 8vw;
		line-height: 1.5;
		font-size: 10.133vw;
	}

	.track__title .jp {
		margin-top: 5.333vw;
		font-size: 3.733vw;
	}

	.track__slide,
	.track__content {
		width: 100%;
	}

	.track__slide {
		margin-bottom: 6.4vw;
	}

	.track__content {
		font-size: 4.267vw;
	}

	.track__content .place {
		margin: 20px 0;
	}

	.track__content .linkBtn a {
		margin: 0 auto;
		/*width: 58.667vw;*/
		width: 66.667vw;
	}
}

/* ----------------------------------------------------
	plan
---------------------------------------------------- */
.plan {
	background: #d4ecea;
	padding: 100px 0;
	display: flex;
	justify-content: center;
}

.plan__section {
	background: rgb(var(--wht));
	padding: 50px 52px;
	max-width: 545px;
	width: 42.5%;
	border-left: solid 1px rgb(var(--btnColor));
	position: relative;
}

.plan__section:nth-child(even) {
	margin-left: 60px;
}

.plan__title {
	position: absolute;
	top: 0;
}

.plan01 .plan__title {
	width: 53px;
	left: -14px;
}

.plan02 .plan__title {
	width: 39px;
	left: -2px;
}

.plan__image {
	margin-bottom: 30px;
}

.plan__detail .title {
	margin-bottom: 10px;
	line-height: 1.5;
	color: rgb(var(--btnColor));
	font-size: 26px;
	font-weight: bold;
}

.plan__detail .date {
	margin-bottom: 20px;
	color: rgb(var(--btnColor));
	font-size: 18px;
}

.plan__detail .text {
	margin-bottom: 40px;
	font-size: 16px;
}

.plan__detail .linkBtn a {
	margin: 0 auto;
	width: 260px;
}

@media screen and (max-width: 1000px) {
	.plan {
		padding: 10vw 0;
	}

	.plan__section {
		padding: 5vw 5.2vw;
	}

	.plan__section:nth-child(even) {
		margin-right: 6vw;
	}

	.plan01 .plan__title {
		width: 5.3vw;
		left: -1.4vw;
	}

	.plan02 .plan__title {
		width: 3.9vw;
		left: -0.2vw;
	}

	.plan__image {
		margin-bottom: 3vw;
	}
}

@media screen and (max-width: 768px) {
	.plan {
		padding: 12vw 7.2vw;
		display: block;
	}

	.plan__section {
		padding: 5.333vw 5.333vw 8vw 8.533vw;
		max-width: 100%;
		width: 100%;
	}

	.plan__section:nth-child(even) {
		margin-left: 0;
	}

	.plan__section:not(:last-of-type) {
		margin-bottom: 8vw;
	}

	.plan01 .plan__title {
		width: 8.533vw;
		left: -2.133vw;
	}

	.plan02 .plan__title {
		width: 6.133vw;
		left: -0.267vw;
	}

	.plan__image {
		margin-bottom: 4.8vw;
	}

	.plan__detail .title {
		margin-bottom: 4vw;
		font-size: 5.867vw;
	}

	.plan__detail .date {
		margin-bottom: 2.4vw;
		font-size: 4.267vw;
	}

	.plan__detail .text {
		margin-bottom: 6.4vw;
		font-size: 4.267vw;
	}

	.plan__detail .linkBtn a {
		margin: 0 auto;
		width: 69.333vw;
	}
}

/* ----------------------------------------------------
	access
---------------------------------------------------- */
.access {
	padding-top: 100px;
	color: rgb(var(--btnColor));
	text-align: center;
}

.access__name {
	margin-bottom: 20px;
	line-height: 1;
	font-size: 26px;
	font-weight: bold;
}

.access__address {
	margin-bottom: 30px;
	font-size: 18px;
}

.access__address .tel {
	color: rgb(var(--btnColor));
	text-decoration: none;
}

.access__map iframe {
	width: 100%;
	height: 400px;
}

@media screen and (max-width: 768px) {
	.access {
		padding-top: 16vw;
	}

	.access__name {
		margin-bottom: 4.8vw;
		font-size: 5.867vw;
	}

	.access__address {
		margin-bottom: 6.4vw;
		font-size: 4.267vw;
	}

	.access__map iframe {
		height: 106.667vw;
	}
}