@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@100;200;300;500;600;800&family=Noto+Sans+JP:wght@400;700&family=Open+Sans:wght@400;600;700;800&display=swap');

/****** reset ******/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video{margin:0; padding:0; border:0; outline:0; font-size:100%; font:inherit; vertical-align:baseline;}
a{margin:0; padding:0; font-size:100%; vertical-align:baseline; background:transparent;}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section{display:block;}
ol, ul{list-style:none;}
blockquote, q{quotes:none;}
blockquote:before, blockquote:after, q:before, q:after{content: '';	content: none;}
ins{text-decoration:none;}
del{text-decoration:line-through;}
table{border-collapse:collapse; border-spacing:0;}
button{ border:none; background:none; margin:0; padding:0;}
h1,h2,h3,h4,h5,h6{font-weight:normal;}
fieldset,img{border:0;}
address,caption,cite,code,dfn,em,var{font-weight:normal; font-style:normal;}
caption,th{text-align:left;}
abbr,acronym{border:0;}

/****** /reset ******/


/****** common ******/

* {
	box-sizing: border-box;
}

html {
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

body {
	color: #333333;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 3px;
	line-height: 200%;
	width: 100%;
}

.font-figure {
	font-family: 'Unica One', cursive;
}

::selection {
	background: rgba(141,133,99,0.8); color: #fff;
}

::-moz-selection {
	background: rgba(141,133,99,0.8); color: #fff;
}

a {
	color: #cfcfcf;
	text-decoration: none;
	transition: all .3s ease;
	cursor: pointer;
}

a:hover {
	color: #a19b82;
}

#lc-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

#lc-container img {
	width: 100%;
	pointer-events: none;
}

.video {
	width: 100%;
	padding-bottom: 56.25%;
	height: 0px;
	position: relative;
}

.video iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#lc-container #caption,
#lc-container .caption {
	letter-spacing: 2px;
	line-height: 20px;
	width: calc(100% - 190px);
	padding: 8px 18px;
	margin-right: auto;
}

@media screen and (max-width: 580px) {
	#lc-container #caption,
	#lc-container .caption {
		width: calc(100% - 70px);
	}
}

#lc-container h1 {
	font-size: 14px;
	color: #fff;
}

#lc-container p {
	font-size: 12px;
	color: #fff;
}

#lc-container ul {
	display: flex;
	margin: 0 6px;
}

#lc-container ul li {
	background-color: rgba(255,255,255,1);
	border-radius: 50%;
	width: 42px;
	height: 42px;
	margin: 0 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: 1s all;
}

#lc-container ul li:hover {
	opacity: 0.6;
}

#lc-container ul li a {
	height: 24px;
}

#lc-container ul li a svg#movie {
	margin-left: 5px;
}

#audio-box {
	border: 1px solid #444;
	width: calc(100% - 20px);
	max-width: 580px;
	height: 60px;
	margin: 5px auto 10px;
	display: flex;
	justify-content: center;
	align-items: center;
}

#audio-box svg {
	margin-right: 8px;
}

#audio-box svg path {
	fill: #fff;
}

