@charset "UTF-8";

ul:not([class]):not([id])
{
	margin: 2rem 0;
}

#content > div + div
{
	padding-top: 2em;
}

p.caution
{
	margin-top: .5em;
	font-size: .9em;
	font-family: 'R-M', 'GG-M', sans-serif;
	font-weight: 550;
}

ul.caution
{
	margin-top: 1em;
	list-style:none;
	font-size: .9em;
	font-family: 'R-M', 'GG-M', sans-serif;
	font-weight: 550;
}
ul.caution li
{
	padding-left: 1em;
}
ul.caution li:before
{
	font-size: .5em;
	font-family: "Font Awesome 5 Free";
	content:'\f621';
	position:absolute;
	display:block;
	left:0;
	top: 1em;
}

p._b0
{
	font-family: 'R-M','GG-M', sans-serif;
	font-weight: 550;
	font-size: clamp(1.1rem, 1.2vw, 1.5rem);
	margin: 2em 0 .5em;
}

p._b1
{
	font-family: 'R-M','GG-M', sans-serif;
	font-weight: 550;
	font-size: clamp(1rem, 1.1vw, 1.1rem);
	margin: 2em 0 .5em;
}

p._b2
{
	font-family: 'R-M','GG-M', sans-serif;
	font-weight: 550;
}

p._t1
{
	text-indent: -1em;
	padding-left: 1em;
}

small
{
	font-size: .7em;
}

a:not([class]):link, a:not([class]):active, a:not([class]):visited, a:not([class]):hover{color:#A03232;text-decoration:none;}

#program td ul
{
	margin-top: .5em;
}

#program td li
{
	margin-top: .25em;
}

.video
{
	display:flex;
	justify-content:space-between;
	align-items:flex-end;
}

.video > *
{
	width: calc(50% - 1rem);
}

/**********************************************************************/
/****************************** YouTube *******************************/
/**********************************************************************/

.pkg
{
	display: inline-block;
	box-sizing:border-box;
	width: 100%;
	border-radius: .5rem;
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, .1);
}

.modal-open
{
	cursor: pointer;
	 width: 100%;
	 height: 100%;
	 position: absolute;
	 top: 0;
	 left: 0;
	z-index: 6;
	background-color: rgba(0, 0, 0, 0);

	-webkit-transition: background-color .2s ease;
	-moz-transition: background-color .2s ease;
	-ms-transition: background-color .2s ease;
	-o-transition: background-color .2s ease;
	transition: background-color .2s ease;
}
.modal-open:hover
{
	background-color: rgba(0, 0, 0, .3);
}

.modal-open:before
{
	content:"";
	display:block;
	position: absolute;
	width: 4rem;
	height: 3rem;
	background-color: rgba(50, 50, 50, .8);
	top:calc(50% - 1.5rem);
	left: calc(50% - 2rem);
	border-radius: 25%;
}
.modal-open:after
{
	content:"";
	display:block;
	position: absolute;
	width: 0;
	height: 0;
	top:calc(50% - .5rem);
	left: calc(50% - .4rem);
	border-style: solid;
	border-width: .5rem 0 .5rem 1rem;
	border-color: transparent transparent transparent rgb(255, 255, 255);
}

.vdo-body
{
	max-width: 100%;
	height: auto;
	aspect-ratio: 5.5 / 3;
	overflow: hidden;
	background-size: 102%;
	background-position: 50% 50%;
}

.pkg .vdo-ttl
{
	margin-top:1.5rem;
	font-size: .8rem;
	-webkit-justify-content: center;
	justify-content: center;
}

.pkg .vdo-desc
{
	font-size: 1em;
	margin: 1rem auto 2.5rem;
	max-width: calc(900px - 6rem);
}

.modal-vdo-body
{
	width: calc(100% - 4rem);
/*	width: 100%;*/
	height: auto;
	padding-bottom: 56.25%;
	position: relative;
	overflow: hidden;
}

.modal-vdo-body iframe
{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.mail_link{
	color: #323232;
}


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


@media screen and (max-width: 650px)
{
	.video
	{
		flex-direction: column;
	}
	
	.video > *
	{
		width: 100%;
	}
	.video > .desc
	{
		margin-top: max(1rem, 2vw);
	}
}