@charset "UTF-8";

/**********************************************************/
/********************** Model Plan *************************/
/**********************************************************/

#model_plan
{
	background-color:rgb(255, 255, 255);
	padding: max(5vw, 5rem) 0;
}

#model_plan .secTitle
{
	margin-bottom: max(5vw, 5rem);
}

#model_plan .secTitle._b
{
	margin-top: max(5vw, 5rem);
}

#model_plan .catch
{
	font-family: 'FS-R';
	font-size: clamp(1rem, 5vw, 1.2rem);
}

#model_plan .model_plan
{
	display: flex;
	align-items: center;
	margin-top: max(3vw, 3rem);
	padding-right: calc((100% - 1120px) / 2);
}

#model_plan .model_plan:nth-of-type(2n + 1)
{
	flex-direction: row-reverse;
	padding-right: 0;
	padding-left: calc((100% - 1120px) / 2);
}

#model_plan .model_plan figure
{
	width: calc(100% - 500px);
	height: clamp(200px, 40vw, 80vh);
	overflow:hidden;
}

#model_plan .model_plan figure img
{
	width: 100%;
	height: 100%;
	object-fit:cover;
	object-position: 50% 50%;
	transition: all 1.5s ease;
}

body:not(.touch) #model_plan .model_plan figure > a:hover img
{
	transform:scale(1.1);
}

#model_plan .model_plan .text
{
	display:flex;
	flex-direction: column;
	align-items: flex-start;
	width: 500px;
	padding: 0 max(2vw, 2rem);
}

#model_plan .model_plan h3
{
	font-size: clamp(1.3rem, 8vw, 1.8rem);
	margin-bottom: .5rem;
	line-height: 1.35;
}

#model_plan .model_plan .head,
#model_plan .model_plan .season
{
	font-family: 'FS-R';
	margin-bottom: .75rem;
}

#model_plan .model_plan .head
{
	border-bottom: 1px solid;
}

#model_plan .model_plan .desc
{
	font-size: .9em;
	margin-bottom: 1rem;
}


/*//////////////////////////////////////////////////////////////////////////////////
///////////////////////////////// MEDIA SCREEN ////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////*/

@media screen and (max-width: 900px)
{
	#model_plan .model_plan .text,
	#model_plan .model_plan figure
	{
		width:50%;
	}
}

@media screen and (max-width: 600px)
{
	#model_plan .model_plan .text,
	#model_plan .model_plan figure
	{
		width:100%;
	}
	#model_plan .model_plan,
	#model_plan .model_plan:nth-of-type(2n + 1)
	{
		flex-direction: column;
	}
	#model_plan .model_plan figure
	{
		height: auto;
		aspect-ratio: 5 / 3;
		margin-bottom: max(5vw, 2rem);
	}
}