body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	background:
		radial-gradient(
		circle farthest-side at 200px 200px,
		#212121 0%,
		#0cc7c0 40%,
		#212121 100%);
}
body::before {
	content: "";
	display: block;
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -10;
	background-image: url(../img/FFFF_b.png);
	background-position: center;
	background-size: contain;
	@media (min-width: 600px) {
		background-size: 600px;
	}
	@media (min-width: 600px) and (min-height: 600px) {
		background-size: 800px;
	}
	background-repeat: no-repeat;
}

.container {
	max-width: 600px;
	@media (min-width: 600px) and (min-height: 600px) {
		max-width: 800px;
	}
	margin: 0 auto;
	box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.top {
	width: 100%;
	height: 100vh;
	display: flex;
	box-sizing: border-box;
	justify-content: center;
	align-items: center;
	@media (min-width: 600px) {
		position: relative;
		top: 100px;
		left: 100px;
	}
}

.tran {
	transform: rotate(-10deg);
	color: #F0FFFF;
	text-shadow: #FF7283 5px 0 5px;
}

h3 {
	text-shadow: red 1px 0 3px;
	color: #FF7283;
	padding: 5px 10px;
}

.cd {
	width: 85%;
	height: auto;
	display: block;
	margin: 0 auto;
}
.cd2 {
	width: 40%;
	height: auto;
	display: block;
	margin: 0 auto;
}

.cd-details {
	color: #ffffff;
	padding: 20px 20px 0;
	background-color: rgba(0,0,0,0.5);
}

.cd-label {
	width: 90%;
	color: yellow;
	text-shadow: 4px 0px 3px rgba(78, 0, 163, 0.8);
	margin: 15px auto;
}

.cd-ex {
	width: 90%;
	text-shadow: 4px 0px 3px rgba(78, 0, 163, 0.8);
	margin: 15px auto;
}

.cd-details ul {
    list-style-type: none;
    padding: 0;
}

.cd-details li {
    margin: 5px 0;
}

.buy-button {
    display: block;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 10px 20px;
    background-color: #007BFF;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.link-button {
	display: block;
	text-align: center;
	padding: 10px 20px;
	background-color: #007BFF;
	color: #fff;
	text-decoration: none;
	border-radius: 5px;
	transition: background-color 0.3s;
}

.buy-button:hover {
    background-color: #0056b3;
}
.link-button:hover {
    background-color: #0056b3;
}

.tracks {
	width: 90%;
	margin: 0 auto;
	background-color: rgba(255,105,212,0.8);
	padding: 15px;
	border-radius: 20px;
	color: #000000;
	text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.3);
}

.subsc {
	width: 90%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
.subsc_image img {
	width: 90%;
	padding: 0 5%;
}
.subsc_text {
	width: 90%;
	color: yellow;
	text-shadow: 4px 0px 3px rgba(78, 0, 163, 0.8);
	margin: 15px auto;
}
.subsc_tracks {
	color: #cccccc;
	text-shadow: 4px 0px 3px rgba(78, 0, 163, 0.8);
}

.comment {
	width: 90%;
	margin: 0 auto;
    margin-bottom: 20px;
	background-color: rgba(0,212,233,0.8);
	padding: 20px;
	border-radius: 20px;
	color: #000000;
	text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.3);
}

.comment a {
	color: #000000;
}
.comment a:hover {
	color: #FFFFFF;
    background-color: #FF7283;
	text-decoration: none;
}

.snsimg {
	width: 25px;
	height: 25px;
	margin: 5px 10px;
}

.youtube-variable{
	position: relative;
	width: 95%;
	padding-top: 56.25%;
}

iframe.youtube-16-9 {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	display: block;
	margin: auto;
}

footer {
	width: 100%;
	color: #ffffff;
	text-align: center;
	padding: 20px 0px 10px;
	font-size: smaller;
	background-color: rgba(0,0,0,0.5);
}