@charset "UTF-8";

/*色の設定
-----------------------------------------*/
:root
{
	--bluedeep: #92C4DA;
	--bluelight: #CFEAF5;
	--bluefont: #8EBCD1;
	--red: #EE887E;
	--graylight: #F7F7F7;
}

/* セミナー一覧
-----------------------------------------*/
.list
{
	width: 790px;
	margin: 50px auto;
}

.list h2
{
	font-size: 30px;
	padding-bottom: 20px;
}

.list .category
{
	display: flex;
	flex-wrap: wrap;
}

.list .category a
{
	margin-right: 8px;
	margin-bottom: 8px;
	background-color: var(--bluedeep);
	color: #fff;
	padding: 2px 8px;
	font-size: 12px;
	line-height: 20px;
}

.list .contact
{
	width: 100%;
	padding: 25px 30px;
	margin: 40px 0 0;
	background: #f2f2f2;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.list .contact a
{
	background: var(--red);
	color: #fff;
	padding: 7px 20px;
	display: flex;
	align-items: center;
}

.list .contact a img
{
	width: 20px;
	margin-right: 10px;
}

.list h3
{
	font-size: 18px;
	font-weight: bold;
	color: var(--bluefont);
	margin-top: 50px;
	margin-bottom: 25px;
}

.list .item
{
	display: flex;
	flex-wrap: wrap;
}

.list .item li
{
	position: relative;
	width: 30%;
	margin-right: 5%;
	margin-bottom: 30px;
	border: 1px solid var(--bluedeep);
	background: var(--bluedeep);
}

.list .item li:nth-child(3n)
{
	margin-right: 0;
}

.list .item li .label1,
.list .item li .label2
{
	position: absolute;
	display: inline-block;
	left: 0;
	top: 5px;
	box-sizing: border-box;
	padding: 1px 12px;
	margin: 0;
	height: 30px;
	line-height: 30px;
	font-size: 14px;
	letter-spacing: 0.1em;
	color: white;
	box-shadow: 0 2px 2px rgba(0, 0, 0, 0.12);
}

.list .item li .label1
{
	background: #bfbfbf;
}

.list .item li .label2
{
	background: #fa8383;
}

.list .item li .label1:before,
.list .item li .label2:before
{
	position: absolute;
	content: '';
	top: 0;
	left: -7px;
	border: none;
	height: 38px;
	width: 7px;
	border-radius: 5px 0 0 5px;
}

.list .item li .label1:before
{
	background: #bfbfbf;
}

.list .item li .label2:before
{
	background: #fa8383;
}

.list .item li .label1:after,
.list .item li .label2:after
{
	position: absolute;
	content: '';
	bottom: -7px;
	left: -5px;
	border: none;
	height: 7px;
	width: 5px;
	border-radius: 5px 0 0 5px;
}

.list .item li .label1:after
{
	background: #919191;
}

.list .item li .label2:after
{
	background: #d07676;
}

.list .item li .img:hover
{
	opacity: 1;
}

.list .item li .img img
{
	width: 100%;
	height: 150px;
	object-fit: cover;
}

.list .item li .txt
{
	background: var(--bluedeep);
	color: #fff;
	padding: 12px 12px 10px;
}

.list .item li .txt .outline
{
	font-size: 12px;
	letter-spacing: 0.03em;
	line-height: 1.4;
	border-bottom: 1px dashed #fff;
	padding-bottom: 6px;
	margin-bottom: 8px;
}

.list .item li .txt .outline .date
{
	margin-right: 5px;
	display: inline-block;
	line-height: 1;
}

.list .item li .txt .outline .place
{
	display: inline-block;
}

.list .item li .txt .outline .tag a
{
	color: #FFF782;
	display: inline-block;
	font-size: 10.5px;
	margin-right: 7px;
	letter-spacing: 0;
}

.list .item li .txt a
{
	font-size: 13px;
	color: #fff;
	line-height: 1.5;
	display: block;
}

.list .item li .txt a:hover
{
	text-decoration: underline;
}

@media (max-width: 769px)
{

	.list
	{
		width: 95%;
		margin: 25px auto;
	}

	.list h2
	{
		font-size: 24px;
	}

	.list .contact
	{
		margin: 20px 0 40px;
		padding: 15px 30px;
	}

	.list .contact a
	{
		margin: 10px auto 0;
	}

	.list h3
	{
		margin-top: 20px;
		margin-bottom: 15px;
	}

	.list .item
	{
		justify-content: space-between;
	}

	.list .item li
	{
		width: 48%;
		margin-right: 0;
		margin-bottom: 15px;
	}

	.list .item li .label1,
	.list .item li .label2
	{
		font-size: 13px;
		height: 25px;
		line-height: 25px;
	}

	.list .item li .label1:before,
	.list .item li .label2:before
	{
		height: 30px;
	}

	.list .item li .img img
	{
		height: 110px;
	}
}

/* セミナー詳細
-----------------------------------------*/
.seminar .mainimg
{
	padding: 10px;
	background: #fff;
	border: 1px solid #ccc;
	position: relative;
	width: 99%;
	margin: 15px auto 40px;
}

.seminar .mainimg .label1
{
	display: inline-block;
	position: absolute;
	left: 0;
	top: 20px;
	box-sizing: border-box;
	padding: 0 12px;
	margin: 0;
	height: 35px;
	line-height: 38px;
	font-size: 18px;
	letter-spacing: 0.1em;
	color: white;
	background: #bfbfbf;
	box-shadow: 0 2px 2px rgba(0, 0, 0, 0.12);
}

.seminar .mainimg .label1:before
{
	position: absolute;
	content: '';
	top: 0;
	left: -7px;
	border: none;
	height: 43px;
	width: 7px;
	background: #bfbfbf;
	border-radius: 5px 0 0 5px;
}

.seminar .mainimg .label1:after
{
	position: absolute;
	content: '';
	bottom: -7px;
	left: -5px;
	border: none;
	height: 7px;
	width: 5px;
	background: #919191;
	border-radius: 5px 0 0 5px;
}

.seminar .mainimg .label2
{
	display: inline-block;
	position: absolute;
	left: 0;
	top: 20px;
	box-sizing: border-box;
	padding: 0 12px;
	margin: 0;
	height: 35px;
	line-height: 38px;
	font-size: 18px;
	letter-spacing: 0.1em;
	color: white;
	background: #fa8383;
	box-shadow: 0 2px 2px rgba(0, 0, 0, 0.12);
}

.seminar .mainimg .label2:before
{
	position: absolute;
	content: '';
	top: 0;
	left: -7px;
	border: none;
	height: 42px;
	width: 7px;
	background: #fa8383;
	border-radius: 5px 0 0 5px;
}

.seminar .mainimg .label2:after
{
	position: absolute;
	content: '';
	bottom: -7px;
	left: -5px;
	border: none;
	height: 7px;
	width: 5px;
	background: #d07676;
	border-radius: 5px 0 0 5px;
}

.seminar .mainimg img
{
	margin: 0 auto;
	width: 960px;
	height: 500px;
	object-fit: cover;
}

.seminar .contents_header
{
	width: 785px;
	margin: 0 auto;
}

.seminar .contents_header .date
{
	font-size: 26px;
	color: var(--red);
	padding-bottom: 0.5em;
}

.seminar .contents_header h1
{
	font-size: 26px;
	color: var(--bluefont);
	line-height: 150%;
	padding-bottom: 0.5em;
}

.seminar .category
{
	display: flex;
	flex-wrap: wrap;
}

.seminar .category a
{
	display: block;
	margin-right: 10px;
	color: #FFF;
	font-size: 12px;
	line-height: 1;
	background-color: var(--bluedeep);
	padding: 7px 8px 6px;
	text-align: center;
}

.seminar .intro
{
	width: 785px;
	margin: 50px auto;
	padding-bottom: 40px;
	border-bottom: 1px solid #ccc;
}

.seminar .intro a
{
	color: var(--bluefont);
}

.seminar .intro a:hover
{
	text-decoration: underline;
}

.seminar .outline
{
	width: 785px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.seminar .outline .instructor
{
	width: 270px;
	font-size: 13.5px;
	line-height: 160%;
}

.seminar .outline .instructor .img
{
	text-align: center;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px dashed #ccc;
}

.seminar .outline .instructor .img img
{
	width: 130px;
}

.seminar .outline .instructor .txt
{
	margin-bottom: 20px;
}

.seminar .outline .detail
{
	width: calc(100% - 310px);
}

.seminar .outline .detail dl
{
	background: #f2f2f2;
	border-left: 6px solid #92c4da;
	padding: 10px;
	font-size: 14px;
	line-height: 150%;
	margin-bottom: 10px;
}

.seminar .outline .detail dl dt
{
	padding: 3px 10px 3px 0;
	border-bottom: 1px dashed #ccc;
}

.seminar .outline .detail dl dd
{
	padding: 3px 10px 3px 0;
}

.seminar .outline .detail dl a
{
	color: var(--bluefont);
}

.seminar .other
{
	width: 785px;
	margin: 50px auto;
	font-size: 14px;
	line-height: 160%;
}

.seminar .connection
{
	width: 785px;
	margin: 50px auto;
	color: var(--bluefont);
	border-top: 1px solid var(--bluedeep);
	padding-top: 50px;
}

.seminar .connection h2
{
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	padding-bottom: 30px;
}

.seminar .connection li
{
	border-bottom: 1px dashed var(--bluedeep);
	padding: 5px 0;
	line-height: 130%;
}

.seminar .connection li a
{
	font-size: 14px;
	line-height: 120%;
	color: var(--bluefont);
}

.seminar .link
{
	width: 785px;
	margin: 50px auto 100px;
	padding: 25px 20px;
	background: #f2f2f2;
	display: flex;
	justify-content: center
}

.seminar .link a
{
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	width: 240px;
	height: 56px;
	margin: 0 20px
}

.seminar .link a:first-child
{
	background: var(--bluedeep);
}

.seminar .link a:last-child
{
	background: var(--red);
}

@media (max-width: 769px)
{
	.seminar .mainimg
	{
		padding: 5px;
		margin: 0 auto 20px;
	}

	.seminar .mainimg img
	{
		height: auto;
	}

	.seminar .mainimg .label1,
	.seminar .mainimg .label2
	{
		top: 10px;
		height: 30px;
		line-height: 30px;
		font-size: 15px;
	}

	.seminar .mainimg .label1:before,
	.seminar .mainimg .label2:before
	{
		height: 38px;
	}

	.seminar .mainimg .label1:after,
	.seminar .mainimg .label2:after
	{
		bottom: -5px;
		height: 7px;
	}

	.seminar .contents_header .date
	{
		font-size: 16px;
		line-height: 150%;
	}

	.seminar .contents_header h1
	{
		font-size: 18px;
	}

	.seminar .category a
	{
		margin-bottom: 10px;
	}

	.seminar .category a
	{
		font-size: 11px;
	}

	.seminar .contents_header,
	.seminar .intro,
	.seminar .outline,
	.seminar .other,
	.seminar .connection,
	.seminar .link
	{
		width: 95%;
	}

	.seminar .intro
	{
		margin: 25px auto;
		padding-bottom: 25px;
	}

	.seminar .outline .instructor
	{
		margin: 0 auto 30px;
		width: 100%;
	}

	.seminar .outline .detail
	{
		margin: 0 auto;
		width: 100%;
	}

	.seminar .other
	{
		margin: 25px auto;
	}

	.seminar .connection
	{
		margin: 25px auto;
		padding-top: 25px;
	}

	.seminar .connection h2
	{
		font-size: 15px;
		padding-bottom: 15px;
	}

	.seminar .link
	{
		margin: 25px auto 50px;
		display: block;
		padding: 10px 20px;
	}

	.seminar .link a
	{
		margin: 10px 0;
		width: 100%;
		height: 45px;
	}
}