@charset "utf-8";
:root{
	--cat-a:#EF857D;
	--cat-b:#F6AE54;
	--cat-c:#4496D3;
	--cat-d:#73E472;
	--cat-e:#898989;
	--cat-f:#BBB4FE;
	--cat-g:#BEE6FF;
	--cat-h:#FFBED6;
	--cat-i:#E2C09F;
	--cat-j:#93C97F;
}
.schedule_category_list .holiday{
	color: var(--cat-a);
}
.schedule_category_list .other {
	color: var(--cat-e);
}
.schedule_category_list .air_ginza {
	color: var(--cat-h);
}
.schedule_category_list .air_ginza_tower {
	color: var(--cat-c);
}
.schedule_category_list .beb_tokyo {
	color: var(--cat-d);
}
.schedule_category_list .air_aoyama {
	color: var(--cat-b);
}
.schedule_category_list .air_yokohama {
	color: var(--cat-c);
}
.schedule_category_list .air_osaka {
	color: var(--cat-d);
}
.schedule_category_list .air_kobe {
	color: var(--cat-f);
}
.schedule_category_list .air_ikebukuro {
	color: var(--cat-g);
}
.schedule_category_list .air_kurume {
	color: var(--cat-i);
}
.schedule_category_list .air_fukuoka {
	color: var(--cat-j);
}
.schedule_category_list{
	display: grid;
	grid-template-columns:repeat(auto-fit, minmax(15rem, 1fr));
}

.calender_table .holiday {
	background-color: var(--cat-a);
}
.calender_table .other {
	background-color: var(--cat-e);
}
.calender_table .air_ginza {
	background-color: var(--cat-h);
}
.calender_table .air_ginza_tower {
	background-color: var(--cat-c);
}
.calender_table .beb_tokyo {
	background-color: var(--cat-d);
}
.calender_table .air_aoyama {
	background-color: var(--cat-b);
}
.calender_table .air_yokohama {
	background-color: var(--cat-c);
}
.calender_table .air_osaka {
	background-color: var(--cat-d);
}
.calender_table .air_kobe {
	background-color: var(--cat-f);
}
.calender_table .air_ikebukuro {
	background-color: var(--cat-g);
}
.calender_table .air_kurume {
	background-color: var(--cat-i);
}
.calender_table .air_fukuoka {
	background-color: var(--cat-j);
}

.news_list_item_link{
	flex-wrap: wrap;
}
.news_list_item_info{
	flex-direction: row;
	justify-content: flex-start;
	gap: 2rem;
}

.schedule_list_item {
	position: relative;
}
.schedule_list_item_line {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: .1rem;
	background-color: rgb(30 30 30 / .2);
	transform-origin: left top;
}
.schedule_list_item_link {
	padding-top: 2rem;
	padding-bottom: 2rem;
	padding-right: 0;
	position: relative;
	display: grid;
	grid-template-columns: 1.5fr 1fr;
}
.schedule_list_item_link:before {
	content: none;
	position: absolute;
	top: 2.3rem;
	right: 0;
	width: 1.2rem;
	height: .7rem;
	background-image: url(../img/arrow-blue.svg);
	background-size: cover;
	background-position: center;
}
.schedule_list_item_link:hover:before {
	animation-name: transformLeftRight;
	animation-fill-mode: forwards;
	animation-duration: .7s;
	transition-timing-function: ease-out;
}
.schedule_list_item_link:hover .schedule_tmb img{
	scale: 1.1;
	opacity:.7;
}
.schedule_list_item_info {
	display: flex;
	align-items: center;
	gap: 2.7rem;
	width: 100%;
	grid-column: 1/2;
	grid-row: 1/2;
}
.schedule_list_item_date {
	font-family: aktiv-grotesk, sans-serif;
	font-size: 1.4rem;
	color: var(--main-color);
	display: flex;
	align-items: center;
	gap: 1.5rem;
}
.schedule_list_item_date:before {
	content: "";
	display: inline-block;
	width: 2.5rem;
	height: .1rem;
	background-color: var(--main-color);
}
.schedule_list_item_position {
	font-family: aktiv-grotesk, sans-serif;
	font-size: 1.4rem;
	color: var(--main-color);
}
.schedule_list_item_title span{
	grid-column: 1/2;
	grid-row: 2/3;
	font-size: 1.4rem;
	line-height: 1.5;
	flex: 1;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	overflow: hidden;
	/* white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis; */
	/* width: 46rem; */
}
.schedule_link {
	margin-top: auto;
	text-align: center;
}
.schedule_tmb{
	width: 12rem;
	aspect-ratio: 4/3;
	overflow: hidden;
	margin-left: auto;
	grid-column: 2/3;
	grid-row: 1/3;
}
.schedule_tmb img{
	height: 100%;
	object-fit: cover;
	object-position: top;
	transition: opacity .3s ease, scale .3s ease;
}
.single-news_text {
    margin: auto 0;
}
.schedule_category_item span{margin-right: 0.5rem;}
.schedule_category_item .cat_a{color: var(--cat-a);}
.schedule_category_item .cat_b{color: var(--cat-b);}
.schedule_category_item .cat_c{color: var(--cat-c);}
.schedule_category_item .cat_d{color: var(--cat-d);}
.schedule_category_item .cat_e{color: var(--cat-e);}
.schedule_container{
	display: grid;
	grid-template-columns: 1fr 3fr;
	gap:3.5rem
}
.schedule_thumb {
    aspect-ratio: 1 / 1;
}
.calender_wrap{
	grid-column: 1/3;
	display: flex;
	flex-wrap: wrap;
	align-items: start;
	justify-content: space-around;
}
.calender_table{
	text-align: center;
	border-collapse: separate;
	border-spacing: 1.5rem 1rem;
	font-size: 1.6rem;
}
.calender_table_head{
	text-align: center;
}
.calender_table th,
.calender_table td{
	width: 3.5rem;
	height: 3.5rem;
	place-content: center;
	text-align: center;
	border-radius: 50%;
}
.calender_table .cat_a{ background-color: var(--cat-a); }
.calender_table .cat_b{ background-color: var(--cat-b); }
.calender_table .cat_c{ background-color: var(--cat-c); }
.calender_table .cat_d{ background-color: var(--cat-d); }
.calender_table .cat_e{ background-color: var(--cat-e); }

@media (max-width: 767px) {
	.schedule_list_item_info{
		grid-column: 1/3;
		margin-bottom: 1.3rem;
	}
	.schedule_tmb{
		grid-row: 2/3;	
	}
	.schedule_list_item_title{
		margin-top: 0;
	}
	.schedule_container{
		display: flex;
		flex-direction: column;
		gap: 3.0rem;
	}
}
@media (max-width: 480px) {
	.calender_table{
		border-spacing: 1rem 1rem;
	}
}