@charset "UTF-8";

/**********************************************************/
/************************** Title **************************/
/**********************************************************/

#cassette_title
{
	margin-top: max(8vw, 8rem);
}

#cassette_title,
.cassette_title
{
	padding-bottom: max(5vw, 5rem);
}


#cassette_title .sec_title,
.cassette_title .sec_title
{
	display: flex;
	flex-direction: column;
	justify-content:center;
	align-items: flex-start;
}

#cassette_title .sec_title h1,
.cassette_title .sec_title h3
{
	font-size: clamp(1.2rem, 4vw, 3rem);
	line-height: 1.3;
}

#cassette_title .head,
.cassette_title .head
{
	font-family: 'FS-R';
	padding-bottom: .1em;
	margin-bottom: .75em;
	font-size: clamp(1.3rem, 3.5vw, 2.5rem);
	line-height: 1;
	border-bottom: clamp(2px, .35vw, 3px) solid;
}

#cassette_title .head > span,
.cassette_title .head > span
{
	letter-spacing: 0em;
}

#cassette_title .head:before,
.cassette_title .head:before
{
	content: "Highlights";
	font-size: max(.5em, 1rem);
	margin-right: .5em;
}


/**********************************************************/
/************************** Plan ***************************/
/**********************************************************/

.plan
{
	display:flex;
	align-items: flex-start;
	padding-bottom: 10rem;
}

.plan .text_wrapper
{
	position: sticky;
	top: 5rem;
	width: 30%;
	padding-top: 1rem;
	padding-bottom: 1rem;
	background-color: white;
}

.plan .text_wrapper h2
{
	line-height: 1.35;
	margin-bottom: .5em;
}

.plan:nth-of-type(2n)
{
	flex-direction:row-reverse;
	margin-left: -2rem;
}
.plan:nth-of-type(2n + 1)
{
	flex-direction:row;
	margin-right: -2rem;
}

.plan:nth-of-type(2n) .text_wrapper
{
	padding-right: 2rem;
	transform:translateX(2rem) translateY(2rem);
}

.plan:nth-of-type(2n+1) .text_wrapper
{
	padding-left: 2rem;
	transform:translateX(-2rem) translateY(2rem);
}

.plan .slide_wrapper
{
	width: 70%;
	transition-delay: .5s;
}

.plan .slide_wrapper > figure
{
	width: 100%;
	line-height: 0;
}

.plan .slide_wrapper > figure + figure
{
	margin-top: 2rem;
}

.plan .slide_wrapper > figure img
{
	width: 100%;
	height: auto;
}

.plan .slide_wrapper > figure .cap
{
	padding: 0 2rem;
	text-align: center;
	font-size: .8em;
	line-height: 1.5;
	margin: .5rem 0;
}


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

#model_plan
{
	background-color: rgb(245, 245, 245);
}


/**********************************************************/
/********************* Other Cassette **********************/
/**********************************************************/

#cassette
{
	padding-bottom: max(10vw, 10rem);
}


/**********************************************************/
/********************* Prev Next Navi **********************/
/**********************************************************/

.page-nav
{
	margin-bottom: max(2rem,2vw);
	padding-top: max(5rem,5vw);
}

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

@media screen and (max-width: 900px)
{
	#cassette_title,
	.cassette_title
	{
		margin-bottom: 0;
		padding-bottom: 2rem;
	}
	
	.plan:nth-of-type(2n + 1),
	.plan:nth-of-type(2n)
	{
		flex-direction: column-reverse;
		margin-bottom: 0;
	}
	
	.plan .slide_wrapper
	{
		width: calc(100% + 0rem);
	}
	
	.plan .text_wrapper
	{
		position: relative;
		top: 0;
		width: calc(100% - 2rem);
		padding: 1rem;
	}
	
	.plan:nth-of-type(2n+1) .text_wrapper
	{
		transform: translateX(-2rem);
		padding-left: 2rem;
	}
	
	.plan:nth-of-type(2n+1) .slide_wrapper
	{
		transform: translateX(0rem) translateY(1rem);
	}
	
	.plan:nth-of-type(2n) .text_wrapper
	{
		transform: translateX(0rem);
		padding-right: 2rem;
	}
	
	.plan:nth-of-type(2n) .slide_wrapper
	{
		transform: translateX(2rem) translateY(1rem);
	}
}