@charset "UTF-8";

/* ------------------------------------------------------
   基本設定
------------------------------------------------------ */
:root {
	--v-space: max(90px, min(9vw, 120px)); /*clamp(90px, 9vw, 120px)*/
	--brand-color: #0b6eb4;
	--accent-color: #1e90ff; /* 水色 */
	
	--base-color: #d3bfa6; /* ベージュ */
	--main-color: #5d0053; /* 紫 */
	--sub-color: #2e6282; /* 青 */
	/*--accent-color-rgb: 45, 79, 227;*/
}

body {
	/*background: url(../img/bg.jpg) var(--base-color) center center repeat;*/
}
a {
	color: var(--accent-color);
}
.hidden {
	position: absolute;
	top: -9999px;
	left: -9999px;
}


/* sticky-footer
---------------------- */
/* html, body { height: 100%;} */
body > #global-footer {
	position: sticky;
	top: 100vh;
}
#global-footer {
	padding: calc(var(--v-space) / 3) 1em;
	background: var(--brand-color);
	color: #fff;
	text-align: center;
}

/* footer
---------------------- */
.copyright {
	margin: 0;
	font-size: var(--14px);
	text-align: center;
}

/* breadcrumb
---------------------- */
.breadcrumb {
	padding: 0 20px;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	font-size: var(--12px);
}
.breadcrumb-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	height: 50px;
}
.breadcrumb-list li + li::before {
	content: "/";
	padding: 0 .3em;
	color: #ccc;
}
.breadcrumb-list li {
	line-height: 1.2;
}
.breadcrumb-list li a {
	color: #252525;
}
@media (max-width: 768px) {
	.breadcrumb {
		font-size: var(--14px);
	}
}
@media (min-width: 769px) {
	.breadcrumb-list {
		height: 70px;
	}
	.breadcrumb-list {
		margin: auto;
		max-width: 1140px;
	}
}


/* ------------------------------------------------------
   ヘッダー hero
------------------------------------------------------ */
.header {
	margin: auto;
	padding: 0 20px;
	max-width: 1200px;
}
.site-title {
	margin: 1.5em auto;
	max-width: 60%;
}
@media (min-width: 769px) {
	.header {
		display: flex;
		align-items: center;
		padding-top: calc(var(--v-space) / 2);
	}
	.site-title {
		margin: 0;
		max-width: 300px;
	}
	.site-description {
		margin-left: 40px;
	}
}
.airtime {
	margin-top: 0;
	font-size: var(--14px);
	font-weight: bold;
}
.airtime::before {
	content: "";
	margin-right: .3em;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f017";
}
.btn-wrap {
	display: flex;
	margin-top: 1em;
	border: 1px solid #ccc;
}
.btn {
	padding: 1em 0;
	width: 50%;
	font-size: var(--12px);
	line-height: 1.2;
	text-align: center;
	background-color: #bae8ff;
}
.links {
	border-right: 1px solid #ccc;
	background-color: #fac3cc;
	color: #ea5a97;
}
@media (min-width: 769px) {
	.btn-wrap {
		max-width: 400px;
	}
}


/* ------------------------------------------------------
   コンテンツ
------------------------------------------------------ */
.main {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2em;
	padding: calc(var(--v-space) / 2) 20px;
}
@media (min-width: 769px) {
	.main {
		grid-template-columns: 1fr 1fr;
		margin: auto;
		max-width: 1200px;
	}
}

.main .video-contents:nth-child(n + 13) {
	display: none;
}
.video-contents {
	display: flex;
	flex-direction: column;
	border: 1px solid #ccc;
}
.video-title {
	padding: max(.5em, min(2vw, 1em));
	font-size: var(--18px);
	line-height: 1.2;
}
.video-title span {
	font-size: 80%;
	font-weight: normal;
}

/* 動画 */
.youtube-video {
	order: -1;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}
.youtube-video iframe {
	width: 100%;
	height: 100%;
}
@supports not (aspect-ratio: 16 / 9) {
	.youtube-video {
		position: relative;
		padding-top: 56.25%;
	}
	.youtube-video iframe {
		position: absolute;
		top: 0;
		right: 0;
		object-fit: cover;
	}
}